Lines Matching refs:av_clip_uint8
39 dstv[x] = av_clip_uint8(FILTER(src+x, stride));
42 dstc[x] = av_clip_uint8(FILTER(dstv+x, 1));
45 dsth[x] = av_clip_uint8(FILTER(src+x, 1));
87 #define op_scale1(x) block[x] = av_clip_uint8( (block[x]*weight + (1<<(log2_denom-1))) >> log2_denom)
88 #define op_scale2(x) dst[x] = av_clip_uint8( (src[x]*weights + dst[x]*weightd + (1<<(log2_denom-1))) >> log2_denom)
145 dst[x ] = av_clip_uint8(src[x ] + 128);
146 dst[x+1] = av_clip_uint8(src[x+1] + 128);
147 dst[x+2] = av_clip_uint8(src[x+2] + 128);
148 dst[x+3] = av_clip_uint8(src[x+3] + 128);
185 dst[x ] = av_clip_uint8(((src[x ]+32)>>6) + idwt[x ]);
186 dst[x+1] = av_clip_uint8(((src[x+1]+32)>>6) + idwt[x+1]);