Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:entrycount

4156     uint32_t entrycount;
4157 if (!mDataSource->getUInt32(offset, &entrycount)) {
4161 if (entrycount == 0) {
4164 if (entrycount > UINT32_MAX / 8) {
4168 if (entrycount > mCurrentSampleInfoOffsetsAllocSize) {
4169 uint64_t *newPtr = (uint64_t *)realloc(mCurrentSampleInfoOffsets, entrycount * 8);
4171 ALOGE("failed to realloc %u -> %u", mCurrentSampleInfoOffsetsAllocSize, entrycount * 8);
4175 mCurrentSampleInfoOffsetsAllocSize = entrycount;
4177 mCurrentSampleInfoOffsetCount = entrycount;
4183 for (size_t i = 0; i < entrycount; i++) {