Home
last modified time | relevance | path

Searched refs:pDstNal (Results 1 – 2 of 2) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Dbit_stream.cpp45 inline uint32_t GetValue4Bytes (uint8_t* pDstNal) { in GetValue4Bytes() argument
47 uiValue = (pDstNal[0] << 24) | (pDstNal[1] << 16) | (pDstNal[2] << 8) | (pDstNal[3]); in GetValue4Bytes()
Ddecoder.cpp753 uint8_t* pDstNal = NULL; in WelsDecodeBs() local
778 pDstNal = pRawData->pCurPos; in WelsDecodeBs()
793 pDstNal[iDstIdx++] = pSrcNal[iSrcIdx++]; in WelsDecodeBs()
801 ST16 (pDstNal + iDstIdx, 0); in WelsDecodeBs()
810 pDstNal[iDstIdx] = pDstNal[iDstIdx + 1] = pDstNal[iDstIdx + 2] = pDstNal[iDstIdx + 3] = in WelsDecodeBs()
812 …pNalPayload = ParseNalHeader (pCtx, &pCtx->sCurNalHead, pDstNal, iDstIdx, pSrcNal - 3, iSrcIdx + 3… in WelsDecodeBs()
850pDstNal += (iDstIdx + 4); //init, increase 4 reserved zero bytes, used to store the next NAL in WelsDecodeBs()
851 if ((iSrcLength - iSrcConsumed + 4) > (pRawData->pEnd - pDstNal)) { in WelsDecodeBs()
852 pDstNal = pRawData->pCurPos = pRawData->pHead; in WelsDecodeBs()
854 pRawData->pCurPos = pDstNal; in WelsDecodeBs()
[all …]