public Entry(AtomELST editListBox ,long segmentDuration, long mediaTime, double mediaRate) { this.EditListBox = editListBox; SegmentDuration = segmentDuration; MediaTime = mediaTime; MediaRate = mediaRate; }
public Entry(AtomELST editListBox, long segmentDuration, long mediaTime, double mediaRate) { this.EditListBox = editListBox; SegmentDuration = segmentDuration; MediaTime = mediaTime; MediaRate = mediaRate; }
public Entry(AtomELST editListBox, IsoTypeReader itr) { if (editListBox.Version== 1) { SegmentDuration = itr.ReadInt64(); MediaTime = itr.ReadInt64(); } else { SegmentDuration = itr.ReadUInt32(); MediaTime = itr.ReadUInt32(); } MediaRate = itr.ReadFixedPoint1616(); this.EditListBox = editListBox; }
public Entry(AtomELST editListBox, IsoTypeReader itr) { if (editListBox.Version == 1) { SegmentDuration = itr.ReadInt64(); MediaTime = itr.ReadInt64(); } else { SegmentDuration = itr.ReadUInt32(); MediaTime = itr.ReadUInt32(); } MediaRate = itr.ReadFixedPoint1616(); this.EditListBox = editListBox; }