Searched refs:iReadBytes (Results 1 – 1 of 1) sorted by relevance
/third_party/openh264/codec/decoder/core/inc/ |
D | dec_golomb.h | 57 #define GET_WORD(iCurBits, pBufPtr, iLeftBits, iAllowedBytes, iReadBytes) { \ argument 58 if (iReadBytes > iAllowedBytes+1) { \ 65 #define NEED_BITS(iCurBits, pBufPtr, iLeftBits, iAllowedBytes, iReadBytes) { \ argument 67 GET_WORD(iCurBits, pBufPtr, iLeftBits, iAllowedBytes, iReadBytes); \ 71 #define DUMP_BITS(iCurBits, pBufPtr, iLeftBits, iNumBits, iAllowedBytes, iReadBytes) { \ argument 74 NEED_BITS(iCurBits, pBufPtr, iLeftBits, iAllowedBytes, iReadBytes); \ 80 intX_t iReadBytes = pBs->pCurBuf - pBs->pStartBuf; in BsGetBits() local 81 DUMP_BITS (pBs->uiCurBits, pBs->pCurBuf, pBs->iLeftBits, iNumBits, iAllowedBytes, iReadBytes); in BsGetBits() 160 intX_t iAllowedBytes, iReadBytes; in BsGetUe() local 168 iReadBytes = pBs->pCurBuf - pBs->pStartBuf; in BsGetUe() [all …]
|