2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.DVD
|
2025-09-26 11:42:28 -04:00
|
|
|
{
|
|
|
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
|
|
|
public sealed class ProgramChainTable
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of Program Chains
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort NumberOfProgramChains { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reserved
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort Reserved { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// End address (last byte of last PGC in this LU)
|
|
|
|
|
/// relative to VMGM_LU
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint EndAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Program Chains
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>NumberOfProgramChains entries</remarks>
|
2025-10-31 13:59:28 -04:00
|
|
|
public ProgramChainTableEntry[] Entries { get; set; } = [];
|
2025-09-26 11:42:28 -04:00
|
|
|
}
|
2025-10-30 21:32:21 -04:00
|
|
|
}
|