Home | History | Annotate | Download | only in src

Lines Matching refs:pDst

30      OMX_S16* pDst,
42 Value = (pDst[i] * Scale) << Shift;
43 pDst[i] = (OMX_S16)Value;
50 Value = (pDst[i] * Scale) >> 1;
51 pDst[i] = (OMX_S16)Value;
99 * pDst - Pointer to the reconstructed 2x2 ChromaDC coefficients buffer;
105 * - ppSrc or pDst is NULL.
106 * - pDst is not 4-byte aligned.
113 OMX_S16* pDst,
119 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
120 armRetArgErrIf(armNot4ByteAligned(pDst), OMX_Sts_BadArgErr);
124 armVCM4P10_UnpackBlock2x2(ppSrc, pDst);
125 InvTransformDC2x2(pDst);
126 DequantChromaDC2x2(pDst, QP);