comparison motion_est_template.c @ 1266:ec946cb74397 libavcodec

Warning fixes.
author mellum
date Thu, 15 May 2003 01:34:47 +0000
parents fea03d2c4946
children a7a9df478e46
comparison
equal deleted inserted replaced
1265:09165461996f 1266:ec946cb74397
41 op_pixels_func (*hpel_put)[4];\ 41 op_pixels_func (*hpel_put)[4];\
42 op_pixels_func (*hpel_avg)[4]= &s->dsp.avg_pixels_tab[size];\ 42 op_pixels_func (*hpel_avg)[4]= &s->dsp.avg_pixels_tab[size];\
43 op_pixels_func (*chroma_hpel_put)[4];\ 43 op_pixels_func (*chroma_hpel_put)[4];\
44 qpel_mc_func (*qpel_put)[16];\ 44 qpel_mc_func (*qpel_put)[16];\
45 qpel_mc_func (*qpel_avg)[16]= &s->dsp.avg_qpel_pixels_tab[size];\ 45 qpel_mc_func (*qpel_avg)[16]= &s->dsp.avg_qpel_pixels_tab[size];\
46 const __attribute__((unused)) int unu= time_pp + time_pb + (int)src_u + (int)src_v + (int)ref_u + (int)ref_v\ 46 const __attribute__((unused)) int unu= time_pp + time_pb + (size_t)src_u + (size_t)src_v + (size_t)ref_u + (size_t)ref_v\
47 + (int)ref2_y + (int)hpel_avg + (int)qpel_avg + (int)score_map;\ 47 + (size_t)ref2_y + (size_t)hpel_avg + (size_t)qpel_avg + (size_t)score_map;\
48 if(s->no_rounding /*FIXME b_type*/){\ 48 if(s->no_rounding /*FIXME b_type*/){\
49 hpel_put= &s->dsp.put_no_rnd_pixels_tab[size];\ 49 hpel_put= &s->dsp.put_no_rnd_pixels_tab[size];\
50 chroma_hpel_put= &s->dsp.put_no_rnd_pixels_tab[size+1];\ 50 chroma_hpel_put= &s->dsp.put_no_rnd_pixels_tab[size+1];\
51 qpel_put= &s->dsp.put_no_rnd_qpel_pixels_tab[size];\ 51 qpel_put= &s->dsp.put_no_rnd_qpel_pixels_tab[size];\
52 }else{\ 52 }else{\