Parent Directory
|
Revision Log
Revision 851 - (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 : | $(SRCDIR)/quant/adapt_quant.c \ | ||
24 : | $(SRCDIR)/quant/quant_h263.c \ | ||
25 : | $(SRCDIR)/quant/quant_matrix.c \ | ||
26 : | $(SRCDIR)/quant/quant_mpeg4.c \ | ||
27 : | $(SRCDIR)/utils/emms.c \ | ||
28 : | $(SRCDIR)/utils/mbtransquant.c \ | ||
29 : | $(SRCDIR)/utils/mem_align.c \ | ||
30 : | $(SRCDIR)/utils/mem_transfer.c \ | ||
31 : | $(SRCDIR)/utils/ratecontrol.c \ | ||
32 : | $(SRCDIR)/utils/timer.c | ||
33 : | |||
34 : | SRC_DIVX4COMPAT = \ | ||
35 : | $(SRCDIR)/divx4.c | ||
36 : | |||
37 : | SRC_IA32 = \ | ||
38 : | $(SRCDIR)/utils/x86_asm/cpuid.asm \ | ||
39 : | \ | ||
40 : | $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \ | ||
41 : | $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \ | ||
42 : | edgomez | 851 | $(SRCDIR)/dct/x86_asm/fdct_xmm.asm \ |
43 : | edgomez | 824 | $(SRCDIR)/dct/x86_asm/idct_mmx.asm \ |
44 : | edgomez | 851 | $(SRCDIR)/dct/x86_asm/simple_idct_mmx.asm \ |
45 : | edgomez | 824 | $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \ |
46 : | edgomez | 851 | $(SRCDIR)/image/x86_asm/reduced_mmx.asm \ |
47 : | $(SRCDIR)/image/x86_asm/colorspace_rgb_mmx.asm \ | ||
48 : | $(SRCDIR)/image/x86_asm/colorspace_yuyv_mmx.asm \ | ||
49 : | $(SRCDIR)/image/x86_asm/colorspace_yuv_mmx.asm \ | ||
50 : | edgomez | 824 | $(SRCDIR)/motion/x86_asm/sad_mmx.asm \ |
51 : | $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \ | ||
52 : | $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \ | ||
53 : | $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \ | ||
54 : | edgomez | 851 | $(SRCDIR)/utils/x86_asm/interlacing_mmx.asm \ |
55 : | edgomez | 824 | \ |
56 : | $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \ | ||
57 : | $(SRCDIR)/motion/x86_asm/sad_xmm.asm \ | ||
58 : | edgomez | 851 | \ |
59 : | $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \ | ||
60 : | edgomez | 824 | $(SRCDIR)/motion/x86_asm/sad_sse2.asm \ |
61 : | \ | ||
62 : | $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \ | ||
63 : | edgomez | 851 | $(SRCDIR)/motion/x86_asm/sad_3dn.asm \ |
64 : | \ | ||
65 : | $(SRCDIR)/bitstream/x86_asm/cbp_3dne.asm \ | ||
66 : | $(SRCDIR)/dct/x86_asm/idct_3dne.asm \ | ||
67 : | $(SRCDIR)/image/x86_asm/interpolate8x8_3dne.asm \ | ||
68 : | $(SRCDIR)/motion/x86_asm/sad_3dne.asm \ | ||
69 : | $(SRCDIR)/quant/x86_asm/quantize4_xmm.asm \ | ||
70 : | $(SRCDIR)/quant/x86_asm/quantize_3dne.asm \ | ||
71 : | $(SRCDIR)/utils/x86_asm/mem_transfer_3dne.asm | ||
72 : | edgomez | 824 | |
73 : | SRC_IA64 = \ | ||
74 : | $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \ | ||
75 : | $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \ | ||
76 : | $(SRCDIR)/motion/ia64_asm/sad_ia64.s \ | ||
77 : | $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \ | ||
78 : | $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \ | ||
79 : | edgomez | 851 | $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s |
80 : | edgomez | 824 | |
81 : | SRC_PPC = \ | ||
82 : | $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s | ||
83 : | |||
84 : | SRC_ALTIVEC = \ | ||
85 : | $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \ | ||
86 : | $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \ | ||
87 : | $(SRCDIR)/dct/ppc_asm/idct_altivec.s \ | ||
88 : | $(SRCDIR)/motion/ppc_asm/sad_altivec.s |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |