Inheritance: VersionedAtom
Exemple #1
0
 public Entry(AtomELST editListBox ,long segmentDuration, long mediaTime, double mediaRate)
 {
     this.EditListBox = editListBox;
     SegmentDuration = segmentDuration;
     MediaTime = mediaTime;
     MediaRate = mediaRate;
 }
Exemple #2
0
 public Entry(AtomELST editListBox, long segmentDuration, long mediaTime, double mediaRate)
 {
     this.EditListBox = editListBox;
     SegmentDuration  = segmentDuration;
     MediaTime        = mediaTime;
     MediaRate        = mediaRate;
 }
Exemple #3
0
 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;
 }
Exemple #4
0
 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;
 }