annotate x86/Makefile @ 11957:ed037136f0b1 libavcodec

Fix compilation without --enable-gpl.
author cehoyos
date Fri, 25 Jun 2010 19:06:29 +0000
parents afee30fe8c26
children 51f89053fca5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11501
cd71b238e78b Simplify arch-specific object file lists
mru
parents: 11500
diff changeset
1 OBJS-$(CONFIG_MLP_DECODER) += x86/mlpdsp.o
cd71b238e78b Simplify arch-specific object file lists
mru
parents: 11500
diff changeset
2 OBJS-$(CONFIG_TRUEHD_DECODER) += x86/mlpdsp.o
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
3
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
4 YASM-OBJS-FFT-$(HAVE_AMD3DNOW) += x86/fft_3dn.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
5 YASM-OBJS-FFT-$(HAVE_AMD3DNOWEXT) += x86/fft_3dn2.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
6 YASM-OBJS-FFT-$(HAVE_SSE) += x86/fft_sse.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
7 YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
8 $(YASM-OBJS-FFT-yes)
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
9 YASM-OBJS-$(CONFIG_GPL) += x86/h264_deblock_sse2.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
10 x86/h264_idct_sse2.o \
11957
ed037136f0b1 Fix compilation without --enable-gpl.
cehoyos
parents: 11951
diff changeset
11
ed037136f0b1 Fix compilation without --enable-gpl.
cehoyos
parents: 11951
diff changeset
12 YASM-OBJS-$(CONFIG_H264_DECODER) += x86/h264_intrapred.o \
ed037136f0b1 Fix compilation without --enable-gpl.
cehoyos
parents: 11951
diff changeset
13
ed037136f0b1 Fix compilation without --enable-gpl.
cehoyos
parents: 11951
diff changeset
14 YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/h264_intrapred.o \
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
15
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
16 MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp_mmx.o
11939
ef338bd70180 SSE-optimized MP3 floating point windowing functions
vitor
parents: 11501
diff changeset
17 MMX-OBJS-$(CONFIG_MP1FLOAT_DECODER) += x86/mpegaudiodec_mmx.o
ef338bd70180 SSE-optimized MP3 floating point windowing functions
vitor
parents: 11501
diff changeset
18 MMX-OBJS-$(CONFIG_MP2FLOAT_DECODER) += x86/mpegaudiodec_mmx.o
ef338bd70180 SSE-optimized MP3 floating point windowing functions
vitor
parents: 11501
diff changeset
19 MMX-OBJS-$(CONFIG_MP3FLOAT_DECODER) += x86/mpegaudiodec_mmx.o
ef338bd70180 SSE-optimized MP3 floating point windowing functions
vitor
parents: 11501
diff changeset
20 MMX-OBJS-$(CONFIG_MP3ON4FLOAT_DECODER) += x86/mpegaudiodec_mmx.o
ef338bd70180 SSE-optimized MP3 floating point windowing functions
vitor
parents: 11501
diff changeset
21 MMX-OBJS-$(CONFIG_MP3ADUFLOAT_DECODER) += x86/mpegaudiodec_mmx.o
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
22 MMX-OBJS-$(CONFIG_ENCODERS) += x86/dsputilenc_mmx.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
23 MMX-OBJS-$(CONFIG_GPL) += x86/idct_mmx.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
24 MMX-OBJS-$(CONFIG_LPC) += x86/lpc_mmx.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
25 MMX-OBJS-$(CONFIG_DWT) += x86/snowdsp_mmx.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
26 MMX-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_mmx.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
27 MMX-OBJS-$(CONFIG_VP3_DECODER) += x86/vp3dsp_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
28 x86/vp3dsp_sse2.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
29 MMX-OBJS-$(CONFIG_VP5_DECODER) += x86/vp3dsp_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
30 x86/vp3dsp_sse2.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
31 MMX-OBJS-$(CONFIG_VP6_DECODER) += x86/vp3dsp_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
32 x86/vp3dsp_sse2.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
33 x86/vp6dsp_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
34 x86/vp6dsp_sse2.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
35 MMX-OBJS-$(HAVE_YASM) += x86/dsputil_yasm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
36 $(YASM-OBJS-yes)
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
37
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
38 MMX-OBJS-$(CONFIG_FFT) += x86/fft.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
39
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
40 OBJS-$(HAVE_MMX) += x86/cpuid.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
41 x86/dnxhd_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
42 x86/dsputil_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
43 x86/fdct_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
44 x86/idct_mmx_xvid.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
45 x86/idct_sse2_xvid.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
46 x86/motion_est_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
47 x86/mpegvideo_mmx.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
48 x86/simple_idct_mmx.o \