HomeSort by relevance Sort by last modified time
    Searched defs:IsoTypeReader (Results 1 - 7 of 7) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleAuxiliaryInformationOffsetsBox.java 19 import com.coremedia.iso.IsoTypeReader;
87 auxInfoType = IsoTypeReader.readUInt32(content);
88 auxInfoTypeParameter = IsoTypeReader.readUInt32(content);
91 int entryCount = l2i(IsoTypeReader.readUInt32(content));
96 offsets.add(IsoTypeReader.readUInt32(content));
98 offsets.add(IsoTypeReader.readUInt64(content));
SubSampleInformationBox.java 3 import com.coremedia.iso.IsoTypeReader;
72 entryCount = IsoTypeReader.readUInt32(content);
76 sampleEntry.setSampleDelta(IsoTypeReader.readUInt32(content));
77 int subsampleCount = IsoTypeReader.readUInt16(content);
80 subsampleEntry.setSubsampleSize(getVersion() == 1 ? IsoTypeReader.readUInt32(content) : IsoTypeReader.readUInt16(content));
81 subsampleEntry.setSubsamplePriority(IsoTypeReader.readUInt8(content));
82 subsampleEntry.setDiscardable(IsoTypeReader.readUInt8(content));
83 subsampleEntry.setReserved(IsoTypeReader.readUInt32(content));
FileTypeBox.java 20 import com.coremedia.iso.IsoTypeReader;
61 majorBrand = IsoTypeReader.read4cc(content);
62 minorVersion = IsoTypeReader.readUInt32(content);
66 compatibleBrands.add(IsoTypeReader.read4cc(content));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
SegmentTypeBox.java 20 import com.coremedia.iso.IsoTypeReader;
60 majorBrand = IsoTypeReader.read4cc(content);
61 minorVersion = IsoTypeReader.readUInt32(content);
65 compatibleBrands.add(IsoTypeReader.read4cc(content));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReader.java 21 public final class IsoTypeReader {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 4 import com.coremedia.iso.IsoTypeReader;
45 algorithmId = IsoTypeReader.readUInt24(content);
46 ivSize = IsoTypeReader.readUInt8(content);
62 long numOfEntries = IsoTypeReader.readUInt32(content);
69 int numOfPairs = IsoTypeReader.readUInt16(content);
72 e.pairs.add(e.createPair(IsoTypeReader.readUInt16(content), IsoTypeReader.readUInt32(content)));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
SegmentIndexBox.java 3 import com.coremedia.iso.IsoTypeReader;
101 referenceId = IsoTypeReader.readUInt32(content);
102 timeScale = IsoTypeReader.readUInt32(content);
104 earliestPresentationTime = IsoTypeReader.readUInt32(content);
105 firstOffset = IsoTypeReader.readUInt32(content);
107 earliestPresentationTime = IsoTypeReader.readUInt64(content);
108 firstOffset = IsoTypeReader.readUInt64(content);
110 reserved = IsoTypeReader.readUInt16(content);
111 int numEntries = IsoTypeReader.readUInt16(content);
117 e.setSubsegmentDuration(IsoTypeReader.readUInt32(content))
    [all...]

Completed in 179 milliseconds