comparison mpegvideo.c @ 514:c9f724e3a797 libavcodec

Update and activate dct_unquantize_h263_mvi. Thanks to Mns Rullgrd for some improvements.
author mellum
date Wed, 03 Jul 2002 03:01:06 +0000
parents b9ed0ae72d51
children 3c07cf9595de
comparison
equal deleted inserted replaced
513:fb670ca9f8eb 514:c9f724e3a797
129 s->dct_unquantize_mpeg1 = dct_unquantize_mpeg1_c; 129 s->dct_unquantize_mpeg1 = dct_unquantize_mpeg1_c;
130 s->dct_unquantize_mpeg2 = dct_unquantize_mpeg2_c; 130 s->dct_unquantize_mpeg2 = dct_unquantize_mpeg2_c;
131 131
132 #ifdef HAVE_MMX 132 #ifdef HAVE_MMX
133 MPV_common_init_mmx(s); 133 MPV_common_init_mmx(s);
134 #endif
135 #ifdef ARCH_ALPHA
136 MPV_common_init_axp(s);
134 #endif 137 #endif
135 //setup default unquantizers (mpeg4 might change it later) 138 //setup default unquantizers (mpeg4 might change it later)
136 if(s->out_format == FMT_H263) 139 if(s->out_format == FMT_H263)
137 s->dct_unquantize = s->dct_unquantize_h263; 140 s->dct_unquantize = s->dct_unquantize_h263;
138 else 141 else