Home
last modified time | relevance | path

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

/hardware/intel/common/libmix/videoencoder/
DVideoEncoderBase.cpp51 ,mCodedBufSize(0) in VideoEncoderBase()
309 mCodedBufSize, in start()
1451 if (mCodedBufSize > 0) { in getMaxOutSize()
1452 *maxSize = mCodedBufSize; in getMaxOutSize()
1469 mCodedBufSize = (2 * 1024 * 1024 + 31) & (~31); in getMaxOutSize()
1475 mCodedBufSize = (size * 400) / (16 * 16); in getMaxOutSize()
1478 mCodedBufSize = mComParams.rcParams.bitRate / 4; in getMaxOutSize()
1481 mCodedBufSize = max (mCodedBufSize , (size * 400) / (16 * 16)); in getMaxOutSize()
1484 mCodedBufSize = min(mCodedBufSize, (size * 1.5 * 8)); in getMaxOutSize()
1485 mCodedBufSize = (mCodedBufSize + 15) &(~15); in getMaxOutSize()
[all …]
DVideoEncoderBase.h149 uint32_t mCodedBufSize; variable