comparison x86/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 09a31ef6ed58
children 9f06475db098
comparison
equal deleted inserted replaced
12378:3fbaf3a70b29 12379:2ea2fd28da07
7 YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o \ 7 YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o \
8 $(YASM-OBJS-FFT-yes) 8 $(YASM-OBJS-FFT-yes)
9 YASM-OBJS-$(CONFIG_GPL) += x86/h264_idct_sse2.o \ 9 YASM-OBJS-$(CONFIG_GPL) += x86/h264_idct_sse2.o \
10 10
11 YASM-OBJS-$(CONFIG_H264DSP) += x86/h264_deblock_sse2.o \ 11 YASM-OBJS-$(CONFIG_H264DSP) += x86/h264_deblock_sse2.o \
12 x86/h264_intrapred.o \
13 x86/h264_weight_sse2.o \ 12 x86/h264_weight_sse2.o \
13
14 YASM-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred.o
14 15
15 YASM-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_yasm.o 16 YASM-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_yasm.o
16 17
17 MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp_mmx.o 18 MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp_mmx.o
18 MMX-OBJS-$(CONFIG_MP1FLOAT_DECODER) += x86/mpegaudiodec_mmx.o 19 MMX-OBJS-$(CONFIG_MP1FLOAT_DECODER) += x86/mpegaudiodec_mmx.o