mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-15 13:55:08 +00:00
27 lines
731 B
C#
27 lines
731 B
C#
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <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>
|
|
public ProgramChainTableEntry?[]? Entries { get; set; }
|
|
}
|
|
} |