Lines Matching refs:ppBitStream

45  * [in]     **ppBitStream
52 OMX_U32 armLookAheadBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
54 const OMX_U8 *pBitStream = *ppBitStream;
77 * [in] *ppBitStream
81 * [out] *ppBitStream
87 OMX_U32 armGetBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
89 const OMX_U8 *pBitStream = *ppBitStream;
107 *ppBitStream = pBitStream + (Offset>>3);
118 * Align the pointer *ppBitStream to the next byte boundary
121 * [in] *ppBitStream
124 * [out] *ppBitStream
129 OMXVoid armByteAlign(const OMX_U8 **ppBitStream,OMX_INT *pOffset)
133 *ppBitStream += 1;
142 * Skip N bits from the value at *ppBitStream
145 * [in] *ppBitStream
149 * [out] *ppBitStream
155 OMXVoid armSkipBits(const OMX_U8 **ppBitStream,OMX_INT *pOffset,OMX_INT N)
158 const OMX_U8 *pBitStream = *ppBitStream;
162 *ppBitStream = pBitStream + (Offset>>3);
175 * the bit stream pointed by *ppBitStream at *pOffset by using the table
192 const OMX_U8 **ppBitStream,
197 const OMX_U8 *pBitStream = *ppBitStream;
214 *ppBitStream = pBitStream + (Offset >> 3) ;
241 * [in] ppBitStream pointer to the pointer to the current byte
244 * pointed by *ppBitStream. Valid within 0
250 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
255 * *ppBitStream.
263 OMX_U8 **ppBitStream,
269 OMX_U8 *pBitStream = *ppBitStream;
296 *ppBitStream = pBitStream;
315 * [in] ppBitStream pointer to the pointer to the current byte
318 * pointed by *ppBitStream. Valid within 0
323 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
328 * *ppBitStream.
336 OMX_U8 **ppBitStream,
341 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen));