Searched refs:entrycount (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp3793 uint32_t entrycount; local
3794 if (!mDataSource->getUInt32(offset, &entrycount)) {
3798 if (entrycount == 0) {
3801 if (entrycount > UINT32_MAX / 8) {
3805 if (entrycount > mCurrentSampleInfoOffsetsAllocSize) {
3806 uint64_t *newPtr = (uint64_t *)realloc(mCurrentSampleInfoOffsets, entrycount * 8);
3811 mCurrentSampleInfoOffsetsAllocSize = entrycount;
3813 mCurrentSampleInfoOffsetCount = entrycount;
3819 for (size_t i = 0; i < entrycount; i++) {

Completed in 38 milliseconds