mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 13:45:25 +00:00
16 lines
425 B
C#
16 lines
425 B
C#
namespace BinaryObjectScanner.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>
|
|
public uint[] StartingSectors;
|
|
}
|
|
} |