Files
SabreTools.Models/DVD/CellAddressTableEntry.cs
2023-09-10 21:24:10 -04:00

31 lines
777 B
C#

namespace SabreTools.Models.DVD
{
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
public sealed class CellAddressTableEntry
{
/// <summary>
/// VOBidn
/// </summary>
public ushort VOBIdentity { get; set; }
/// <summary>
/// CELLidn
/// </summary>
public byte CellIdentity { get; set; }
/// <summary>
/// Reserved
/// </summary>
public byte Reserved { get; set; }
/// <summary>
/// Starting sector within VOB
/// </summary>
public uint StartingSectorWithinVOB { get; set; }
/// <summary>
/// Ending sector within VOB
/// </summary>
public uint EndingSectorWithinVOB { get; set; }
}
}