W 2629 libavcodec/dsputil.c #define H264_WEIGHT(W,H) \ W 2630 libavcodec/dsputil.c static void weight_h264_pixels ## W ## x ## H ## _c(uint8_t *block, int stride, int log2_denom, int weight, int offset){ \ W 2637 libavcodec/dsputil.c if(W==2) continue; \ W 2640 libavcodec/dsputil.c if(W==4) continue; \ W 2645 libavcodec/dsputil.c if(W==8) continue; \ W 2656 libavcodec/dsputil.c static void biweight_h264_pixels ## W ## x ## H ## _c(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset){ \ W 2662 libavcodec/dsputil.c if(W==2) continue; \ W 2665 libavcodec/dsputil.c if(W==4) continue; \ W 2670 libavcodec/dsputil.c if(W==8) continue; \ W 68 libavcodec/g726.c const int16_t* W; /**< special table #1 ;-) */ W 249 libavcodec/g726.c c->yu = av_clip(c->y + c->tbls.W[I] + ((-c->y)>>5), 544, 5120); W 186 libavcodec/jpeglsdec.c W(dst, x, Ra); W 202 libavcodec/jpeglsdec.c W(dst, x, Ra); W 254 libavcodec/jpeglsdec.c W(dst, x, pred); W 140 libavcodec/jpeglsenc.c W(cur, x, Ra); W 164 libavcodec/jpeglsenc.c W(cur, x, Ra); W 201 libavcodec/jpeglsenc.c W(cur, x, Ra); W 1078 libavcodec/ppc/h264_altivec.c static void ff_weight_h264_pixels ## W ## x ## H ## _altivec(uint8_t *block, int stride, int log2_denom, int weight, int offset){ \ W 1079 libavcodec/ppc/h264_altivec.c weight_h264_WxH_altivec(block, stride, log2_denom, weight, offset, W, H); \ W 1081 libavcodec/ppc/h264_altivec.c static void ff_biweight_h264_pixels ## W ## x ## H ## _altivec(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset){ \ W 1082 libavcodec/ppc/h264_altivec.c biweight_h264_WxH_altivec(dst, src, stride, log2_denom, weightd, weights, offset, W, H); \ W 2281 libavcodec/x86/h264dsp_mmx.c static void ff_h264_biweight_ ## W ## x ## H ## _mmx2(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset){ \ W 2282 libavcodec/x86/h264dsp_mmx.c ff_h264_biweight_WxH_mmx2(dst, src, stride, log2_denom, weightd, weights, offset, W, H); \ W 2284 libavcodec/x86/h264dsp_mmx.c static void ff_h264_weight_ ## W ## x ## H ## _mmx2(uint8_t *dst, int stride, int log2_denom, int weight, int offset){ \ W 2285 libavcodec/x86/h264dsp_mmx.c ff_h264_weight_WxH_mmx2(dst, stride, log2_denom, weight, offset, W, H); \ W 189 libswscale/swscale-example.c uint8_t *rgb_data = malloc (W*H*4); W 191 libswscale/swscale-example.c int rgb_stride[3]={4*W, 0, 0}; W 192 libswscale/swscale-example.c uint8_t *data = malloc (3*W*H); W 193 libswscale/swscale-example.c uint8_t *src[3]= {data, data+W*H, data+W*H*2}; W 194 libswscale/swscale-example.c int stride[3]={W, W, W}; W 198 libswscale/swscale-example.c sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUV420P, 2, NULL, NULL, NULL); W 201 libswscale/swscale-example.c for (x=0; x<W*4; x++){ W 202 libswscale/swscale-example.c rgb_data[ x + y*4*W]= random(); W 207 libswscale/swscale-example.c selfTest(src, stride, W, H); W 247 tests/rotozoom.c char line[3 * W]; W 259 tests/rotozoom.c fread(line,1,3*W,fichier); W 260 tests/rotozoom.c for (j=0;j<W;j++) { W 261 tests/rotozoom.c tab_r[W*i+j] = line[3*j ]; W 262 tests/rotozoom.c tab_g[W*i+j] = line[3*j + 1]; W 263 tests/rotozoom.c tab_b[W*i+j] = line[3*j + 2];