diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-23 20:06:54 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-23 20:06:54 +0000 |
commit | 980fc7b83458fe6bbd58910813ba7ad3faf6cf76 (patch) | |
tree | 54215c0a4172d6a0490478d6e83685c0851884e7 /libavcodec/dsputil.c | |
parent | d78647e8b4ae46352d689179079a65cc7e1d1efe (diff) | |
download | ffmpeg-980fc7b83458fe6bbd58910813ba7ad3faf6cf76.tar.gz |
fixed config for direct mplayer build compatibility
Originally committed as revision 8 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 7e544a4524..a1734be8c1 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -21,7 +21,7 @@ #include "avcodec.h" #include "dsputil.h" -#ifdef CONFIG_MMX +#ifdef HAVE_MMX int mm_flags; /* multimedia extension flags */ #endif @@ -377,7 +377,7 @@ void dsputil_init(void) pix_abs16x16_xy2 = pix_abs16x16_xy2_c; av_fdct = jpeg_fdct_ifast; -#ifdef CONFIG_MMX +#ifdef HAVE_MMX dsputil_init_mmx(); #endif } |