comparison ppc/dsputil_ppc.c @ 9995:3141f69e3905 libavcodec

Do not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER, the former depends upon the latter.
author diego
date Wed, 29 Jul 2009 09:54:49 +0000
parents d6d7e8d4a04d
children 50415a8f1451
comparison
equal deleted inserted replaced
9994:cd2b3ecdb1c9 9995:3141f69e3905
266 266
267 if (has_altivec()) { 267 if (has_altivec()) {
268 mm_flags |= FF_MM_ALTIVEC; 268 mm_flags |= FF_MM_ALTIVEC;
269 269
270 dsputil_init_altivec(c, avctx); 270 dsputil_init_altivec(c, avctx);
271 if(CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER) 271 if(CONFIG_VC1_DECODER)
272 vc1dsp_init_altivec(c, avctx); 272 vc1dsp_init_altivec(c, avctx);
273 float_init_altivec(c, avctx); 273 float_init_altivec(c, avctx);
274 int_init_altivec(c, avctx); 274 int_init_altivec(c, avctx);
275 c->gmc1 = gmc1_altivec; 275 c->gmc1 = gmc1_altivec;
276 276