Files
SabreTools.Models/DVD/CellAddressTableEntry.cs

31 lines
777 B
C#
Raw Permalink Normal View History

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