Home
last modified time | relevance | path

Searched refs:mTimeToSample (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/extractors/mp4/
DSampleTable.cpp130 mTimeToSample(NULL), in SampleTable()
151 delete[] mTimeToSample; in ~SampleTable()
152 mTimeToSample = NULL; in ~SampleTable()
412 mTimeToSample = new (std::nothrow) uint32_t[mTimeToSampleCount * 2]; in setTimeToSampleParams()
413 if (!mTimeToSample) { in setTimeToSampleParams()
419 if (mDataSource->readAt(data_offset + 8, mTimeToSample, in setTimeToSampleParams()
426 mTimeToSample[i] = ntohl(mTimeToSample[i]); in setTimeToSampleParams()
667 uint32_t n = mTimeToSample[2 * i]; in buildSampleEntriesTable()
668 uint32_t delta = mTimeToSample[2 * i + 1]; in buildSampleEntriesTable()
DSampleIterator.cpp331 mTTSCount = mTable->mTimeToSample[2 * mTimeToSampleIndex]; in findSampleTimeAndDuration()
332 mTTSDuration = mTable->mTimeToSample[2 * mTimeToSampleIndex + 1]; in findSampleTimeAndDuration()
DSampleTable.h127 uint32_t* mTimeToSample; variable