mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 21:48:30 +00:00
34 lines
793 B
C#
34 lines
793 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <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;
|
|
}
|
|
} |