Home
last modified time | relevance | path

Searched refs:pNalLen (Results 1 – 4 of 4) sorted by relevance

/third_party/openh264/codec/encoder/core/inc/
Dnal_encap.h76 int32_t* pNalLen; member
/third_party/openh264/test/encoder/
DEncUT_SliceBufferReallocate.cpp280 …pCtx->pOut->pNalLen = (int32_t*)pCtx->pMemAlign->WelsMallocz (iCountNals * sizeof (int32_t), "pOut… in InitFrameBsBuffer()
281 WELS_VERIFY_RETURN_IF (ENC_RETURN_MEMALLOCERR, (NULL == pCtx->pOut->pNalLen)) in InitFrameBsBuffer()
305 if (NULL != pCtx->pOut->pNalLen) { in UnInitFrameBsBuffer()
306 pCtx->pMemAlign->WelsFree (pCtx->pOut->pNalLen, "pCtx->pOut->pNalLen"); in UnInitFrameBsBuffer()
307 pCtx->pOut->pNalLen = NULL; in UnInitFrameBsBuffer()
563 EXPECT_TRUE (NULL != pCtx->pOut->pNalLen); in TEST_F()
/third_party/openh264/codec/encoder/core/src/
Dsvc_encode_slice.cpp1561 int32_t* pNalLen = (int32_t*)pMA->WelsMallocz (iCountNals * sizeof (int32_t), "pOut->pNalLen"); in FrameBsRealloc() local
1562 if (NULL == pNalLen) { in FrameBsRealloc()
1566 memcpy (pNalLen, pCtx->pOut->pNalLen, sizeof (int32_t) * pCtx->pOut->iCountNals); in FrameBsRealloc()
1567 pMA->WelsFree (pCtx->pOut->pNalLen, "pOut->pNalLen"); in FrameBsRealloc()
1568 pCtx->pOut->pNalLen = pNalLen; in FrameBsRealloc()
1573 pLBI1->pNalLengthInByte = pCtx->pOut->pNalLen; in FrameBsRealloc()
Dencoder_ext.cpp1630 …(*ppCtx)->pOut->pNalLen = (int32_t*)pMa->WelsMallocz (iCountNals * sizeof (int32_t), "pOut->pNalLe… in RequestMemorySvc()
1631 WELS_VERIFY_RETURN_IF (1, (NULL == (*ppCtx)->pOut->pNalLen)) in RequestMemorySvc()
1831 if (NULL != pCtx->pOut->pNalLen) { in FreeMemorySvc()
1832 pMa->WelsFree (pCtx->pOut->pNalLen, "pOut->pNalLen"); in FreeMemorySvc()
1833 pCtx->pOut->pNalLen = NULL; in FreeMemorySvc()
2867 int32_t WelsWriteParameterSets (sWelsEncCtx* pCtx, int32_t* pNalLen, int32_t* pNumNal, int32_t* pTo… in WelsWriteParameterSets() argument
2876 …if (NULL == pCtx || NULL == pNalLen || NULL == pNumNal || NULL == pCtx->pFuncList->pParametersetSt… in WelsWriteParameterSets()
2889 pNalLen[iCountNal] = iNalLength; in WelsWriteParameterSets()
2917 pNalLen[iCountNal] = iNalLength; in WelsWriteParameterSets()
2934 pNalLen[iCountNal] = iNalLength; in WelsWriteParameterSets()
[all …]