using System; using System.Collections.Generic; using System.Text; namespace JT1078.FMp4 { public class SubTrackSampleGroupBox : FullBox { public SubTrackSampleGroupBox(byte version=0, uint flags=0) : base("stsg", version, flags) { } public uint GroupingType { get; set; } public ushort ItemCount { get; set; } /// /// length:ItemCount /// public List GroupDescriptionIndex { get; set; } } }