mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-25 18:22:17 +00:00
20 lines
479 B
C#
20 lines
479 B
C#
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
|
|
public sealed class VOBUAddressMap
|
|
{
|
|
/// <summary>
|
|
/// End address (last byte of last entry)
|
|
/// </summary>
|
|
public uint EndAddress;
|
|
|
|
/// <summary>
|
|
/// Starting sector within VOB of nth VOBU
|
|
/// </summary>
|
|
#if NET48
|
|
public uint[] StartingSectors;
|
|
#else
|
|
public uint[]? StartingSectors;
|
|
#endif
|
|
}
|
|
} |