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

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp3585 uint32_t entrycount; local
3586 if (!mDataSource->getUInt32(offset, &entrycount)) {
3590 if (entrycount == 0) {
3593 if (entrycount > UINT32_MAX / 8) {
3597 if (entrycount > mCurrentSampleInfoOffsetsAllocSize) {
3598 uint64_t *newPtr = (uint64_t *)realloc(mCurrentSampleInfoOffsets, entrycount * 8);
3603 mCurrentSampleInfoOffsetsAllocSize = entrycount;
3605 mCurrentSampleInfoOffsetCount = entrycount;
3611 for (size_t i = 0; i < entrycount; i++) {

Completed in 32 milliseconds