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.c46 * pSrcOrg - Pointer to the original block; must be aligned on a 16-byte
63 * pSrcOrg, pDstSAD, or pSrcRef
64 * - pSrcOrg is not 16-byte aligned.
71 const OMX_U8* pSrcOrg,
80 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
84 armRetArgErrIf(armNot16ByteAligned(pSrcOrg), 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.c46 * pSrcOrg - Pointer to the original block; must be aligned on a 8-byte
63 * pSrcOrg, pDstSAD, or pSrcRef
64 * - pSrcOrg is not 8-byte aligned.
71 const OMX_U8* pSrcOrg,
80 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
84 armRetArgErrIf(armNot8ByteAligned(pSrcOrg), 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.c45 * [in] pSrcOrg Pointer to the original block
58 const OMX_U8* pSrcOrg,
70 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
79 *pDstSAD += armAbs(pSrcOrg [(y * iStepOrg) + 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
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_SAD_4x.c46 * pSrcOrg -Pointer to the original block; must be aligned on a 4-byte
61 * pSrcOrg, pSrcRef, or pDstSAD
68 const OMX_U8* pSrcOrg,
77 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
81 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), 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.c46 * pSrcOrg - Pointer to the original block; must be aligned on a 4-byte
63 * pSrcOrg, pSrcRef, or pDstSAD either pSrcOrg
70 const OMX_U8* pSrcOrg,
82 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
87 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), 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
H A DomxVCM4P10_SubAndTransformQDQResidual.c51 * pSrcOrg - Pointer to original signal. 4-byte alignment required.
81 * pSrcOrg, pSrcPred, pNumCoeff, pDstQuantCoeff,
83 * - pSrcOrg is not aligned on a 4-byte boundary
91 const OMX_U8* pSrcOrg,
111 armRetArgErrIf(pSrcOrg == NULL, OMX_Sts_BadArgErr)
115 armRetArgErrIf(armNot4ByteAligned(pSrcOrg), OMX_Sts_BadArgErr)
178 pSrcOrg [j * iSrcOrgStep + i] - pSrcPred [j * iSrcPredStep + i];
90 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 1533 milliseconds