namespace BinaryObjectScanner.Models.DVD
{
///
public sealed class AudioSubPictureAttributesTableEntry
{
///
/// End address (EA)
///
public uint EndAddress;
///
/// VTS_CAT (copy of offset 022-025 of the VTS IFO file)
/// 0=unspecified, 1=Karaoke
///
public uint Category;
///
/// Copy of VTS attributes (offset 100 and on from the VTS IFO
/// file, usually 0x300 bytes long)
///
public byte[] AttributesCopy;
}
}