hdsdump.f4f.AdobeSegmentRunTable.addSegmentFragmentPair(SegmentFragmentPair)

Here are the examples of the csharp api class hdsdump.f4f.AdobeSegmentRunTable.addSegmentFragmentPair(SegmentFragmentPair) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: hdsdump
Source File: AdobeSegmentRunTable.cs
View license
public override void Parse(BoxInfo bi, HDSBinaryReader br) {
            base.Parse(bi, br);

            qualitySegmentURLModifiers.Clear();
            uint qualityEntryCount = br.ReadByte();
            for (uint i = 0; i < qualityEntryCount; i++) {
                qualitySegmentURLModifiers.Add(br.ReadString());
            }

            uint entryCount = br.ReadUInt32();
            for (uint i = 0; i < entryCount; i++) {
                addSegmentFragmentPair(new SegmentFragmentPair(br.ReadUInt32(), br.ReadUInt32()));
            }
        }