Searched refs:kiSrcLen (Results 1 – 8 of 8) sorted by relevance
/third_party/openh264/codec/decoder/plus/inc/ |
D | welsDecoderExt.h | 78 const int kiSrcLen, 85 const int kiSrcLen, 90 const int kiSrcLen, 98 const int kiSrcLen, 101 const int kiSrcLen, 113 …TATE DecodeFrame2WithCtx (PWelsDecoderContext pCtx, const unsigned char* kpSrc, const int kiSrcLen, 152 …int ThreadDecodeFrameInternal (const unsigned char* kpSrc, const int kiSrcLen, unsigned char** ppD…
|
/third_party/openh264/codec/decoder/plus/src/ |
D | welsDecoderExt.cpp | 313 m_pDecThrCtx[i].kiSrcLen = 0; in OpenDecoderThreads() 691 const int kiSrcLen, in DecodeFrameNoDelay() argument 696 iRet = ThreadDecodeFrameInternal (kpSrc, kiSrcLen, ppDst, pDstInfo); in DecodeFrameNoDelay() 714 iRet = (int)DecodeFrame2 (kpSrc, kiSrcLen, ppDst, pDstInfo); in DecodeFrameNoDelay() 730 const int kiSrcLen, in DecodeFrame2WithCtx() argument 745 if (CheckBsBuffer (pDecContext, kiSrcLen)) { in DecodeFrame2WithCtx() 752 if (kiSrcLen > 0 && kpSrc != NULL) { in DecodeFrame2WithCtx() 755 WelsFwrite (kpSrc, sizeof (unsigned char), kiSrcLen, m_pFBS); in DecodeFrame2WithCtx() 759 WelsFwrite (&kiSrcLen, sizeof (int), 1, m_pFBSSize); in DecodeFrame2WithCtx() 802 WelsDecodeBs (pDecContext, kpSrc, kiSrcLen, ppDst, in DecodeFrame2WithCtx() [all …]
|
/third_party/openh264/codec/decoder/core/inc/ |
D | decoder_core.h | 66 int32_t ExpandBsBuffer (PWelsDecoderContext pCtx, const int32_t kiSrcLen); 82 int32_t CheckBsBuffer (PWelsDecoderContext pCtx, const int32_t kiSrcLen);
|
D | au_parser.h | 89 int32_t ParseNonVclNal (PWelsDecoderContext pCtx, uint8_t* pRbsp, const int32_t kiSrcLen, uint8_t* …
|
D | decoder_context.h | 536 int32_t kiSrcLen; member
|
/third_party/openh264/test/decoder/ |
D | DecUT_ParseSyntax.cpp | 22 const int kiSrcLen, in DecodeFrame() argument 27 if (CheckBsBuffer (m_pDecContext, kiSrcLen)) { in DecodeFrame() 30 if (kiSrcLen > 0 && kpSrc != NULL) { in DecodeFrame() 60 WelsDecodeBs (m_pDecContext, kpSrc, kiSrcLen, ppDst, in DecodeFrame()
|
/third_party/openh264/codec/decoder/core/src/ |
D | au_parser.cpp | 575 int32_t ParseNonVclNal (PWelsDecoderContext pCtx, uint8_t* pRbsp, const int32_t kiSrcLen, uint8_t* … in ParseNonVclNal() argument 583 if (kiSrcLen <= 0) in ParseNonVclNal() 587 iBitSize = (kiSrcLen << 3) - BsGetTrailingBits (pRbsp + kiSrcLen - 1); // convert into bit in ParseNonVclNal()
|
D | decoder_core.cpp | 648 int32_t ExpandBsBuffer (PWelsDecoderContext pCtx, const int kiSrcLen) { in ExpandBsBuffer() argument 652 …int32_t iNewBuffLen = WELS_MAX ((kiSrcLen * MAX_BUFFERED_NUM), (pCtx->iMaxBsBufferSizeInByte << iE… in ExpandBsBuffer() 733 int32_t CheckBsBuffer (PWelsDecoderContext pCtx, const int32_t kiSrcLen) { in CheckBsBuffer() argument 734 if (kiSrcLen > MAX_ACCESS_UNIT_CAPACITY) { //exceeds max allowed data in CheckBsBuffer() 737 kiSrcLen); in CheckBsBuffer() 740 } else if (kiSrcLen > pCtx->iMaxBsBufferSizeInByte / in CheckBsBuffer() 742 if (ExpandBsBuffer (pCtx, kiSrcLen)) { in CheckBsBuffer()
|