mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 13:45:25 +00:00
32 lines
814 B
C#
32 lines
814 B
C#
namespace BinaryObjectScanner.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
public sealed class LanguageUnitTable
|
|
{
|
|
/// <summary>
|
|
/// Number of Language Units
|
|
/// </summary>
|
|
public ushort NumberOfLanguageUnits;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved;
|
|
|
|
/// <summary>
|
|
/// End address (last byte of last PGC in last LU)
|
|
/// relative to VMGM_PGCI_UT
|
|
/// </summary>
|
|
public uint EndAddress;
|
|
|
|
/// <summary>
|
|
/// Language Units
|
|
/// </summary>
|
|
public LanguageUnitTableEntry[] Entries;
|
|
|
|
/// <summary>
|
|
/// Program Chains
|
|
/// </summary>
|
|
public ProgramChainTable[] ProgramChains;
|
|
}
|
|
} |