Lines Matching refs:FFABS
273 if(FFABS(middleEnergy) < 8*c->QP){ in doHorizDefFilter_C()
278 int d= FFABS(middleEnergy) - FFMIN( FFABS(leftEnergy), FFABS(rightEnergy) ); in doHorizDefFilter_C()
310 const int first= FFABS(dst[-1] - dst[0]) < c->QP ? dst[-1] : dst[0]; in doHorizLowPass_C()
311 const int last= FFABS(dst[8] - dst[7]) < c->QP ? dst[8] : dst[7]; in doHorizLowPass_C()
384 int d= FFMAX(FFABS(b) - (FFABS(a) + FFABS(c))/2, 0); in horizX1Filter()
444 const int first= FFABS(src[-1*step] - src[0]) < QP ? src[-1*step] : src[0]; in do_a_deblock_C()
445 const int last= FFABS(src[8*step] - src[7*step]) < QP ? src[8*step] : src[7*step]; in do_a_deblock_C()
481 if(FFABS(middleEnergy) < 8*QP){ in do_a_deblock_C()
486 int d= FFABS(middleEnergy) - FFMIN( FFABS(leftEnergy), FFABS(rightEnergy) ); in do_a_deblock_C()
945 int minStride= FFMAX(FFABS(srcStride[0]), FFABS(dstStride[0])); in pp_postprocess()
946 int absQPStride = FFABS(QPStride); in pp_postprocess()