Searched refs:ppBitStream (Results 26 - 50 of 52) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_EncodeMV.c56 * ppBitStream - double pointer to the current byte in the bitstream buffer
58 * buffer referenced by *ppBitStream, valid in the range 0 to 7.
74 * ppBitStream - updated pointer to the current byte in the bit stream
77 * buffer referenced by *ppBitStream
83 * - At least one of the following pointers is NULL: ppBitStream,
84 * *ppBitStream, pBitOffset, pMVCurMB
91 OMX_U8 **ppBitStream,
109 armRetArgErrIf(ppBitStream == NULL, OMX_Sts_BadArgErr);
110 armRetArgErrIf(*ppBitStream == NULL, OMX_Sts_BadArgErr);
202 armPackVLC32 (ppBitStream, pBitOffse
90 omxVCM4P2_EncodeMV( OMX_U8 **ppBitStream, OMX_INT *pBitOffset, const OMXVCMotionVector * pMVCurMB, const OMXVCMotionVector * pSrcMVLeftMB, const OMXVCMotionVector * pSrcMVUpperMB, const OMXVCMotionVector * pSrcMVUpperRightMB, OMX_INT fcodeForward, OMXVCM4P2MacroblockType MBType ) argument
[all...]
H A DomxVCM4P2_DecodeBlockCoef_Intra.c53 * ppBitStream - pointer to the pointer to the current byte in the bit
57 * *ppBitStream. *pBitOffset is valid within [0-7].
80 * ppBitStream - *ppBitStream is updated after the block is decoded, so
83 * position in the byte pointed by *ppBitStream
96 * ppBitStream, *ppBitStream, pBitOffset, pCoefBufRow, pCoefBufCol,
108 const OMX_U8 ** ppBitStream,
130 armRetArgErrIf(ppBitStream == NULL, OMX_Sts_BadArgErr);
131 armRetArgErrIf(*ppBitStream
107 omxVCM4P2_DecodeBlockCoef_Intra( const OMX_U8 ** ppBitStream, OMX_INT *pBitOffset, OMX_U8 *pDst, OMX_INT step, OMX_S16 *pCoefBufRow, OMX_S16 *pCoefBufCol, OMX_U8 curQP, const OMX_U8 *pQPBuf, OMX_INT blockIndex, OMX_INT intraDCVLC, OMX_INT ACPredFlag, OMX_INT shortVideoHeader ) argument
[all...]
H A DomxVCM4P2_DecodePadMV_PVOP.c54 * ppBitStream - pointer to the pointer to the current byte in the bit
57 * *ppBitStream. *pBitOffset is valid within [0-7].
74 * ppBitStream - *ppBitStream is updated after the block is decoded, so
77 * position in the byte pointed by *ppBitStream
86 * ppBitStream, *ppBitStream, pBitOffset, pDstMVCurMB
96 const OMX_U8 ** ppBitStream,
115 armRetArgErrIf(ppBitStream == NULL, OMX_Sts_BadArgErr);
116 armRetArgErrIf(*ppBitStream
95 omxVCM4P2_DecodePadMV_PVOP( const OMX_U8 ** ppBitStream, OMX_INT * pBitOffset, OMXVCMotionVector * pSrcMVLeftMB, OMXVCMotionVector *pSrcMVUpperMB, OMXVCMotionVector * pSrcMVUpperRightMB, OMXVCMotionVector * pDstMVCurMB, OMX_INT fcodeForward, OMXVCM4P2MacroblockType MBType ) argument
[all...]
H A DarmVCM4P2_PutVLCBits.c52 * [in] ppBitStream pointer to the pointer to the current byte in
55 * by *ppBitStream. Valid within 0 to 7
87 * [out] ppBitStream *ppBitStream is updated after the block is encoded
92 * *ppBitStream.
101 OMX_U8 **ppBitStream,
162 ppBitStream,
201 ppBitStream,
100 armVCM4P2_PutVLCBits( OMX_U8 **ppBitStream, OMX_INT * pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_INT shortVideoHeader, OMX_U8 start, OMX_U8 maxStoreRunL0, OMX_U8 maxStoreRunL1, OMX_U8 maxRunForMultipleEntriesL0, OMX_U8 maxRunForMultipleEntriesL1, const OMX_U8 * pRunIndexTableL0, const ARM_VLC32 *pVlcTableL0, const OMX_U8 * pRunIndexTableL1, const ARM_VLC32 *pVlcTableL1, const OMX_U8 * pLMAXTableL0, const OMX_U8 * pLMAXTableL1, const OMX_U8 * pRMAXTableL0, const OMX_U8 * pRMAXTableL1, const OMX_U8 * pZigzagTable ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_DecodeCoeffsToPair.c59 * [in] ppBitStream Double pointer to current byte in bit stream buffer
61 * to by *ppBitStream
66 * [out] ppBitStream *ppBitStream is updated after each block is decoded
78 const OMX_U8** ppBitStream,
94 CoeffToken = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCCoeffTokenTables[nTable]);
112 if (armGetBits(ppBitStream, pOffset, 1))
133 LevelPrefix = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCLevelPrefix);
149 LevelSuffix = armGetBits(ppBitStream, pOffset, LevelSuffixSize);
198 ZerosLeft = armUnPackVLC32(ppBitStream, pOffse
77 armVCM4P10_DecodeCoeffsToPair( const OMX_U8** ppBitStream, OMX_S32* pOffset, OMX_U8* pNumCoeff, OMX_U8 **ppPosCoefbuf, OMX_INT nTable, OMX_INT sMaxNumCoeff ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodeBlockCoef_Intra.c52 * [in] ppBitStream pointer to the pointer to the current byte in
56 * to by *ppBitStream. *pBitOffset is valid within
85 * [out] ppBitStream *ppBitStream is updated after the block is
90 * *ppBitStream
98 * - At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset,
111 const OMX_U8 ** ppBitStream,
169 ppBitStream,
180 ppBitStream,
110 omxVCM4P2_DecodeBlockCoef_Intra( const OMX_U8 ** ppBitStream, OMX_INT *pBitOffset, OMX_U8 *pDst, OMX_INT step, OMX_S16 *pCoefBufRow, OMX_S16 *pCoefBufCol, OMX_U8 curQP, const OMX_U8 *pQPBuf, OMX_INT blockIndex, OMX_INT intraDCVLC, OMX_INT ACPredFlag, OMX_INT shortVideoHeader ) argument
[all...]
H A DomxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
99 ppBitStream RN 0 label
155 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
203 M_BD_FINI ppBitStream,pBitOffse
[all...]
H A DomxVCM4P2_DecodePadMV_PVOP_s.s38 ; * [in] ppBitStream pointer to the pointer to the current byte in
41 ; * to by *ppBitStream. *pBitOffset is valid within
58 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
63 ; * *ppBitStream
89 ppBitStream RN 0 label
173 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
203 M_STR ppBitStream,pppBitStream
293 MOV ppBitStream,pDstMVCurMB ;// ppBitStream ( R
[all...]
H A DarmVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s62 ppBitStream RN 0 label
133 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
139 M_STR ppBitStream,pppBitStream ;// Store ppBitstream on stack
380 ;// Loading ppBitStream and pBitOffset from stack
383 M_LDR ppBitStream,pppBitStream
388 M_BD_FINI ppBitStream,pBitOffset
398 M_LDR ppBitStream,pppBitStream
402 M_BD_FINI ppBitStream,pBitOffset
H A DomxVCM4P2_DecodeVLCZigzag_Inter_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
97 ppBitStream RN 0 label
H A DomxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
95 ppBitStream RN 0 label
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodeBlockCoef_Intra.c58 * [in] ppBitStream pointer to the pointer to the current byte in
62 * to by *ppBitStream. *pBitOffset is valid within
91 * [out] ppBitStream *ppBitStream is updated after the block is
96 * *ppBitStream
104 * - At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset,
117 const OMX_U8 ** ppBitStream,
175 ppBitStream,
186 ppBitStream,
116 omxVCM4P2_DecodeBlockCoef_Intra( const OMX_U8 ** ppBitStream, OMX_INT *pBitOffset, OMX_U8 *pDst, OMX_INT step, OMX_S16 *pCoefBufRow, OMX_S16 *pCoefBufCol, OMX_U8 curQP, const OMX_U8 *pQPBuf, OMX_INT blockIndex, OMX_INT intraDCVLC, OMX_INT ACPredFlag, OMX_INT shortVideoHeader ) argument
[all...]
H A DomxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
99 ppBitStream RN 0 label
155 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
203 M_BD_FINI ppBitStream,pBitOffse
[all...]
H A DomxVCM4P2_DecodePadMV_PVOP_s.s38 ; * [in] ppBitStream pointer to the pointer to the current byte in
41 ; * to by *ppBitStream. *pBitOffset is valid within
58 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
63 ; * *ppBitStream
89 ppBitStream RN 0 label
173 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
203 M_STR ppBitStream,pppBitStream
293 MOV ppBitStream,pDstMVCurMB ;// ppBitStream ( R
[all...]
H A DarmVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s62 ppBitStream RN 0 label
133 M_BD_INIT0 ppBitStream, pBitOffset, RBitStream, RBitBuffer, RBitCount
139 M_STR ppBitStream,pppBitStream ;// Store ppBitstream on stack
380 ;// Loading ppBitStream and pBitOffset from stack
383 M_LDR ppBitStream,pppBitStream
388 M_BD_FINI ppBitStream,pBitOffset
398 M_LDR ppBitStream,pppBitStream
402 M_BD_FINI ppBitStream,pBitOffset
H A DomxVCM4P2_DecodeVLCZigzag_Inter_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
97 ppBitStream RN 0 label
H A DomxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s40 ; * [in] ppBitStream pointer to the pointer to the current byte in
43 ; * to by *ppBitStream. *pBitOffset is valid within [0-7].
47 ; * [out] ppBitStream *ppBitStream is updated after the block is
52 ; * *ppBitStream
58 ; * -At least one of the following pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst, or
95 ppBitStream RN 0 label
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
H A DarmVC.h195 * [in] ppBitStream pointer to the pointer to the current byte in
198 * by *ppBitStream. Valid within 0 to 7.
216 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
221 * *ppBitStream.
229 OMX_U8 **ppBitStream,
247 * [in] ppBitStream pointer to the pointer to the current byte in
250 * to by *ppBitStream. *pBitOffset is valid within
270 * [out] ppBitStream *ppBitStream i
[all...]
H A DomxVC.h1423 * ppBitStream - double pointer to the current byte in the bitstream
1425 * *ppBitStream. Valid within 0 to 7.
1446 * ppBitStream - *ppBitStream is updated after the block is encoded, so
1449 * position in the byte pointed by *ppBitStream.
1455 * - At least one of the following pointers is NULL: ppBitStream,
1456 * *ppBitStream, pBitOffset, pQDctBlkCoef.
1464 OMX_U8 **ppBitStream,
1487 * ppBitStream - double pointer to the current byte in the bitstream
1489 * *ppBitStream
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
H A DarmVC.h195 * [in] ppBitStream pointer to the pointer to the current byte in
198 * by *ppBitStream. Valid within 0 to 7.
216 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
221 * *ppBitStream.
229 OMX_U8 **ppBitStream,
247 * [in] ppBitStream pointer to the pointer to the current byte in
250 * to by *ppBitStream. *pBitOffset is valid within
270 * [out] ppBitStream *ppBitStream i
[all...]
H A DomxVC.h1423 * ppBitStream - double pointer to the current byte in the bitstream
1425 * *ppBitStream. Valid within 0 to 7.
1446 * ppBitStream - *ppBitStream is updated after the block is encoded, so
1449 * position in the byte pointed by *ppBitStream.
1455 * - At least one of the following pointers is NULL: ppBitStream,
1456 * *ppBitStream, pBitOffset, pQDctBlkCoef.
1464 OMX_U8 **ppBitStream,
1487 * ppBitStream - double pointer to the current byte in the bitstream
1489 * *ppBitStream
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/
H A DarmVC.h195 * [in] ppBitStream pointer to the pointer to the current byte in
198 * by *ppBitStream. Valid within 0 to 7.
216 * [out] ppBitStream *ppBitStream is updated after the block is encoded,
221 * *ppBitStream.
229 OMX_U8 **ppBitStream,
247 * [in] ppBitStream pointer to the pointer to the current byte in
250 * to by *ppBitStream. *pBitOffset is valid within
270 * [out] ppBitStream *ppBitStream i
[all...]
H A DomxVC.h1423 * ppBitStream - double pointer to the current byte in the bitstream
1425 * *ppBitStream. Valid within 0 to 7.
1446 * ppBitStream - *ppBitStream is updated after the block is encoded, so
1449 * position in the byte pointed by *ppBitStream.
1455 * - At least one of the following pointers is NULL: ppBitStream,
1456 * *ppBitStream, pBitOffset, pQDctBlkCoef.
1464 OMX_U8 **ppBitStream,
1487 * ppBitStream - double pointer to the current byte in the bitstream
1489 * *ppBitStream
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_DecodeCoeffsToPair_s.s48 ppBitStream RN 0 label
126 M_BD_INIT0 ppBitStream, pOffset, RBitStream, RBitBuffer, RBitCount
147 M_STR ppBitStream, pppBitStream
319 M_LDR ppBitStream, pppBitStream
329 M_BD_FINI ppBitStream, pOffset
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_DecodeCoeffsToPair_s.s48 ppBitStream RN 0 label
126 M_BD_INIT0 ppBitStream, pOffset, RBitStream, RBitBuffer, RBitCount
147 M_STR ppBitStream, pppBitStream
319 M_LDR ppBitStream, pppBitStream
329 M_BD_FINI ppBitStream, pOffset

Completed in 278 milliseconds

123