using System;
using System.Collections.Generic;
using System.Text;
namespace JT1078.FMp4
{
public class SampleAuxiliaryInformationOffsetsBox : FullBox
{
public SampleAuxiliaryInformationOffsetsBox(byte version, uint flags) : base("saio", version, flags)
{
}
///
/// if (flags & 1)
///
public uint AuxInfoType { get; set; }
///
/// if (flags & 1)
///
public uint AuxInfoTypeParameter { get; set; }
public uint EntryCount { get; set; }
///
/// length:entry_count
///
public uint[] Offset { get; set; }
///
/// length:entry_count
///
public ulong[] OffsetLarge { get; set; }
}
}