diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-24 02:10:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-09 14:45:59 +0200 |
commit | ac56ff9cc9d442e4dc0cd01593d0f418e1e0cdaa (patch) | |
tree | db738d0730ded89496cae0f6c50d71b77c78718c /libavcodec/mips | |
parent | 8dd0650fe67398d78214687b1a15e614239ff593 (diff) | |
download | ffmpeg-ac56ff9cc9d442e4dc0cd01593d0f418e1e0cdaa.tar.gz |
build: non-x86: Only compile mpegvideo optimizations when necessary
Diffstat (limited to 'libavcodec/mips')
-rw-r--r-- | libavcodec/mips/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile index 37899b1f7a..5f00d70360 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -1,3 +1,4 @@ MMI-OBJS += mips/dsputil_mmi.o \ mips/idct_mmi.o \ - mips/mpegvideo_mmi.o \ + +MMI-OBJS-$(CONFIG_MPEGVIDEO) += mips/mpegvideo_mmi.o |