Searched refs:pNalLen (Results 1 – 4 of 4) sorted by relevance
/third_party/openh264/codec/encoder/core/inc/ |
D | nal_encap.h | 76 int32_t* pNalLen; member
|
/third_party/openh264/test/encoder/ |
D | EncUT_SliceBufferReallocate.cpp | 280 …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/ |
D | svc_encode_slice.cpp | 1561 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()
|
D | encoder_ext.cpp | 1630 …(*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 …]
|