HomeSort by relevance Sort by last modified time
    Searched refs:readUInt32 (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
BitRateBox.java 56 bufferSizeDb = IsoTypeReader.readUInt32(content);
57 maxBitrate = IsoTypeReader.readUInt32(content);
58 avgBitrate = IsoTypeReader.readUInt32(content);
StaticChunkOffsetBox.java 53 int entryCount = l2i(IsoTypeReader.readUInt32(content));
56 chunkOffsets[i] = IsoTypeReader.readUInt32(content);
SampleAuxiliaryInformationOffsetsBox.java 87 auxInfoType = IsoTypeReader.readUInt32(content);
88 auxInfoTypeParameter = IsoTypeReader.readUInt32(content);
91 int entryCount = l2i(IsoTypeReader.readUInt32(content));
96 offsets.add(IsoTypeReader.readUInt32(content));
HintMediaHeaderBox.java 66 maxBitrate = IsoTypeReader.readUInt32(content);
67 avgBitrate = IsoTypeReader.readUInt32(content);
68 IsoTypeReader.readUInt32(content); // reserved!
SampleSizeBox.java 90 sampleSize = IsoTypeReader.readUInt32(content);
91 sampleCount = l2i(IsoTypeReader.readUInt32(content));
97 sampleSizes[i] = IsoTypeReader.readUInt32(content);
MediaHeaderBox.java 102 timescale = IsoTypeReader.readUInt32(content);
105 creationTime = IsoTypeReader.readUInt32(content);
106 modificationTime = IsoTypeReader.readUInt32(content);
107 timescale = IsoTypeReader.readUInt32(content);
108 duration = IsoTypeReader.readUInt32(content);
TrackHeaderBox.java 113 trackId = IsoTypeReader.readUInt32(content);
114 IsoTypeReader.readUInt32(content);
117 creationTime = IsoTypeReader.readUInt32(content);
118 modificationTime = IsoTypeReader.readUInt32(content);
119 trackId = IsoTypeReader.readUInt32(content);
120 IsoTypeReader.readUInt32(content);
121 duration = IsoTypeReader.readUInt32(content);
123 IsoTypeReader.readUInt32(content);
124 IsoTypeReader.readUInt32(content);
131 matrix[i] = IsoTypeReader.readUInt32(content)
    [all...]
HandlerBox.java 114 shouldBeZeroButAppleWritesHereSomeValue = IsoTypeReader.readUInt32(content);
116 a = IsoTypeReader.readUInt32(content);
117 b = IsoTypeReader.readUInt32(content);
118 c = IsoTypeReader.readUInt32(content);
MovieHeaderBox.java 108 timescale = IsoTypeReader.readUInt32(content);
111 creationTime = IsoTypeReader.readUInt32(content);
112 modificationTime = IsoTypeReader.readUInt32(content);
113 timescale = IsoTypeReader.readUInt32(content);
114 duration = IsoTypeReader.readUInt32(content);
119 IsoTypeReader.readUInt32(content);
120 IsoTypeReader.readUInt32(content);
123 matrix[i] = IsoTypeReader.readUInt32(content);
133 nextTrackId = IsoTypeReader.readUInt32(content);
SampleToChunkBox.java 62 int entryCount = l2i(IsoTypeReader.readUInt32(content));
66 IsoTypeReader.readUInt32(content),
67 IsoTypeReader.readUInt32(content),
68 IsoTypeReader.readUInt32(content)));
ProgressiveDownloadInformationBox.java 48 Entry entry = new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content));
SyncSampleBox.java 56 int entryCount = l2i(IsoTypeReader.readUInt32(content));
60 sampleNumber[i] = IsoTypeReader.readUInt32(content);
TimeToSampleBox.java 61 int entryCount = l2i(IsoTypeReader.readUInt32(content));
65 entries.add(new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content)));
ChunkOffset64BitBox.java 34 int entryCount = l2i(IsoTypeReader.readUInt32(content));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReaderVariable.java 31 return IsoTypeReader.readUInt32(bb);
IsoTypeReader.java 34 public static long readUInt32(ByteBuffer bb) {
100 result += readUInt32(byteBuffer) << 32;
104 result += readUInt32(byteBuffer);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackExtendsBox.java 64 trackId = IsoTypeReader.readUInt32(content);
65 defaultSampleDescriptionIndex = IsoTypeReader.readUInt32(content);
66 defaultSampleDuration = IsoTypeReader.readUInt32(content);
67 defaultSampleSize = IsoTypeReader.readUInt32(content);
MovieFragmentRandomAccessOffsetBox.java 46 mfraSize = IsoTypeReader.readUInt32(content);
  /external/icu/icu4c/source/common/
rbbidata.cpp 352 if (ds->readUInt32(rbbiDH->fMagic) != 0xb1a0 ||
354 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader))
364 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength);
408 tableStartOffset = ds->readUInt32(rbbiDH->fFTable);
409 tableLength = ds->readUInt32(rbbiDH->fFTableLen);
419 tableStartOffset = ds->readUInt32(rbbiDH->fRTable);
420 tableLength = ds->readUInt32(rbbiDH->fRTableLen);
430 tableStartOffset = ds->readUInt32(rbbiDH->fSFTable);
431 tableLength = ds->readUInt32(rbbiDH->fSFTableLen);
441 tableStartOffset = ds->readUInt32(rbbiDH->fSRTable)
    [all...]
ucol_swp.cpp 57 trie.signature=ds->readUInt32(inTrie->signature);
58 trie.options=ds->readUInt32(inTrie->options);
143 header.magic=ds->readUInt32(inHeader->magic);
206 header.magic=ds->readUInt32(inHeader->magic);
235 header.options= ds->readUInt32(inHeader->options);
236 header.UCAConsts= ds->readUInt32(inHeader->UCAConsts);
237 header.contractionUCACombos= ds->readUInt32(inHeader->contractionUCACombos);
238 header.mappingPosition= ds->readUInt32(inHeader->mappingPosition);
239 header.expansion= ds->readUInt32(inHeader->expansion);
240 header.contractionIndex= ds->readUInt32(inHeader->contractionIndex)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
AudioSampleEntry.java 190 reserved2 = IsoTypeReader.readUInt32(content);
199 sampleRate = IsoTypeReader.readUInt32(content);
206 samplesPerPacket = IsoTypeReader.readUInt32(content);
207 bytesPerPacket = IsoTypeReader.readUInt32(content);
208 bytesPerFrame = IsoTypeReader.readUInt32(content);
209 bytesPerSample = IsoTypeReader.readUInt32(content);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleDataRateBox.java 40 dataRate = IsoTypeReader.readUInt32(content);
AppleLosslessSpecificBox.java 126 maxSamplePerFrame = IsoTypeReader.readUInt32(content);
134 maxCodedFrameSize = IsoTypeReader.readUInt32(content);
135 bitRate = IsoTypeReader.readUInt32(content);
136 sampleRate = IsoTypeReader.readUInt32(content);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
TfxdBox.java 61 fragmentAbsoluteTime = IsoTypeReader.readUInt32(content);
62 fragmentAbsoluteDuration = IsoTypeReader.readUInt32(content);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
SampleToGroupBox.java 83 long entryCount = IsoTypeReader.readUInt32(content);
85 entries.add(new Entry(l2i(IsoTypeReader.readUInt32(content)), l2i(IsoTypeReader.readUInt32(content))));

Completed in 262 milliseconds

1 2 3 4