Home | History | Annotate | Download | only in src

Lines Matching refs:ppBitStream

30  * [in]     **ppBitStream
37 OMX_U32 armLookAheadBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
39 const OMX_U8 *pBitStream = *ppBitStream;
62 * [in] *ppBitStream
66 * [out] *ppBitStream
72 OMX_U32 armGetBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
74 const OMX_U8 *pBitStream = *ppBitStream;
92 *ppBitStream = pBitStream + (Offset>>3);
103 * Align the pointer *ppBitStream to the next byte boundary
106 * [in] *ppBitStream
109 * [out] *ppBitStream
114 OMXVoid armByteAlign(const OMX_U8 **ppBitStream,OMX_INT *pOffset)
118 *ppBitStream += 1;
127 * Skip N bits from the value at *ppBitStream
130 * [in] *ppBitStream
134 * [out] *ppBitStream
140 OMXVoid armSkipBits(const OMX_U8 **ppBitStream,OMX_INT *pOffset,OMX_INT N)
143 const OMX_U8 *pBitStream = *ppBitStream;
147 *ppBitStream = pBitStream + (Offset>>3);
160 * the bit stream pointed by *ppBitStream at *pOffset by using the table
177 const OMX_U8 **ppBitStream,
182 const OMX_U8 *pBitStream = *ppBitStream;
199 *ppBitStream = pBitStream + (Offset >> 3) ;
226 * [in] ppBitStream pointer to the pointer to the current byte
229 * pointed by *ppBitStream. Valid within 0
235 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
240 * *ppBitStream.
248 OMX_U8 **ppBitStream,
254 OMX_U8 *pBitStream = *ppBitStream;
281 *ppBitStream = pBitStream;
300 * [in] ppBitStream pointer to the pointer to the current byte
303 * pointed by *ppBitStream. Valid within 0
308 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
313 * *ppBitStream.
321 OMX_U8 **ppBitStream,
326 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen));