Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-07-29 13:54:49 +0400
committerDiego Biurrun <diego@biurrun.de>2009-07-29 13:54:49 +0400
commit9be6f0d2f8393100a11c8527c7ba18c1dc2f1450 (patch)
treecbcc3b2049b5c4b48ba3d8919d532f68fc0cfafb /libavcodec/ppc
parente0f58e39c45abf4fd830f745d31acc43183ac7e6 (diff)
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')
-rw-r--r--libavcodec/ppc/dsputil_ppc.c2
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);