mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 21:29:18 +00:00
26 lines
640 B
C#
26 lines
640 B
C#
namespace BinaryObjectScanner.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
public sealed class ProgramChainTableEntry
|
|
{
|
|
/// <summary>
|
|
/// PGC category
|
|
/// </summary>
|
|
public ProgramChainCategory Category;
|
|
|
|
/// <summary>
|
|
/// Unknown
|
|
/// </summary>
|
|
public byte Unknown;
|
|
|
|
/// <summary>
|
|
/// Parental management mask
|
|
/// </summary>
|
|
public ushort ParentalManagementMask;
|
|
|
|
/// <summary>
|
|
/// Offset to VMGM_PGC, relative to VMGM_LU
|
|
/// </summary>
|
|
public uint Offset;
|
|
}
|
|
} |