Searched defs:pSrcOrg (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_SAD_16x.c31 * pSrcOrg - Pointer to the original block; must be aligned on a 16-byte
48 * pSrcOrg, pDstSAD, or pSrcRef
49 * - pSrcOrg is not 16-byte aligned.
56 const OMX_U8* pSrcOrg,
65 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
69 armRetArgErrIf(armNot16ByteAligned(pSrcOrg), 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.c31 * pSrcOrg - Pointer to the original block; must be aligned on a 8-byte
48 * pSrcOrg, pDstSAD, or pSrcRef
49 * - pSrcOrg is not 8-byte aligned.
56 const OMX_U8* pSrcOrg,
65 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
69 armRetArgErrIf(armNot8ByteAligned(pSrcOrg), 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.c30 * [in] pSrcOrg Pointer to the original block
43 const OMX_U8* pSrcOrg,
55 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
64 *pDstSAD += armAbs(pSrcOrg [(y * iStepOrg) + 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
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_SAD_4x.c31 * pSrcOrg -Pointer to the original block; must be aligned on a 4-byte
46 * pSrcOrg, pSrcRef, or pDstSAD
53 const OMX_U8* pSrcOrg,
62 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
66 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), 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.c31 * pSrcOrg - Pointer to the original block; must be aligned on a 4-byte
48 * pSrcOrg, pSrcRef, or pDstSAD either pSrcOrg
55 const OMX_U8* pSrcOrg,
67 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
72 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), 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
H A DomxVCM4P10_SubAndTransformQDQResidual.c36 * pSrcOrg - Pointer to original signal. 4-byte alignment required.
66 * pSrcOrg, pSrcPred, pNumCoeff, pDstQuantCoeff,
68 * - pSrcOrg is not aligned on a 4-byte boundary
76 const OMX_U8* pSrcOrg,
96 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
100 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), OMX_Sts_BadArgErr)
163 pSrcOrg [j * iSrcOrgStep + i] - pSrcPred [j * iSrcPredStep + i];
75 omxVCM4P10_SubAndTransformQDQResidual( const OMX_U8* pSrcOrg, const OMX_U8* pSrcPred, OMX_U32 iSrcOrgStep, OMX_U32 iSrcPredStep, OMX_S16* pDstQuantCoeff, OMX_S16* pDstDeQuantCoeff, OMX_S16* pDCCoeff, OMX_S8* pNumCoeff, OMX_U32 nThreshSAD, OMX_U32 iQP, OMX_U8 bIntra ) argument

Completed in 62 milliseconds