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

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp3258 uint32_t smplcnt; local
3259 if (!mDataSource->getUInt32(offset, &smplcnt)) {
3262 mCurrentSampleInfoCount = smplcnt;
3269 if (smplcnt > mCurrentSampleInfoAllocSize) {
3270 mCurrentSampleInfoSizes = (uint8_t*) realloc(mCurrentSampleInfoSizes, smplcnt);
3271 mCurrentSampleInfoAllocSize = smplcnt;
3274 mDataSource->readAt(offset, mCurrentSampleInfoSizes, smplcnt);

Completed in 53 milliseconds