Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

46  * [in]	pBS				 pointer to a 16x2 table of BS parameters arranged in scan block order for vertical edges and then horizontal edges;
47 * 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.
53 * - Either of the pointers in pSrcDst, pAlpha, pBeta, pTresholds or pBS is NULL.
56 * - 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.
67 const OMX_U8 *pBS
79 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
80 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
83 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
88 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+16, pBS+16);