Home
last modified time | relevance | path

Searched refs:sNalList (Results 1 – 7 of 7) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dnal_encap.cpp49 …SWelsNalRaw* pRawNal = &pWelsEncoderOuput->sNalList[ pWelsEncoderOuput->iNalIndex… in WelsLoadNal()
68 SWelsNalRaw* pRawNal = &pWelsEncoderOuput->sNalList[ *pIdx ]; in WelsUnloadNal()
82 SWelsNalRaw* pRawNal = &pSliceBs->sNalList[ pSliceBs->iNalIndex ]; in WelsLoadNalForSlice()
101 SWelsNalRaw* pRawNal = &pSliceBs->sNalList[ *pIdx ]; in WelsUnloadNalForSlice()
Dencoder_ext.cpp1628 …(*ppCtx)->pOut->sNalList = (SWelsNalRaw*)pMa->WelsMallocz (iCountNals * sizeof (SWelsNalRaw), "pOu… in RequestMemorySvc()
1629 WELS_VERIFY_RETURN_IF (1, (NULL == (*ppCtx)->pOut->sNalList)) in RequestMemorySvc()
1826 if (NULL != pCtx->pOut->sNalList) { in FreeMemorySvc()
1827 pMa->WelsFree (pCtx->pOut->sNalList, "pOut->sNalList"); in FreeMemorySvc()
1828 pCtx->pOut->sNalList = NULL; in FreeMemorySvc()
2832 int32_t iReturn = WelsEncodeNal (&pCtx->pOut->sNalList[iNal], NULL, in WelsWriteOneSPS()
2852 int32_t iReturn = WelsEncodeNal (&pCtx->pOut->sNalList[iNal], NULL, in WelsWriteOnePPS()
2912 iReturn = WelsEncodeNal (&pCtx->pOut->sNalList[iNal], NULL, in WelsWriteParameterSets()
2964 iReturn = WelsEncodeNal (&pCtx->pOut->sNalList[pCtx->pOut->iNalIndex - 1], in AddPrefixNal()
2980 iReturn = WelsEncodeNal (&pCtx->pOut->sNalList[pCtx->pOut->iNalIndex - 1], in AddPrefixNal()
[all …]
Dwels_task_encoder.cpp298 … iLocalSliceIdx, m_pSliceBs->uiSize, m_iSliceSize, m_pSliceBs->sNalList[0].iPayloadSize); in ExecuteTask()
Dslice_multi_threading.cpp481 … iReturn = WelsEncodeNal (&pSliceBs->sNalList[iNalIdx], pNalHdrExt, iTotalLeftLength - iSliceSize, in WriteSliceBs()
Dsvc_encode_slice.cpp1557 memcpy (pNalList, pCtx->pOut->sNalList, sizeof (SWelsNalRaw) * pCtx->pOut->iCountNals); in FrameBsRealloc()
1558 pMA->WelsFree (pCtx->pOut->sNalList, "pOut->sNalList"); in FrameBsRealloc()
1559 pCtx->pOut->sNalList = pNalList; in FrameBsRealloc()
/third_party/openh264/codec/encoder/core/inc/
Dnal_encap.h75 SWelsNalRaw* sNalList; // nal list, adaptive for AVC/SVC in case single slice, mul… member
94 SWelsNalRaw sNalList[2]; // nal list, PREFIX NAL(if applicable) + SLICE NAL member
/third_party/openh264/test/encoder/
DEncUT_SliceBufferReallocate.cpp278 …pCtx->pOut->sNalList = (SWelsNalRaw*)pCtx->pMemAlign->WelsMallocz (iCountNals * sizeof (SWelsNalRa… in InitFrameBsBuffer()
279 WELS_VERIFY_RETURN_IF (ENC_RETURN_MEMALLOCERR, (NULL == pCtx->pOut->sNalList)) in InitFrameBsBuffer()
300 if (NULL != pCtx->pOut->sNalList) { in UnInitFrameBsBuffer()
301 pCtx->pMemAlign->WelsFree (pCtx->pOut->sNalList, "pCtx->pOut->sNalList"); in UnInitFrameBsBuffer()
302 pCtx->pOut->sNalList = NULL; in UnInitFrameBsBuffer()
562 EXPECT_TRUE (NULL != pCtx->pOut->sNalList); in TEST_F()