Home
last modified time | relevance | path

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

/frameworks/av/media/extractors/mp4/
DSampleTable.cpp129 mTimeToSampleCount(0), in SampleTable()
393 mTimeToSampleCount = U32_AT(&header[4]); in setTimeToSampleParams()
394 if (mTimeToSampleCount > UINT32_MAX / (2 * sizeof(uint32_t))) { in setTimeToSampleParams()
408 uint64_t allocSize = (uint64_t)mTimeToSampleCount * 2 * sizeof(uint32_t); in setTimeToSampleParams()
421 mTimeToSample = new (std::nothrow) uint32_t[mTimeToSampleCount * 2]; in setTimeToSampleParams()
424 (unsigned long long)mTimeToSampleCount); in setTimeToSampleParams()
434 for (size_t i = 0; i < mTimeToSampleCount * 2; ++i) { in setTimeToSampleParams()
667 for (uint32_t i = 0; i < mTimeToSampleCount; ++i) { in buildSampleEntriesTable()
DSampleIterator.cpp64 || mTable->mTimeToSampleCount == 0) { in seekTo()
316 if (mTimeToSampleIndex == mTable->mTimeToSampleCount || in findSampleTimeAndDuration()
DSampleTable.h118 uint32_t mTimeToSampleCount; variable