mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
31 lines
721 B
C#
31 lines
721 B
C#
namespace BinaryObjectScanner.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
|
|
public sealed class CellAddressTableEntry
|
|
{
|
|
/// <summary>
|
|
/// VOBidn
|
|
/// </summary>
|
|
public ushort VOBIdentity;
|
|
|
|
/// <summary>
|
|
/// CELLidn
|
|
/// </summary>
|
|
public byte CellIdentity;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte Reserved;
|
|
|
|
/// <summary>
|
|
/// Starting sector within VOB
|
|
/// </summary>
|
|
public uint StartingSectorWithinVOB;
|
|
|
|
/// <summary>
|
|
/// Ending sector within VOB
|
|
/// </summary>
|
|
public uint EndingSectorWithinVOB;
|
|
}
|
|
} |