Home
last modified time | relevance | path

Searched refs:pCabacDecEngine (Results 1 – 5 of 5) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Dparse_mb_syn_cabac.cpp76 PWelsCabacDecEngine pCabacDecEngine = pCtx->pCabacDecEngine; in DecodeCabacIntraMbType() local
79 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx, uiCode)); in DecodeCabacIntraMbType()
84 WELS_READ_VERIFY (DecodeTerminateCabac (pCabacDecEngine, uiCode)); in DecodeCabacIntraMbType()
89 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx + 1, uiCode)); /* cbp_luma != 0 */ in DecodeCabacIntraMbType()
92 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx + 2, uiCode)); in DecodeCabacIntraMbType()
94 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx + 2, uiCode)); in DecodeCabacIntraMbType()
97 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx + 3, uiCode)); in DecodeCabacIntraMbType()
99 WELS_READ_VERIFY (DecodeBinCabac (pCabacDecEngine, pBinCtx + 3, uiCode)); in DecodeCabacIntraMbType()
226 WELS_READ_VERIFY (DecodeTerminateCabac (pCtx->pCabacDecEngine, uiBinVal)); in ParseEndOfSliceCabac()
238 WELS_READ_VERIFY (DecodeBinCabac (pCtx->pCabacDecEngine, pBinCtx, uiSkip)); in ParseSkipFlagCabac()
[all …]
Ddecoder.cpp538 if (pCtx->pCabacDecEngine == NULL) in WelsRequestMem()
539 …pCtx->pCabacDecEngine = (SWelsCabacDecEngine*) pMa->WelsMallocz (sizeof (SWelsCabacDecEngine), "pC… in WelsRequestMem()
540 WELS_VERIFY_RETURN_IF (ERR_INFO_OUT_OF_MEMORY, (NULL == pCtx->pCabacDecEngine)) in WelsRequestMem()
592 pMa->WelsFree (pCtx->pCabacDecEngine, "pCtx->pCabacDecEngine"); in WelsFreeDynamicMemory()
Ddecode_slice.cpp678 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacISliceBaseMode0()
848 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacISliceBaseMode0()
898 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacPSliceBaseMode0()
1089 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacPSliceBaseMode0()
1138 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacBSliceBaseMode0()
1330 RestoreCabacDecEngineToBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAux); in WelsDecodeMbCabacBSliceBaseMode0()
1573 …WELS_READ_VERIFY (InitCabacDecEngineFromBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAu… in WelsDecodeSlice()
1680 …WELS_READ_VERIFY (InitCabacDecEngineFromBS (pCtx->pCabacDecEngine, pCtx->pCurDqLayer->pBitStringAu… in WelsDecodeAndConstructSlice()
Ddecoder_core.cpp2352 if (pCtx->pCabacDecEngine == NULL) { in ConstructAccessUnit()
2353 …pCtx->pCabacDecEngine = (SWelsCabacDecEngine*)pCtx->pMemAlign->WelsMallocz (sizeof (SWelsCabacDecE… in ConstructAccessUnit()
2355 WELS_VERIFY_RETURN_IF (ERR_INFO_OUT_OF_MEMORY, (NULL == pCtx->pCabacDecEngine)) in ConstructAccessUnit()
/third_party/openh264/codec/decoder/core/inc/
Ddecoder_context.h490 PWelsCabacDecEngine pCabacDecEngine; member