diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-25 03:04:46 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-25 03:04:46 +0100 |
commit | a0d1440476ced02c17e26947e48ab68a38b36a0e (patch) | |
tree | b69704c11c9bcea6026084925ec35d2a5e4b1093 /libavcodec | |
parent | c4738c319610ffa7b8a631d4fcc247f1c751d023 (diff) | |
download | ffmpeg-a0d1440476ced02c17e26947e48ab68a38b36a0e.tar.gz |
Fix compilation with --disable-everything on x86_32.
Fixes ticket #2183.
Diffstat (limited to 'libavcodec')
-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 ba536b871c..3c30f50b73 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2049,7 +2049,7 @@ static void dsputil_init_mmx(DSPContext *c, AVCodecContext *avctx, int mm_flags) SET_HPEL_FUNCS(avg, [1], 8, mmx); } -#if ARCH_X86_32 || !HAVE_YASM +#if CONFIG_VIDEODSP && (ARCH_X86_32 || !HAVE_YASM) c->gmc = gmc_mmx; #endif |