Searched defs:smplcnt (Results 1 - 1 of 1) sorted by path

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp3549 uint32_t smplcnt; local
3550 if (!mDataSource->getUInt32(offset, &smplcnt)) {
3553 mCurrentSampleInfoCount = smplcnt;
3560 if (smplcnt > mCurrentSampleInfoAllocSize) {
3561 mCurrentSampleInfoSizes = (uint8_t*) realloc(mCurrentSampleInfoSizes, smplcnt);
3562 mCurrentSampleInfoAllocSize = smplcnt;
3565 mDataSource->readAt(offset, mCurrentSampleInfoSizes, smplcnt);

Completed in 73 milliseconds