Files
SabreTools.Models/DVD/CellAddressTableEntry.cs

34 lines
793 B
C#
Raw Permalink Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
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"/>
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2023-09-04 00:11:04 -04:00
public sealed class CellAddressTableEntry
{
/// <summary>
/// VOBidn
/// </summary>
2024-04-23 13:30:43 -04:00
public ushort VOBIdentity;
2023-09-04 00:11:04 -04:00
/// <summary>
/// CELLidn
/// </summary>
2024-04-23 13:30:43 -04:00
public byte CellIdentity;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2024-04-23 13:30:43 -04:00
public byte Reserved;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Starting sector within VOB
/// </summary>
2024-04-23 13:30:43 -04:00
public uint StartingSectorWithinVOB;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Ending sector within VOB
/// </summary>
2024-04-23 13:30:43 -04:00
public uint EndingSectorWithinVOB;
2023-09-04 00:11:04 -04:00
}
}