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/x86/dsputil_mmx.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/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index f585f3c5ee..da0f76412b 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2866,7 +2866,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) if (CONFIG_CAVS_DECODER) ff_cavsdsp_init_mmx2(c, avctx); - if (CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER) + if (CONFIG_VC1_DECODER) ff_vc1dsp_init_mmx(c, avctx); c->add_png_paeth_prediction= add_png_paeth_prediction_mmx2; |