av_clip_pixel      30 libavcodec/h264dsp_template.c #define op_scale1(x)  block[x] = av_clip_pixel( (block[x]*weight + offset) >> log2_denom )
av_clip_pixel      31 libavcodec/h264dsp_template.c #define op_scale2(x)  dst[x] = av_clip_pixel( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1))
av_clip_pixel     145 libavcodec/h264dsp_template.c                 pix[-xstride] = av_clip_pixel( p0 + i_delta );    /* p0' */
av_clip_pixel     146 libavcodec/h264dsp_template.c                 pix[0]        = av_clip_pixel( q0 - i_delta );    /* q0' */
av_clip_pixel     257 libavcodec/h264dsp_template.c                 pix[-xstride] = av_clip_pixel( p0 + delta );    /* p0' */
av_clip_pixel     258 libavcodec/h264dsp_template.c                 pix[0]        = av_clip_pixel( q0 - delta );    /* q0' */
av_clip_pixel      60 libavcodec/h264idct_template.c         dst[i + 0*stride]= av_clip_pixel(dst[i + 0*stride] + ((int)(z0 + z3) >> 6));
av_clip_pixel      61 libavcodec/h264idct_template.c         dst[i + 1*stride]= av_clip_pixel(dst[i + 1*stride] + ((int)(z1 + z2) >> 6));
av_clip_pixel      62 libavcodec/h264idct_template.c         dst[i + 2*stride]= av_clip_pixel(dst[i + 2*stride] + ((int)(z1 - z2) >> 6));
av_clip_pixel      63 libavcodec/h264idct_template.c         dst[i + 3*stride]= av_clip_pixel(dst[i + 3*stride] + ((int)(z0 - z3) >> 6));
av_clip_pixel     130 libavcodec/h264idct_template.c         dst[i + 0*stride] = av_clip_pixel( dst[i + 0*stride] + ((int)(b0 + b7) >> 6) );
av_clip_pixel     131 libavcodec/h264idct_template.c         dst[i + 1*stride] = av_clip_pixel( dst[i + 1*stride] + ((int)(b2 + b5) >> 6) );
av_clip_pixel     132 libavcodec/h264idct_template.c         dst[i + 2*stride] = av_clip_pixel( dst[i + 2*stride] + ((int)(b4 + b3) >> 6) );
av_clip_pixel     133 libavcodec/h264idct_template.c         dst[i + 3*stride] = av_clip_pixel( dst[i + 3*stride] + ((int)(b6 + b1) >> 6) );
av_clip_pixel     134 libavcodec/h264idct_template.c         dst[i + 4*stride] = av_clip_pixel( dst[i + 4*stride] + ((int)(b6 - b1) >> 6) );
av_clip_pixel     135 libavcodec/h264idct_template.c         dst[i + 5*stride] = av_clip_pixel( dst[i + 5*stride] + ((int)(b4 - b3) >> 6) );
av_clip_pixel     136 libavcodec/h264idct_template.c         dst[i + 6*stride] = av_clip_pixel( dst[i + 6*stride] + ((int)(b2 - b5) >> 6) );
av_clip_pixel     137 libavcodec/h264idct_template.c         dst[i + 7*stride] = av_clip_pixel( dst[i + 7*stride] + ((int)(b0 - b7) >> 6) );
av_clip_pixel     154 libavcodec/h264idct_template.c             dst[i] = av_clip_pixel( dst[i] + dc );
av_clip_pixel     169 libavcodec/h264idct_template.c             dst[i] = av_clip_pixel( dst[i] + dc );
av_clip_pixel      54 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(dst[x] + *res);
av_clip_pixel     316 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(src[x] + offset_table[src[x] >> shift]);
av_clip_pixel     348 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(src[x] + sao_offset_val[offset_val]);
av_clip_pixel     375 libavcodec/hevcdsp_template.c                 dst[y * stride_dst] = av_clip_pixel(src[y * stride_src] + offset_val);
av_clip_pixel     383 libavcodec/hevcdsp_template.c                 dst[x * stride_dst + offset] = av_clip_pixel(src[x * stride_src + offset] + offset_val);
av_clip_pixel     392 libavcodec/hevcdsp_template.c                 dst[x] = av_clip_pixel(src[x] + offset_val);
av_clip_pixel     399 libavcodec/hevcdsp_template.c                 dst[x + y_stride_dst] = av_clip_pixel(src[x + y_stride_src] + offset_val);
av_clip_pixel     425 libavcodec/hevcdsp_template.c                 dst[y * stride_dst] = av_clip_pixel(src[y * stride_src] + offset_val);
av_clip_pixel     433 libavcodec/hevcdsp_template.c                 dst[x * stride_dst + offset] = av_clip_pixel(src[x * stride_src + offset] + offset_val);
av_clip_pixel     442 libavcodec/hevcdsp_template.c                 dst[x] = av_clip_pixel(src[x] + offset_val);
av_clip_pixel     450 libavcodec/hevcdsp_template.c                 dst[x + y_stride_dst] = av_clip_pixel(src[x + y_stride_src] + offset_val);
av_clip_pixel     547 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((src[x] << (14 - BIT_DEPTH)) + src2[x] + offset) >> shift);
av_clip_pixel     572 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((src[x] << (14 - BIT_DEPTH)) * wx + offset) >> shift) + ox);
av_clip_pixel     596 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(( (src[x] << (14 - BIT_DEPTH)) * wx1 + src2[x] * wx0 + (ox0 + ox1 + 1) * (1 << log2Wd)) >> (log2Wd + 1));
av_clip_pixel     701 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) + offset) >> shift);
av_clip_pixel     728 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) + src2[x] + offset) >> shift);
av_clip_pixel     755 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) + offset) >> shift);
av_clip_pixel     783 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) + src2[x] + offset) >> shift);
av_clip_pixel     824 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) + offset) >> shift);
av_clip_pixel     863 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) + src2[x] + offset) >> shift);
av_clip_pixel     891 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((QPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) * wx + offset) >> shift) + ox);
av_clip_pixel     917 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) * wx1 + src2[x] * wx0 +
av_clip_pixel     946 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((QPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) * wx + offset) >> shift) + ox);
av_clip_pixel     972 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) * wx1 + src2[x] * wx0 +
av_clip_pixel    1015 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((QPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) * wx + offset) >> shift) + ox);
av_clip_pixel    1053 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((QPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) * wx1 + src2[x] * wx0 +
av_clip_pixel    1152 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) + offset) >> shift);
av_clip_pixel    1177 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) + src2[x] + offset) >> shift);
av_clip_pixel    1203 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) + offset) >> shift);
av_clip_pixel    1228 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) + src2[x] + offset) >> shift);
av_clip_pixel    1267 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) + offset) >> shift);
av_clip_pixel    1306 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) + src2[x] + offset) >> shift);
av_clip_pixel    1332 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((EPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) * wx + offset) >> shift) + ox);
av_clip_pixel    1357 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, 1) >> (BIT_DEPTH - 8)) * wx1 + src2[x] * wx0 +
av_clip_pixel    1384 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((EPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) * wx + offset) >> shift) + ox);
av_clip_pixel    1409 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(src, srcstride) >> (BIT_DEPTH - 8)) * wx1 + src2[x] * wx0 +
av_clip_pixel    1450 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel((((EPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) * wx + offset) >> shift) + ox);
av_clip_pixel    1488 libavcodec/hevcdsp_template.c             dst[x] = av_clip_pixel(((EPEL_FILTER(tmp, MAX_PB_SIZE) >> 6) * wx1 + src2[x] * wx0 +
av_clip_pixel    1593 libavcodec/hevcdsp_template.c                             P0 = av_clip_pixel(p0 + delta0);
av_clip_pixel    1595 libavcodec/hevcdsp_template.c                             Q0 = av_clip_pixel(q0 - delta0);
av_clip_pixel    1598 libavcodec/hevcdsp_template.c                             P1 = av_clip_pixel(p1 + deltap1);
av_clip_pixel    1602 libavcodec/hevcdsp_template.c                             Q1 = av_clip_pixel(q1 + deltaq1);
av_clip_pixel    1638 libavcodec/hevcdsp_template.c                 P0 = av_clip_pixel(p0 + delta0);
av_clip_pixel    1640 libavcodec/hevcdsp_template.c                 Q0 = av_clip_pixel(q0 - delta0);
av_clip_pixel     477 libavcodec/hevcpred_template.c                 POS(0, y) = av_clip_pixel(top[0] + ((left[y] - left[-1]) >> 1));
av_clip_pixel     504 libavcodec/hevcpred_template.c                 POS(x,     0) = av_clip_pixel(left[0] + ((top[x    ] - top[-1]) >> 1));
av_clip_pixel     505 libavcodec/hevcpred_template.c                 POS(x + 1, 0) = av_clip_pixel(left[0] + ((top[x + 1] - top[-1]) >> 1));
av_clip_pixel     506 libavcodec/hevcpred_template.c                 POS(x + 2, 0) = av_clip_pixel(left[0] + ((top[x + 2] - top[-1]) >> 1));
av_clip_pixel     507 libavcodec/hevcpred_template.c                 POS(x + 3, 0) = av_clip_pixel(left[0] + ((top[x + 3] - top[-1]) >> 1));
av_clip_pixel     271 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a0 + b0) >> COL_SHIFT);
av_clip_pixel     273 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a1 + b1) >> COL_SHIFT);
av_clip_pixel     275 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a2 + b2) >> COL_SHIFT);
av_clip_pixel     277 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a3 + b3) >> COL_SHIFT);
av_clip_pixel     279 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a3 - b3) >> COL_SHIFT);
av_clip_pixel     281 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a2 - b2) >> COL_SHIFT);
av_clip_pixel     283 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a1 - b1) >> COL_SHIFT);
av_clip_pixel     285 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel((int)(a0 - b0) >> COL_SHIFT);
av_clip_pixel     295 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a0 + b0) >> COL_SHIFT));
av_clip_pixel     297 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a1 + b1) >> COL_SHIFT));
av_clip_pixel     299 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a2 + b2) >> COL_SHIFT));
av_clip_pixel     301 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a3 + b3) >> COL_SHIFT));
av_clip_pixel     303 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a3 - b3) >> COL_SHIFT));
av_clip_pixel     305 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a2 - b2) >> COL_SHIFT));
av_clip_pixel     307 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a1 - b1) >> COL_SHIFT));
av_clip_pixel     309 libavcodec/simple_idct_template.c     dest[0] = av_clip_pixel(dest[0] + ((int)(a0 - b0) >> COL_SHIFT));
av_clip_pixel     200 libavcodec/vp9dsp_template.c         dst[0] = av_clip_pixel(top[0] + l_m_tl);
av_clip_pixel     201 libavcodec/vp9dsp_template.c         dst[1] = av_clip_pixel(top[1] + l_m_tl);
av_clip_pixel     202 libavcodec/vp9dsp_template.c         dst[2] = av_clip_pixel(top[2] + l_m_tl);
av_clip_pixel     203 libavcodec/vp9dsp_template.c         dst[3] = av_clip_pixel(top[3] + l_m_tl);
av_clip_pixel     220 libavcodec/vp9dsp_template.c         dst[0] = av_clip_pixel(top[0] + l_m_tl);
av_clip_pixel     221 libavcodec/vp9dsp_template.c         dst[1] = av_clip_pixel(top[1] + l_m_tl);
av_clip_pixel     222 libavcodec/vp9dsp_template.c         dst[2] = av_clip_pixel(top[2] + l_m_tl);
av_clip_pixel     223 libavcodec/vp9dsp_template.c         dst[3] = av_clip_pixel(top[3] + l_m_tl);
av_clip_pixel     224 libavcodec/vp9dsp_template.c         dst[4] = av_clip_pixel(top[4] + l_m_tl);
av_clip_pixel     225 libavcodec/vp9dsp_template.c         dst[5] = av_clip_pixel(top[5] + l_m_tl);
av_clip_pixel     226 libavcodec/vp9dsp_template.c         dst[6] = av_clip_pixel(top[6] + l_m_tl);
av_clip_pixel     227 libavcodec/vp9dsp_template.c         dst[7] = av_clip_pixel(top[7] + l_m_tl);
av_clip_pixel     244 libavcodec/vp9dsp_template.c         dst[ 0] = av_clip_pixel(top[ 0] + l_m_tl);
av_clip_pixel     245 libavcodec/vp9dsp_template.c         dst[ 1] = av_clip_pixel(top[ 1] + l_m_tl);
av_clip_pixel     246 libavcodec/vp9dsp_template.c         dst[ 2] = av_clip_pixel(top[ 2] + l_m_tl);
av_clip_pixel     247 libavcodec/vp9dsp_template.c         dst[ 3] = av_clip_pixel(top[ 3] + l_m_tl);
av_clip_pixel     248 libavcodec/vp9dsp_template.c         dst[ 4] = av_clip_pixel(top[ 4] + l_m_tl);
av_clip_pixel     249 libavcodec/vp9dsp_template.c         dst[ 5] = av_clip_pixel(top[ 5] + l_m_tl);
av_clip_pixel     250 libavcodec/vp9dsp_template.c         dst[ 6] = av_clip_pixel(top[ 6] + l_m_tl);
av_clip_pixel     251 libavcodec/vp9dsp_template.c         dst[ 7] = av_clip_pixel(top[ 7] + l_m_tl);
av_clip_pixel     252 libavcodec/vp9dsp_template.c         dst[ 8] = av_clip_pixel(top[ 8] + l_m_tl);
av_clip_pixel     253 libavcodec/vp9dsp_template.c         dst[ 9] = av_clip_pixel(top[ 9] + l_m_tl);
av_clip_pixel     254 libavcodec/vp9dsp_template.c         dst[10] = av_clip_pixel(top[10] + l_m_tl);
av_clip_pixel     255 libavcodec/vp9dsp_template.c         dst[11] = av_clip_pixel(top[11] + l_m_tl);
av_clip_pixel     256 libavcodec/vp9dsp_template.c         dst[12] = av_clip_pixel(top[12] + l_m_tl);
av_clip_pixel     257 libavcodec/vp9dsp_template.c         dst[13] = av_clip_pixel(top[13] + l_m_tl);
av_clip_pixel     258 libavcodec/vp9dsp_template.c         dst[14] = av_clip_pixel(top[14] + l_m_tl);
av_clip_pixel     259 libavcodec/vp9dsp_template.c         dst[15] = av_clip_pixel(top[15] + l_m_tl);
av_clip_pixel     276 libavcodec/vp9dsp_template.c         dst[ 0] = av_clip_pixel(top[ 0] + l_m_tl);
av_clip_pixel     277 libavcodec/vp9dsp_template.c         dst[ 1] = av_clip_pixel(top[ 1] + l_m_tl);
av_clip_pixel     278 libavcodec/vp9dsp_template.c         dst[ 2] = av_clip_pixel(top[ 2] + l_m_tl);
av_clip_pixel     279 libavcodec/vp9dsp_template.c         dst[ 3] = av_clip_pixel(top[ 3] + l_m_tl);
av_clip_pixel     280 libavcodec/vp9dsp_template.c         dst[ 4] = av_clip_pixel(top[ 4] + l_m_tl);
av_clip_pixel     281 libavcodec/vp9dsp_template.c         dst[ 5] = av_clip_pixel(top[ 5] + l_m_tl);
av_clip_pixel     282 libavcodec/vp9dsp_template.c         dst[ 6] = av_clip_pixel(top[ 6] + l_m_tl);
av_clip_pixel     283 libavcodec/vp9dsp_template.c         dst[ 7] = av_clip_pixel(top[ 7] + l_m_tl);
av_clip_pixel     284 libavcodec/vp9dsp_template.c         dst[ 8] = av_clip_pixel(top[ 8] + l_m_tl);
av_clip_pixel     285 libavcodec/vp9dsp_template.c         dst[ 9] = av_clip_pixel(top[ 9] + l_m_tl);
av_clip_pixel     286 libavcodec/vp9dsp_template.c         dst[10] = av_clip_pixel(top[10] + l_m_tl);
av_clip_pixel     287 libavcodec/vp9dsp_template.c         dst[11] = av_clip_pixel(top[11] + l_m_tl);
av_clip_pixel     288 libavcodec/vp9dsp_template.c         dst[12] = av_clip_pixel(top[12] + l_m_tl);
av_clip_pixel     289 libavcodec/vp9dsp_template.c         dst[13] = av_clip_pixel(top[13] + l_m_tl);
av_clip_pixel     290 libavcodec/vp9dsp_template.c         dst[14] = av_clip_pixel(top[14] + l_m_tl);
av_clip_pixel     291 libavcodec/vp9dsp_template.c         dst[15] = av_clip_pixel(top[15] + l_m_tl);
av_clip_pixel     292 libavcodec/vp9dsp_template.c         dst[16] = av_clip_pixel(top[16] + l_m_tl);
av_clip_pixel     293 libavcodec/vp9dsp_template.c         dst[17] = av_clip_pixel(top[17] + l_m_tl);
av_clip_pixel     294 libavcodec/vp9dsp_template.c         dst[18] = av_clip_pixel(top[18] + l_m_tl);
av_clip_pixel     295 libavcodec/vp9dsp_template.c         dst[19] = av_clip_pixel(top[19] + l_m_tl);
av_clip_pixel     296 libavcodec/vp9dsp_template.c         dst[20] = av_clip_pixel(top[20] + l_m_tl);
av_clip_pixel     297 libavcodec/vp9dsp_template.c         dst[21] = av_clip_pixel(top[21] + l_m_tl);
av_clip_pixel     298 libavcodec/vp9dsp_template.c         dst[22] = av_clip_pixel(top[22] + l_m_tl);
av_clip_pixel     299 libavcodec/vp9dsp_template.c         dst[23] = av_clip_pixel(top[23] + l_m_tl);
av_clip_pixel     300 libavcodec/vp9dsp_template.c         dst[24] = av_clip_pixel(top[24] + l_m_tl);
av_clip_pixel     301 libavcodec/vp9dsp_template.c         dst[25] = av_clip_pixel(top[25] + l_m_tl);
av_clip_pixel     302 libavcodec/vp9dsp_template.c         dst[26] = av_clip_pixel(top[26] + l_m_tl);
av_clip_pixel     303 libavcodec/vp9dsp_template.c         dst[27] = av_clip_pixel(top[27] + l_m_tl);
av_clip_pixel     304 libavcodec/vp9dsp_template.c         dst[28] = av_clip_pixel(top[28] + l_m_tl);
av_clip_pixel     305 libavcodec/vp9dsp_template.c         dst[29] = av_clip_pixel(top[29] + l_m_tl);
av_clip_pixel     306 libavcodec/vp9dsp_template.c         dst[30] = av_clip_pixel(top[30] + l_m_tl);
av_clip_pixel     307 libavcodec/vp9dsp_template.c         dst[31] = av_clip_pixel(top[31] + l_m_tl);
av_clip_pixel    1139 libavcodec/vp9dsp_template.c                 dst[j * stride] = av_clip_pixel(dst[j * stride] + \
av_clip_pixel    1154 libavcodec/vp9dsp_template.c             dst[j * stride] = av_clip_pixel(dst[j * stride] + \
av_clip_pixel    1840 libavcodec/vp9dsp_template.c                 dst[strideb * -1] = av_clip_pixel(p0 + f2);
av_clip_pixel    1841 libavcodec/vp9dsp_template.c                 dst[strideb * +0] = av_clip_pixel(q0 - f1);
av_clip_pixel    1848 libavcodec/vp9dsp_template.c                 dst[strideb * -1] = av_clip_pixel(p0 + f2);
av_clip_pixel    1849 libavcodec/vp9dsp_template.c                 dst[strideb * +0] = av_clip_pixel(q0 - f1);
av_clip_pixel    1852 libavcodec/vp9dsp_template.c                 dst[strideb * -2] = av_clip_pixel(p1 + f);
av_clip_pixel    1853 libavcodec/vp9dsp_template.c                 dst[strideb * +1] = av_clip_pixel(q1 - f);
av_clip_pixel    1995 libavcodec/vp9dsp_template.c     av_clip_pixel((F[0] * src[x + -3 * stride] + \
av_clip_pixel     166 libavfilter/colorspacedsp_template.c             yuv0[x << SS_W]      = av_clip_pixel(yuv_offset[0] +
av_clip_pixel     170 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 1]      = av_clip_pixel(yuv_offset[0] +
av_clip_pixel     174 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 0 + s0] = av_clip_pixel(yuv_offset[0] +
av_clip_pixel     177 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 1 + s0] = av_clip_pixel(yuv_offset[0] +
av_clip_pixel     183 libavfilter/colorspacedsp_template.c             yuv1[x]      = av_clip_pixel(uv_offset +
av_clip_pixel     187 libavfilter/colorspacedsp_template.c             yuv2[x]      = av_clip_pixel(uv_offset +
av_clip_pixel     262 libavfilter/colorspacedsp_template.c             yuv0[x << SS_W]      = av_clip_pixel(yuv_offset[0] + (y00 >> sh));
av_clip_pixel     271 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 1]      = av_clip_pixel(yuv_offset[0] + (y01 >> sh));
av_clip_pixel     280 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 0 + s0] = av_clip_pixel(yuv_offset[0] + (y10 >> sh));
av_clip_pixel     289 libavfilter/colorspacedsp_template.c             yuv0[x * 2 + 1 + s0] = av_clip_pixel(yuv_offset[0] + (y11 >> sh));
av_clip_pixel     302 libavfilter/colorspacedsp_template.c             yuv1[x] = av_clip_pixel(uv_offset + (u >> sh));
av_clip_pixel     313 libavfilter/colorspacedsp_template.c             yuv2[x] = av_clip_pixel(uv_offset + (v >> sh));
av_clip_pixel      76 libavfilter/colorspacedsp_yuv2yuv_template.c             dst0[x << SS_W] = av_clip_pixel((cyy * y00 + uv_val) >> sh);
av_clip_pixel      78 libavfilter/colorspacedsp_yuv2yuv_template.c             dst0[x * 2 + 1] = av_clip_pixel((cyy * y01 + uv_val) >> sh);
av_clip_pixel      81 libavfilter/colorspacedsp_yuv2yuv_template.c                               av_clip_pixel((cyy * y10 + uv_val) >> sh);
av_clip_pixel      83 libavfilter/colorspacedsp_yuv2yuv_template.c                               av_clip_pixel((cyy * y11 + uv_val) >> sh);
av_clip_pixel      87 libavfilter/colorspacedsp_yuv2yuv_template.c             dst1[x] = av_clip_pixel((u * cuu + v * cuv + uv_off_out) >> sh);
av_clip_pixel      88 libavfilter/colorspacedsp_yuv2yuv_template.c             dst2[x] = av_clip_pixel((u * cvu + v * cvv + uv_off_out) >> sh);