Add BOS models

This commit is contained in:
Matt Nadareski
2023-09-04 00:11:04 -04:00
parent 68c6f9d61f
commit 1055187865
373 changed files with 23931 additions and 0 deletions

27
DVD/ProgramChainTable.cs Normal file
View File

@@ -0,0 +1,27 @@
namespace BinaryObjectScanner.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;
/// <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;
}
}