comparison arm/Makefile @ 12379:2ea2fd28da07 libavcodec

Split h264dsp and h264pred in configure. Many H.264 derivatives, like RV40 and VP8, use the H.264 prediction functions but not the weight/loopfilter functions. This should reduce the size of builds with one of these derivatives but without H.264 decoding itself.
author darkshikari
date Sat, 07 Aug 2010 23:10:25 +0000
parents 3581c6b92f70
children
comparison
equal deleted inserted replaced
12378:3fbaf3a70b29 12379:2ea2fd28da07
1 OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \ 1 OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \
2 2
3 OBJS-$(CONFIG_VP5_DECODER) += arm/vp56dsp_init_arm.o 3 OBJS-$(CONFIG_VP5_DECODER) += arm/vp56dsp_init_arm.o
4 OBJS-$(CONFIG_VP6_DECODER) += arm/vp56dsp_init_arm.o 4 OBJS-$(CONFIG_VP6_DECODER) += arm/vp56dsp_init_arm.o
5 5
6 OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o \ 6 OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o
7 arm/h264pred_init_arm.o \ 7 OBJS-$(CONFIG_H264PRED) += arm/h264pred_init_arm.o
8 8
9 OBJS += arm/dsputil_init_arm.o \ 9 OBJS += arm/dsputil_init_arm.o \
10 arm/dsputil_arm.o \ 10 arm/dsputil_arm.o \
11 arm/fft_init_arm.o \ 11 arm/fft_init_arm.o \
12 arm/jrevdct_arm.o \ 12 arm/jrevdct_arm.o \
34 34
35 NEON-OBJS-$(CONFIG_RDFT) += arm/rdft_neon.o \ 35 NEON-OBJS-$(CONFIG_RDFT) += arm/rdft_neon.o \
36 36
37 NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \ 37 NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \
38 arm/h264idct_neon.o \ 38 arm/h264idct_neon.o \
39 arm/h264pred_neon.o \ 39
40 NEON-OBJS-$(CONFIG_H264PRED) += arm/h264pred_neon.o \
40 41
41 NEON-OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_neon.o \ 42 NEON-OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_neon.o \
42 arm/synth_filter_neon.o \ 43 arm/synth_filter_neon.o \
43 44
44 NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o 45 NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o