Home
last modified time | relevance | path

Searched refs:mCodedBufSize (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/libmix/videoencoder/
DVideoEncoderBase.cpp48 ,mCodedBufSize(0) in VideoEncoderBase()
306 mCodedBufSize, in start()
1446 if (mCodedBufSize > 0) { in getMaxOutSize()
1447 *maxSize = mCodedBufSize; in getMaxOutSize()
1464 mCodedBufSize = (2 * 1024 * 1024 + 31) & (~31); in getMaxOutSize()
1470 mCodedBufSize = (size * 400) / (16 * 16); in getMaxOutSize()
1473 mCodedBufSize = mComParams.rcParams.bitRate / 4; in getMaxOutSize()
1476 mCodedBufSize = max (mCodedBufSize , (size * 400) / (16 * 16)); in getMaxOutSize()
1479 mCodedBufSize = min(mCodedBufSize, (size * 1.5 * 8)); in getMaxOutSize()
1480 mCodedBufSize = (mCodedBufSize + 15) &(~15); in getMaxOutSize()
[all …]
DVideoEncoderBase.h149 uint32_t mCodedBufSize; variable