[svn] / branches / dev-api-4 / xvidcore / build / generic / sources.inc Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/build/generic/sources.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 939 - (view) (download)

1 : edgomez 824 SRCDIR = ../../src
2 :    
3 :     SRC_GENERIC = \
4 :     $(SRCDIR)/decoder.c \
5 :     $(SRCDIR)/encoder.c \
6 :     $(SRCDIR)/xvid.c \
7 :     $(SRCDIR)/bitstream/bitstream.c \
8 :     $(SRCDIR)/bitstream/cbp.c \
9 :     $(SRCDIR)/bitstream/mbcoding.c \
10 :     $(SRCDIR)/dct/fdct.c \
11 :     $(SRCDIR)/dct/idct.c \
12 : edgomez 851 $(SRCDIR)/dct/simple_idct.c \
13 : edgomez 824 $(SRCDIR)/image/colorspace.c \
14 :     $(SRCDIR)/image/image.c \
15 :     $(SRCDIR)/image/interpolate8x8.c \
16 : edgomez 851 $(SRCDIR)/image/reduced.c \
17 :     $(SRCDIR)/image/font.c \
18 : edgomez 824 $(SRCDIR)/motion/motion_comp.c \
19 :     $(SRCDIR)/motion/motion_est.c \
20 : edgomez 851 $(SRCDIR)/motion/smp_motion_est.c \
21 : edgomez 824 $(SRCDIR)/motion/sad.c \
22 :     $(SRCDIR)/prediction/mbprediction.c \
23 : suxen_drol 939 $(SRCDIR)/plugins/plugin_fixed.c \
24 :     $(SRCDIR)/plugins/plugin_cbr.c \
25 :     $(SRCDIR)/plugins/plugin_2pass1.c \
26 :     $(SRCDIR)/plugins/plugin_lumimasking.c \
27 :     $(SRCDIR)/plugins/plugin_dump.c \
28 :     $(SRCDIR)/plugins/plugin_psnr.c \
29 : edgomez 824 $(SRCDIR)/quant/adapt_quant.c \
30 :     $(SRCDIR)/quant/quant_h263.c \
31 :     $(SRCDIR)/quant/quant_matrix.c \
32 :     $(SRCDIR)/quant/quant_mpeg4.c \
33 :     $(SRCDIR)/utils/emms.c \
34 :     $(SRCDIR)/utils/mbtransquant.c \
35 :     $(SRCDIR)/utils/mem_align.c \
36 :     $(SRCDIR)/utils/mem_transfer.c \
37 :     $(SRCDIR)/utils/ratecontrol.c \
38 :     $(SRCDIR)/utils/timer.c
39 :    
40 :     SRC_DIVX4COMPAT = \
41 :     $(SRCDIR)/divx4.c
42 :    
43 :     SRC_IA32 = \
44 :     $(SRCDIR)/utils/x86_asm/cpuid.asm \
45 :     \
46 :     $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \
47 :     $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \
48 : edgomez 851 $(SRCDIR)/dct/x86_asm/fdct_xmm.asm \
49 : edgomez 824 $(SRCDIR)/dct/x86_asm/idct_mmx.asm \
50 : edgomez 851 $(SRCDIR)/dct/x86_asm/simple_idct_mmx.asm \
51 : edgomez 824 $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \
52 : edgomez 851 $(SRCDIR)/image/x86_asm/reduced_mmx.asm \
53 :     $(SRCDIR)/image/x86_asm/colorspace_rgb_mmx.asm \
54 :     $(SRCDIR)/image/x86_asm/colorspace_yuyv_mmx.asm \
55 :     $(SRCDIR)/image/x86_asm/colorspace_yuv_mmx.asm \
56 : edgomez 824 $(SRCDIR)/motion/x86_asm/sad_mmx.asm \
57 :     $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \
58 :     $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \
59 :     $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \
60 : edgomez 851 $(SRCDIR)/utils/x86_asm/interlacing_mmx.asm \
61 : edgomez 824 \
62 :     $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \
63 :     $(SRCDIR)/motion/x86_asm/sad_xmm.asm \
64 : edgomez 851 \
65 :     $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \
66 : edgomez 824 $(SRCDIR)/motion/x86_asm/sad_sse2.asm \
67 :     \
68 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \
69 : edgomez 851 $(SRCDIR)/motion/x86_asm/sad_3dn.asm \
70 :     \
71 :     $(SRCDIR)/bitstream/x86_asm/cbp_3dne.asm \
72 :     $(SRCDIR)/dct/x86_asm/idct_3dne.asm \
73 :     $(SRCDIR)/image/x86_asm/interpolate8x8_3dne.asm \
74 :     $(SRCDIR)/motion/x86_asm/sad_3dne.asm \
75 :     $(SRCDIR)/quant/x86_asm/quantize4_xmm.asm \
76 :     $(SRCDIR)/quant/x86_asm/quantize_3dne.asm \
77 :     $(SRCDIR)/utils/x86_asm/mem_transfer_3dne.asm
78 : edgomez 824
79 :     SRC_IA64 = \
80 :     $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \
81 :     $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \
82 :     $(SRCDIR)/motion/ia64_asm/sad_ia64.s \
83 :     $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \
84 :     $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \
85 : edgomez 851 $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s
86 : edgomez 824
87 :     SRC_PPC = \
88 :     $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s
89 :    
90 :     SRC_ALTIVEC = \
91 :     $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \
92 :     $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \
93 :     $(SRCDIR)/dct/ppc_asm/idct_altivec.s \
94 :     $(SRCDIR)/motion/ppc_asm/sad_altivec.s

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4