diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-07-29 09:54:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-29 09:54:49 +0000 |
commit | 9be6f0d2f8393100a11c8527c7ba18c1dc2f1450 (patch) | |
tree | cbcc3b2049b5c4b48ba3d8919d532f68fc0cfafb /libavcodec/ppc/dsputil_ppc.c | |
parent | e0f58e39c45abf4fd830f745d31acc43183ac7e6 (diff) | |
download | ffmpeg-9be6f0d2f8393100a11c8527c7ba18c1dc2f1450.tar.gz |
Do not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER,
the former depends upon the latter.
Originally committed as revision 19533 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/dsputil_ppc.c')
-rw-r--r-- | libavcodec/ppc/dsputil_ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/dsputil_ppc.c b/libavcodec/ppc/dsputil_ppc.c index 8846810e1f..63103f8bd1 100644 --- a/libavcodec/ppc/dsputil_ppc.c +++ b/libavcodec/ppc/dsputil_ppc.c @@ -268,7 +268,7 @@ void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx) mm_flags |= FF_MM_ALTIVEC; dsputil_init_altivec(c, avctx); - if(CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER) + if(CONFIG_VC1_DECODER) vc1dsp_init_altivec(c, avctx); float_init_altivec(c, avctx); int_init_altivec(c, avctx); |