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

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
SampleList.java 52 int sampleIndex = 0;
66 long sampleSize = sizes[sampleIndex];
67 offsets[sampleIndex] = sampleOffset;
69 sampleIndex++;
  /frameworks/av/media/libstagefright/
SampleTable.cpp 49 uint32_t getCompositionTimeOffset(uint32_t sampleIndex);
81 uint32_t sampleIndex) {
88 if (sampleIndex < mCurrentEntrySampleIndex) {
95 if (sampleIndex < mCurrentEntrySampleIndex + sampleCount) {
507 uint32_t sampleIndex = 0;
515 if (sampleIndex < mNumSampleSizes) {
520 mSampleTimeEntries[sampleIndex].mSampleIndex = sampleIndex;
524 sampleIndex);
526 mSampleTimeEntries[sampleIndex].mCompositionTime
    [all...]
AVIExtractor.cpp 1057 size_t sampleIndex = 0;
1061 trackIndex, sampleIndex, &offset, &size, &isKey, &timeUs);
1071 ++sampleIndex;
1105 size_t trackIndex, size_t sampleIndex,
1114 if (sampleIndex >= track.mSamples.size()) {
1118 const SampleInfo &info = track.mSamples.itemAt(sampleIndex);
1148 if (sampleIndex == 0) {
1152 track.mFirstChunkSize + track.mAvgChunkSize * (sampleIndex - 1);
1155 sampleIndex = sampleStartInBytes / track.mBytesPerSample;
1158 *sampleTimeUs = (sampleIndex * 1000000ll * track.mRate) / track.mScale
    [all...]
MPEG4Extractor.cpp 459 uint32_t sampleIndex;
461 if (track->sampleTable->findThumbnailSample(&sampleIndex) == OK
463 sampleIndex, NULL /* offset */, NULL /* size */,
    [all...]

Completed in 242 milliseconds