2023-09-04 00:12:49 -04:00
|
|
|
namespace SabreTools.Models.DVD
|
2023-09-04 00:11:04 -04:00
|
|
|
{
|
|
|
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
|
|
|
public sealed class ProgramChainTable
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of Program Chains
|
|
|
|
|
/// </summary>
|
2023-09-10 21:24:10 -04:00
|
|
|
public ushort NumberOfProgramChains { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reserved
|
|
|
|
|
/// </summary>
|
2024-04-23 13:30:43 -04:00
|
|
|
public ushort Reserved { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// End address (last byte of last PGC in this LU)
|
|
|
|
|
/// relative to VMGM_LU
|
|
|
|
|
/// </summary>
|
2023-09-10 21:24:10 -04:00
|
|
|
public uint EndAddress { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Program Chains
|
|
|
|
|
/// </summary>
|
2024-04-23 20:47:33 -04:00
|
|
|
/// <remarks>NumberOfProgramChains entries</remarks>
|
|
|
|
|
public ProgramChainTableEntry[]? Entries { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
}
|
|
|
|
|
}
|