2023-03-07 16:59:14 -05:00
|
|
|
namespace BinaryObjectScanner.Models.DVD
|
2023-01-12 23:38:09 -08:00
|
|
|
{
|
|
|
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
|
|
|
public sealed class ProgramChainTable
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of Program Chains
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort NumberOfProgramChains;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reserved
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte[] Reserved;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// End address (last byte of last PGC in this LU)
|
|
|
|
|
/// relative to VMGM_LU
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint EndAddress;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Program Chains
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ProgramChainTableEntry[] Entries;
|
|
|
|
|
}
|
|
|
|
|
}
|