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-23 02:33:33 +0400
committerDiego Biurrun <diego@biurrun.de>2009-07-23 02:33:33 +0400
commit31cf61b4475a34c0d935126c357a914526417108 (patch)
tree8aee0dc49b6134181344f1ef097d7f12150e96f0 /libavcodec/Makefile
parentadcb2190814abe0ea75fb42ae975971d908eb0a2 (diff)
Only compile in NEON optimizations for H.264 when the H.264 decoder is enabled.
Originally committed as revision 19494 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index fb98a8b7ae..f4616b6575 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -495,12 +495,13 @@ OBJS-$(HAVE_ARMVFP) += arm/dsputil_vfp.o \
OBJS-$(HAVE_IWMMXT) += arm/dsputil_iwmmxt.o \
arm/mpegvideo_iwmmxt.o \
+NEON-OBJS-$(CONFIG_H264_DECODER) += arm/h264dsp_neon.o \
+ arm/h264idct_neon.o \
+
NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o
OBJS-$(HAVE_NEON) += arm/dsputil_neon.o \
arm/dsputil_neon_s.o \
- arm/h264dsp_neon.o \
- arm/h264idct_neon.o \
arm/simple_idct_neon.o \
$(NEON-OBJS-yes)