Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

59  * [in]	pBS				array of size 16x2 of BS parameters (arranged in scan block order for vertical edges and then horizontal edges);
60 * valid in the range [0,4] with the following restrictions: i) pBS[i]== 4 may occur only for 0<=i<=3, ii) pBS[i]== 4 if and only if pBS[i^1]== 4. Must be 4-byte aligned.
66 * - Either of the pointers in pSrcDst, pAlpha, pBeta, pTresholds, or pBS is NULL.
68 * - either pThresholds or pBS is not 4-byte aligned.
69 * - pBS is out of range, i.e., one of the following conditions is true: pBS[i]<0, pBS[i]>4, pBS[i]==4 for i>=4, or (pBS[i]==4 && pBS[i^1]!=4) for 0<=i<=3.
79 const OMX_U8 *pBS
91 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
92 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
95 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
100 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+8, pBS+16);