Home
last modified time | relevance | path

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

/third_party/openh264/codec/decoder/core/src/
Ddecoder.cpp744 …int32_t iSrcIdx = 0; //the index of source bit-stream till now after parsing one or more NA… in WelsDecodeBs() local
783 …f ((2 + iSrcConsumed < iSrcLength) && (0 == LD16 (pSrcNal + iSrcIdx)) && (pSrcNal[2 + iSrcIdx] <= … in WelsDecodeBs()
784 if (bNalStartBytes && (pSrcNal[2 + iSrcIdx] != 0x00 && pSrcNal[2 + iSrcIdx] != 0x01)) { in WelsDecodeBs()
789 if (pSrcNal[2 + iSrcIdx] == 0x02) { in WelsDecodeBs()
792 } else if (pSrcNal[2 + iSrcIdx] == 0x00) { in WelsDecodeBs()
793 pDstNal[iDstIdx++] = pSrcNal[iSrcIdx++]; in WelsDecodeBs()
796 } else if (pSrcNal[2 + iSrcIdx] == 0x03) { in WelsDecodeBs()
797 if ((3 + iSrcConsumed < iSrcLength) && pSrcNal[3 + iSrcIdx] > 0x03) { in WelsDecodeBs()
803 iSrcIdx += 3; in WelsDecodeBs()
812 …ParseNalHeader (pCtx, &pCtx->sCurNalHead, pDstNal, iDstIdx, pSrcNal - 3, iSrcIdx + 3, &iConsumedBy… in WelsDecodeBs()
[all …]