Searched defs:pSrcRef (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_ComputeTextureErrorBlock.c48 * pSrcRef - pointer to the reference buffer, an 8x8 block. This should be
61 * pSrc, pSrcRef, pDst.
64 * - pSrcRef is not 8-byte aligned.
72 const OMX_U8 *pSrcRef,
81 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr);
84 armRetArgErrIf(!armIs8ByteAligned(pSrcRef), OMX_Sts_BadArgErr);
95 pDst[count] = pSrc[x] - pSrcRef[count];
69 omxVCCOMM_ComputeTextureErrorBlock( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst ) argument
H A DomxVCCOMM_SAD_16x.c49 * pSrcRef - Pointer to the reference block
63 * pSrcOrg, pDstSAD, or pSrcRef
73 const OMX_U8* pSrcRef,
81 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
89 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 16);
70 omxVCCOMM_SAD_16x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCCOMM_SAD_8x.c49 * pSrcRef - Pointer to the reference block
63 * pSrcOrg, pDstSAD, or pSrcRef
73 const OMX_U8* pSrcRef,
81 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
89 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 8);
70 omxVCCOMM_SAD_8x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DarmVCCOMM_SAD.c47 * [in] pSrcRef Pointer to the reference block
60 const OMX_U8* pSrcRef,
71 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
80 pSrcRef [(y * iStepRef) + x]);
57 armVCCOMM_SAD( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight, OMX_U32 iWidth ) argument
H A DomxVCCOMM_ComputeTextureErrorBlock_SAD.c49 * pSrcRef - pointer to the reference buffer, an 8x8 block; must be aligned
63 * pointers is NULL: pSrc, pSrcRef, pDst and pDstSAD.
66 * - pSrcRef is not 8-byte aligned.
74 const OMX_U8 *pSrcRef,
84 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr);
88 armRetArgErrIf(!armIs8ByteAligned(pSrcRef), OMX_Sts_BadArgErr);
99 pDst[count] = pSrc[x] - pSrcRef[count];
71 omxVCCOMM_ComputeTextureErrorBlock_SAD( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst, OMX_INT *pDstSAD ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_SAD_4x.c49 * pSrcRef -Pointer to the reference block
61 * pSrcOrg, pSrcRef, or pDstSAD
70 const OMX_U8* pSrcRef,
78 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
86 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 4);
67 omxVCM4P10_SAD_4x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SATD_4x4.c49 * pSrcRef - Pointer to the reference block; must be aligned on a 4-byte
63 * pSrcOrg, pSrcRef, or pDstSAD either pSrcOrg
64 * - pSrcRef is not aligned on a 4-byte boundary
72 const OMX_U8* pSrcRef,
83 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
88 armRetArgErrIf(armNot4ByteAligned(pSrcRef), OMX_Sts_BadArgErr)
95 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i];
69 omxVCM4P10_SATD_4x4( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_U32* pDstSAD ) argument

Completed in 384 milliseconds