Searched defs:iSrcStep (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_InterpolateHalfHor_Luma.c33 * [in] iSrcStep Step of the source buffer.
46 OMX_U32 iSrcStep,
64 pos = y * iSrcStep + x;
44 armVCM4P10_InterpolateHalfHor_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DarmVCM4P10_InterpolateHalfVer_Luma.c34 * [in] iSrcStep Step of the source buffer.
47 OMX_U32 iSrcStep,
66 pos = y * iSrcStep + x;
68 pSrc [pos - 2 * iSrcStep] -
69 5 * pSrc [pos - 1 * iSrcStep] +
71 20 * pSrc [pos + 1 * iSrcStep] -
72 5 * pSrc [pos + 2 * iSrcStep] +
73 pSrc [pos + 3 * iSrcStep];
45 armVCM4P10_InterpolateHalfVer_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DomxVCM4P10_InterpolateHalfHor_Luma.c34 * iSrcStep - Step of the source buffer.
70 OMX_U32 iSrcStep,
99 iSrcStep,
112 iSrcStep,
68 omxVCM4P10_InterpolateHalfHor_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDstLeft, OMX_U8* pDstRight, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DomxVCM4P10_InterpolateHalfVer_Luma.c35 * iSrcStep - Step of the source buffer.
69 OMX_U32 iSrcStep,
97 pSrc - iSrcStep,
98 iSrcStep,
111 iSrcStep,
67 omxVCM4P10_InterpolateHalfVer_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDstUp, OMX_U8* pDstDown, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_16x.c38 * iSrcStep - Step of the original block buffer; must be a multiple of 16
53 * - iSrcStep is not a multiple of 16
61 OMX_U32 iSrcStep,
75 armRetArgErrIf((iSrcStep == 0) || (iSrcStep & 15), OMX_Sts_BadArgErr)
79 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
57 omxVCM4P10_SADQuar_16x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_4x.c38 * iSrcStep - Step of the original block buffer; must be a multiple of 4.
53 * - iSrcStep is not a multiple of 4
61 OMX_U32 iSrcStep,
75 armRetArgErrIf((iSrcStep == 0) || (iSrcStep & 3), OMX_Sts_BadArgErr);
78 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
57 omxVCM4P10_SADQuar_4x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_8x.c38 * iSrcStep - Step of the original block buffer; must be a multiple of 8.
53 * - iSrcStep is not a multiple of 8
61 OMX_U32 iSrcStep,
76 armRetArgErrIf((iSrcStep == 0) || (iSrcStep & 7), OMX_Sts_BadArgErr)
80 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
57 omxVCM4P10_SADQuar_8x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DarmVCM4P10_InterpolateHalfDiag_Luma.c35 * [in] iSrcStep Step of the source buffer.
48 OMX_U32 iSrcStep,
72 pos = (y-2) * iSrcStep + x;
46 armVCM4P10_InterpolateHalfDiag_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DarmVCM4P10_Interpolate_Chroma.c31 * [in] iSrcStep Step of the source buffer.
47 OMX_U32 iSrcStep,
66 armRetArgErrIf(iSrcStep == 0, OMX_Sts_BadArgErr)
84 ACoeff * pSrc [y * iSrcStep + x] +
85 BCoeff * pSrc [y * iSrcStep + x + 1] +
86 CCoeff * pSrc [(y + 1) * iSrcStep + x] +
87 DCoeff * pSrc [(y + 1) * iSrcStep + x + 1] +
98 pDst [y * iDstStep + x] = pSrc [y * iSrcStep + x];
45 armVCM4P10_Interpolate_Chroma( OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
H A DarmVCM4P10_Interpolate_Luma.c32 * [in] iSrcStep Step of the source buffer.
44 OMX_U32 iSrcStep,
57 pDst [y * iDstStep + x] = pSrc [y * iSrcStep + x];
74 * [in] iSrcStep Step of the source buffer.
91 OMX_U32 iSrcStep,
117 pSrcHalfHor += iSrcStep;
126 armM4P10_Copy(pSrc, iSrcStep, pDst, iDstStep, iWidth, iHeight);
132 (pSrcHalfHor, iSrcStep, pDst, iDstStep, iWidth, iHeight);
137 (pDst, pSrcHalfVer, iDstStep, iSrcStep, pDst, iDstStep, iWidth, iHeight);
144 (pSrcHalfVer, iSrcStep, pDs
42 armM4P10_Copy( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
89 armVCM4P10_Interpolate_Luma( const OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
[all...]
H A DarmVCM4P10_SADQuar.c34 * [in] iSrcStep Step of the original block buffer
49 OMX_U32 iSrcStep,
70 SAD += armAbs(pSrc [y * iSrcStep + x] - ((
45 armVCM4P10_SADQuar( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight, OMX_U32 iWidth ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s24 iSrcStep RN 1 label
116 ADD pSrc1, pSrc, iSrcStep
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s38 iSrcStep RN 1 label
149 SUB SrcStepMinus1, iSrcStep, Step1
273 SUB pSrc, pSrc, iSrcStep
276 VLD1 dRow0a, [pSrc], iSrcStep
278 VLD1 dRow0b, [pSrc], iSrcStep
287 VLD1 dRow0b, [pSrc], iSrcStep
292 VLD1 dRow0a, [pSrc], iSrcStep
300 VLD1 dRow0b, [pSrc], iSrcStep
304 VLD1 dRow0a, [pSrc], iSrcStep

Completed in 81 milliseconds