annotate arm/Makefile @ 11619:8d3539d6ba3d libavcodec

DCA: ARM/NEON optimised lfe_fir
author mru
date Mon, 12 Apr 2010 20:45:33 +0000
parents b7fa70eabb1f
children 89c0de741fb3
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_H264DSP) += arm/h264dsp_init_arm.o \
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
2 arm/h264pred_init_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
3
11501
cd71b238e78b Simplify arch-specific object file lists
mru
parents: 11500
diff changeset
4 OBJS += arm/dsputil_init_arm.o \
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
5 arm/dsputil_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
6 arm/fft_init_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
7 arm/jrevdct_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
8 arm/mpegvideo_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
9 arm/simple_idct_arm.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
10
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
11 OBJS-$(HAVE_ARMV5TE) += arm/dsputil_init_armv5te.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
12 arm/mpegvideo_armv5te.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
13 arm/mpegvideo_armv5te_s.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
14 arm/simple_idct_armv5te.o \
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 OBJS-$(HAVE_ARMV6) += arm/dsputil_init_armv6.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
17 arm/dsputil_armv6.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
18 arm/simple_idct_armv6.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
19
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
20 OBJS-$(HAVE_ARMVFP) += arm/dsputil_vfp.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
21 arm/dsputil_init_vfp.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
22
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
23 OBJS-$(HAVE_IWMMXT) += arm/dsputil_iwmmxt.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
24 arm/mpegvideo_iwmmxt.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
25
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
26 NEON-OBJS-$(CONFIG_FFT) += arm/fft_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
27
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
28 NEON-OBJS-$(CONFIG_MDCT) += arm/mdct_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
29
11532
e011e73a902b ARM: NEON optimised RDFT
mru
parents: 11501
diff changeset
30 NEON-OBJS-$(CONFIG_RDFT) += arm/rdft_neon.o \
e011e73a902b ARM: NEON optimised RDFT
mru
parents: 11501
diff changeset
31
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
32 NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
33 arm/h264idct_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
34 arm/h264pred_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
35
11619
8d3539d6ba3d DCA: ARM/NEON optimised lfe_fir
mru
parents: 11593
diff changeset
36 NEON-OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \
8d3539d6ba3d DCA: ARM/NEON optimised lfe_fir
mru
parents: 11593
diff changeset
37 arm/dcadsp_neon.o \
8d3539d6ba3d DCA: ARM/NEON optimised lfe_fir
mru
parents: 11593
diff changeset
38 arm/synth_filter_neon.o \
11593
b7fa70eabb1f ARM: NEON optimised synth_filter_float
mru
parents: 11532
diff changeset
39
11500
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
40 NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
41
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
42 OBJS-$(HAVE_NEON) += arm/dsputil_init_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
43 arm/dsputil_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
44 arm/int_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
45 arm/simple_idct_neon.o \
8ae93fdefcd7 Move arch-specific makefile parts into $arch/Makefile
mru
parents:
diff changeset
46 $(NEON-OBJS-yes)