2025-09-26 11:42:28 -04:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.DVD
|
2025-09-26 11:42:28 -04:00
|
|
|
{
|
|
|
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
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;
|
|
|
|
|
}
|
2025-10-30 21:32:21 -04:00
|
|
|
}
|