mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-18 21:40:44 +00:00
27 lines
724 B
C#
27 lines
724 B
C#
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
|
|
public sealed class CellAddressTable
|
|
{
|
|
/// <summary>
|
|
/// Number of VOB IDs
|
|
/// </summary>
|
|
public ushort NumberOfVOBIDs { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public ushort Reserved { get; set; }
|
|
|
|
/// <summary>
|
|
/// End address (last byte of last entry)
|
|
/// </summary>
|
|
public uint EndAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// 12-byte entries
|
|
/// </summary>
|
|
/// <remarks>NumberOfVOBIDs entries</remarks>
|
|
public CellAddressTableEntry[]? Entries { get; set; }
|
|
}
|
|
} |