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.c33 * pSrcRef - pointer to the reference buffer, an 8x8 block. This should be
46 * pSrc, pSrcRef, pDst.
49 * - pSrcRef is not 8-byte aligned.
57 const OMX_U8 *pSrcRef,
66 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr);
69 armRetArgErrIf(!armIs8ByteAligned(pSrcRef), OMX_Sts_BadArgErr);
80 pDst[count] = pSrc[x] - pSrcRef[count];
54 omxVCCOMM_ComputeTextureErrorBlock( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst ) argument
H A DomxVCCOMM_SAD_16x.c34 * pSrcRef - Pointer to the reference block
48 * pSrcOrg, pDstSAD, or pSrcRef
58 const OMX_U8* pSrcRef,
66 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
74 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 16);
55 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.c34 * pSrcRef - Pointer to the reference block
48 * pSrcOrg, pDstSAD, or pSrcRef
58 const OMX_U8* pSrcRef,
66 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
74 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 8);
55 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.c32 * [in] pSrcRef Pointer to the reference block
45 const OMX_U8* pSrcRef,
56 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
65 pSrcRef [(y * iStepRef) + x]);
42 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.c34 * pSrcRef - pointer to the reference buffer, an 8x8 block; must be aligned
48 * pointers is NULL: pSrc, pSrcRef, pDst and pDstSAD.
51 * - pSrcRef is not 8-byte aligned.
59 const OMX_U8 *pSrcRef,
69 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr);
73 armRetArgErrIf(!armIs8ByteAligned(pSrcRef), OMX_Sts_BadArgErr);
84 pDst[count] = pSrc[x] - pSrcRef[count];
56 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.c34 * pSrcRef -Pointer to the reference block
46 * pSrcOrg, pSrcRef, or pDstSAD
55 const OMX_U8* pSrcRef,
63 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
71 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 4);
52 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.c34 * pSrcRef - Pointer to the reference block; must be aligned on a 4-byte
48 * pSrcOrg, pSrcRef, or pDstSAD either pSrcOrg
49 * - pSrcRef is not aligned on a 4-byte boundary
57 const OMX_U8* pSrcRef,
68 armRetArgErrIf(pSrcRef == NULL, OMX_Sts_BadArgErr)
73 armRetArgErrIf(armNot4ByteAligned(pSrcRef), OMX_Sts_BadArgErr)
80 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i];
54 omxVCM4P10_SATD_4x4( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_U32* pDstSAD ) argument

Completed in 55 milliseconds