H 58 libavcodec/bfin/config_bfin.h #define RELOC(reg,got,obj) reg.L = obj; reg.H = obj
H 2629 libavcodec/dsputil.c #define H264_WEIGHT(W,H) \
H 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){ \
H 2634 libavcodec/dsputil.c for(y=0; y<H; y++, block += stride){ \
H 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){ \
H 2659 libavcodec/dsputil.c for(y=0; y<H; y++, dst += stride, src += stride){ \
H 494 libavcodec/h264pred.c int H = src0[1] - src0[-1];
H 498 libavcodec/h264pred.c H += k*(src0[k] - src0[-k]);
H 502 libavcodec/h264pred.c H = ( 5*(H/4) ) / 16;
H 506 libavcodec/h264pred.c i = H; H = V; V = i;
H 508 libavcodec/h264pred.c H = ( H + (H>>2) ) >> 4;
H 511 libavcodec/h264pred.c H = ( 5*H+32 ) >> 6;
H 515 libavcodec/h264pred.c a = 16*(src1[0] + src2[16] + 1) - 7*(V+H);
H 521 libavcodec/h264pred.c src[17+i] = cm[ (b+ H) >> 5 ];
H 522 libavcodec/h264pred.c src[18+i] = cm[ (b+2*H) >> 5 ];
H 523 libavcodec/h264pred.c src[19+i] = cm[ (b+3*H) >> 5 ];
H 524 libavcodec/h264pred.c b += 4*H;
H 722 libavcodec/h264pred.c int H = src0[1] - src0[-1];
H 726 libavcodec/h264pred.c H += k*(src0[k] - src0[-k]);
H 729 libavcodec/h264pred.c H = ( 17*H+16 ) >> 5;
H 732 libavcodec/h264pred.c a = 16*(src1[0] + src2[8]+1) - 3*(V+H);
H 737 libavcodec/h264pred.c src[1] = cm[ (b+ H) >> 5 ];
H 738 libavcodec/h264pred.c src[2] = cm[ (b+2*H) >> 5 ];
H 739 libavcodec/h264pred.c src[3] = cm[ (b+3*H) >> 5 ];
H 740 libavcodec/h264pred.c src[4] = cm[ (b+4*H) >> 5 ];
H 741 libavcodec/h264pred.c src[5] = cm[ (b+5*H) >> 5 ];
H 742 libavcodec/h264pred.c src[6] = cm[ (b+6*H) >> 5 ];
H 743 libavcodec/h264pred.c src[7] = cm[ (b+7*H) >> 5 ];
H 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){ \
H 1079 libavcodec/ppc/h264_altivec.c weight_h264_WxH_altivec(block, stride, log2_denom, weight, offset, W, H); \
H 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){ \
H 1082 libavcodec/ppc/h264_altivec.c biweight_h264_WxH_altivec(dst, src, stride, log2_denom, weightd, weights, offset, W, H); \
H 46 libavcodec/vp3dsp.c int A, B, C, D, Ad, Bd, Cd, Dd, E, F, G, H;
H 70 libavcodec/vp3dsp.c H = M(xC6S2, ip[2]) - M(xC2S6, ip[6]);
H 76 libavcodec/vp3dsp.c Bdd = Bd - H;
H 79 libavcodec/vp3dsp.c Hd = Bd + H;
H 125 libavcodec/vp3dsp.c H = M(xC6S2, ip[2*8]) - M(xC2S6, ip[6*8]);
H 131 libavcodec/vp3dsp.c Bdd = Bd - H;
H 134 libavcodec/vp3dsp.c Hd = Bd + H;
H 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){ \
H 2282 libavcodec/x86/h264dsp_mmx.c ff_h264_biweight_WxH_mmx2(dst, src, stride, log2_denom, weightd, weights, offset, W, H); \
H 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){ \
H 2285 libavcodec/x86/h264dsp_mmx.c ff_h264_weight_WxH_mmx2(dst, stride, log2_denom, weight, offset, W, H); \
H 189 libswscale/swscale-example.c uint8_t *rgb_data = malloc (W*H*4);
H 192 libswscale/swscale-example.c uint8_t *data = malloc (3*W*H);
H 193 libswscale/swscale-example.c uint8_t *src[3]= {data, data+W*H, data+W*H*2};
H 198 libswscale/swscale-example.c sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUV420P, 2, NULL, NULL, NULL);
H 200 libswscale/swscale-example.c for (y=0; y<H; y++){
H 205 libswscale/swscale-example.c sws_scale(sws, rgb_src, rgb_stride, 0, H, src, stride);
H 207 libswscale/swscale-example.c selfTest(src, stride, W, H);
H 258 tests/rotozoom.c for (i=0;i<H;i++) {