Files
SabreTools.Models/DVD/AudioSubPictureAttributesTableEntry.cs

23 lines
697 B
C#
Raw Permalink Normal View History

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"/>
public sealed class AudioSubPictureAttributesTableEntry
{
/// <summary>
/// End address (EA)
/// </summary>
2023-09-10 21:24:10 -04:00
public uint EndAddress { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// VTS_CAT (copy of offset 022-025 of the VTS IFO file)
/// 0=unspecified, 1=Karaoke
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Category { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Copy of VTS attributes (offset 100 and on from the VTS IFO
/// file, usually 0x300 bytes long)
/// </summary>
2023-09-10 21:24:10 -04:00
public byte[]? AttributesCopy { get; set; }
2023-09-04 00:11:04 -04:00
}
}