Home
last modified time | relevance | path

Searched refs:kiSrcLen (Results 1 – 8 of 8) sorted by relevance

/third_party/openh264/codec/decoder/plus/inc/
DwelsDecoderExt.h78 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/
DwelsDecoderExt.cpp313 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/
Ddecoder_core.h66 int32_t ExpandBsBuffer (PWelsDecoderContext pCtx, const int32_t kiSrcLen);
82 int32_t CheckBsBuffer (PWelsDecoderContext pCtx, const int32_t kiSrcLen);
Dau_parser.h89 int32_t ParseNonVclNal (PWelsDecoderContext pCtx, uint8_t* pRbsp, const int32_t kiSrcLen, uint8_t* …
Ddecoder_context.h536 int32_t kiSrcLen; member
/third_party/openh264/test/decoder/
DDecUT_ParseSyntax.cpp22 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/
Dau_parser.cpp575 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()
Ddecoder_core.cpp648 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()