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