Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

44  * [in]	pBS				array of size 16x2 of BS parameters (arranged in scan block order for vertical edges and then horizontal edges);
45 * 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.
51 * - Either of the pointers in pSrcDst, pAlpha, pBeta, pTresholds, or pBS is NULL.
53 * - either pThresholds or pBS is not 4-byte aligned.
54 * - 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.
64 const OMX_U8 *pBS
76 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
77 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
80 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
85 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+8, pBS+16);