diff options
author | Måns Rullgård <mans@mansr.com> | 2010-04-13 00:48:49 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-04-13 00:48:49 +0000 |
commit | b591c7af31d19f7614752418b5debd7570163470 (patch) | |
tree | 9a656796d657544113225335cc04cb422f96857b | |
parent | e5747706335ac6b535ce6b1a18f89f0c656c91d3 (diff) | |
download | ffmpeg-b591c7af31d19f7614752418b5debd7570163470.tar.gz |
10l: fix build on non-NEON ARM
Originally committed as revision 22867 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/arm/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile index 37e9c8e5ea..794156dc4b 100644 --- a/libavcodec/arm/Makefile +++ b/libavcodec/arm/Makefile @@ -1,3 +1,5 @@ +OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \ + OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o \ arm/h264pred_init_arm.o \ @@ -33,8 +35,7 @@ NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \ arm/h264idct_neon.o \ arm/h264pred_neon.o \ -NEON-OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \ - arm/dcadsp_neon.o \ +NEON-OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_neon.o \ arm/synth_filter_neon.o \ NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o |