Parent Directory
|
Revision Log
Revision 804 - (view) (download)
1 : | Isibaar | 732 | LIB=libxvidcore.a |
2 : | LIBSO=libxvidcore.so | ||
3 : | |||
4 : | |||
5 : | SRCDIR = ../../src | ||
6 : | |||
7 : | SRC = \ | ||
8 : | $(SRCDIR)/decoder.c \ | ||
9 : | $(SRCDIR)/divx4.c \ | ||
10 : | $(SRCDIR)/encoder.c \ | ||
11 : | $(SRCDIR)/xvid.c \ | ||
12 : | $(SRCDIR)/bitstream/bitstream.c \ | ||
13 : | $(SRCDIR)/bitstream/cbp.c \ | ||
14 : | $(SRCDIR)/bitstream/mbcoding.c \ | ||
15 : | $(SRCDIR)/dct/fdct.c \ | ||
16 : | $(SRCDIR)/dct/idct.c \ | ||
17 : | suxen_drol | 799 | $(SRCDIR)/dct/simple_idct.c \ |
18 : | Isibaar | 732 | $(SRCDIR)/image/colorspace.c \ |
19 : | $(SRCDIR)/image/image.c \ | ||
20 : | $(SRCDIR)/image/interpolate8x8.c \ | ||
21 : | suxen_drol | 737 | $(SRCDIR)/image/reduced.c \ |
22 : | $(SRCDIR)/image/font.c \ | ||
23 : | Isibaar | 732 | $(SRCDIR)/motion/motion_comp.c \ |
24 : | $(SRCDIR)/motion/motion_est.c \ | ||
25 : | suxen_drol | 737 | $(SRCDIR)/motion/smp_motion_est.c \ |
26 : | Isibaar | 732 | $(SRCDIR)/motion/sad.c \ |
27 : | $(SRCDIR)/prediction/mbprediction.c \ | ||
28 : | $(SRCDIR)/quant/adapt_quant.c \ | ||
29 : | $(SRCDIR)/quant/quant_h263.c \ | ||
30 : | $(SRCDIR)/quant/quant_matrix.c \ | ||
31 : | $(SRCDIR)/quant/quant_mpeg4.c \ | ||
32 : | $(SRCDIR)/utils/emms.c \ | ||
33 : | $(SRCDIR)/utils/mbtransquant.c \ | ||
34 : | $(SRCDIR)/utils/mem_align.c \ | ||
35 : | $(SRCDIR)/utils/mem_transfer.c \ | ||
36 : | $(SRCDIR)/utils/ratecontrol.c \ | ||
37 : | $(SRCDIR)/utils/timer.c | ||
38 : | |||
39 : | |||
40 : | DIRS = \ | ||
41 : | $(SRCDIR)/*.o \ | ||
42 : | $(SRCDIR)/bitstream/*.o \ | ||
43 : | $(SRCDIR)/dct/*.o \ | ||
44 : | $(SRCDIR)/image/*.o \ | ||
45 : | $(SRCDIR)/motion/*.o \ | ||
46 : | $(SRCDIR)/prediction/*.o \ | ||
47 : | $(SRCDIR)/quant/*.o \ | ||
48 : | $(SRCDIR)/utils/*.o | ||
49 : | |||
50 : | SRC_INTEL = \ | ||
51 : | $(SRCDIR)/utils/x86_asm/cpuid.asm \ | ||
52 : | \ | ||
53 : | $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \ | ||
54 : | $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \ | ||
55 : | suxen_drol | 799 | $(SRCDIR)/dct/x86_asm/fdct_xmm.asm \ |
56 : | Isibaar | 732 | $(SRCDIR)/dct/x86_asm/idct_mmx.asm \ |
57 : | suxen_drol | 799 | $(SRCDIR)/dct/x86_asm/simple_idct_mmx.asm \ |
58 : | Isibaar | 732 | $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \ |
59 : | suxen_drol | 737 | $(SRCDIR)/image/x86_asm/reduced_mmx.asm \ |
60 : | $(SRCDIR)/image/x86_asm/colorspace_rgb_mmx.asm \ | ||
61 : | $(SRCDIR)/image/x86_asm/colorspace_yuyv_mmx.asm \ | ||
62 : | $(SRCDIR)/image/x86_asm/colorspace_yuv_mmx.asm \ | ||
63 : | Isibaar | 732 | $(SRCDIR)/motion/x86_asm/sad_mmx.asm \ |
64 : | $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \ | ||
65 : | $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \ | ||
66 : | $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm \ | ||
67 : | suxen_drol | 737 | $(SRCDIR)/utils/x86_asm/interlacing_mmx.asm \ |
68 : | Isibaar | 732 | \ |
69 : | $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm \ | ||
70 : | $(SRCDIR)/motion/x86_asm/sad_xmm.asm \ | ||
71 : | \ | ||
72 : | $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \ | ||
73 : | $(SRCDIR)/motion/x86_asm/sad_sse2.asm \ | ||
74 : | \ | ||
75 : | $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \ | ||
76 : | $(SRCDIR)/motion/x86_asm/sad_3dn.asm \ | ||
77 : | \ | ||
78 : | $(SRCDIR)/bitstream/x86_asm/cbp_3dne.asm \ | ||
79 : | $(SRCDIR)/dct/x86_asm/idct_3dne.asm \ | ||
80 : | $(SRCDIR)/image/x86_asm/interpolate8x8_3dne.asm \ | ||
81 : | $(SRCDIR)/motion/x86_asm/sad_3dne.asm \ | ||
82 : | $(SRCDIR)/quant/x86_asm/quantize4_xmm.asm \ | ||
83 : | $(SRCDIR)/quant/x86_asm/quantize_3dne.asm \ | ||
84 : | $(SRCDIR)/utils/x86_asm/mem_transfer_3dne.asm | ||
85 : | |||
86 : | DIRS_INTEL = \ | ||
87 : | $(SRCDIR)/bitstream/x86_asm/*.o \ | ||
88 : | $(SRCDIR)/dct/x86_asm/*.o \ | ||
89 : | $(SRCDIR)/image/x86_asm/*.o \ | ||
90 : | $(SRCDIR)/motion/x86_asm/*.o \ | ||
91 : | $(SRCDIR)/quant/x86_asm/*.o \ | ||
92 : | $(SRCDIR)/utils/x86_asm/*.o | ||
93 : | |||
94 : | SRC_IA64 = \ | ||
95 : | $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \ | ||
96 : | $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \ | ||
97 : | $(SRCDIR)/motion/ia64_asm/sad_ia64.s \ | ||
98 : | $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \ | ||
99 : | $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \ | ||
100 : | suxen_drol | 804 | $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s \ |
101 : | Isibaar | 732 | $(SRCDIR)/dct/ia64_asm/idct_ia64_gcc.s |
102 : | suxen_drol | 804 | # note: Makefile.ia64 will replace idct_ia64_gcc.c with idct_ia64_ecc.s when using ecc compiler |
103 : | Isibaar | 732 | |
104 : | DIRS_IA64 = \ | ||
105 : | $(SRCDIR)/dct/ia64_asm/*.o \ | ||
106 : | $(SRCDIR)/image/ia64_asm/*.o \ | ||
107 : | $(SRCDIR)/motion/ia64_asm/*.o \ | ||
108 : | $(SRCDIR)/quant/ia64_asm/*.o \ | ||
109 : | $(SRCDIR)/utils/ia64_asm/*.o | ||
110 : | |||
111 : | SRC_PPC = \ | ||
112 : | $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s | ||
113 : | |||
114 : | SRC_ALTIVEC = \ | ||
115 : | $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \ | ||
116 : | $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \ | ||
117 : | $(SRCDIR)/dct/ppc_asm/idct_altivec.s \ | ||
118 : | $(SRCDIR)/motion/ppc_asm/sad_altivec.s | ||
119 : | |||
120 : | |||
121 : | DIRS_PPC = \ | ||
122 : | $(SRCDIR)/bitstream/ppc_asm/*.o \ | ||
123 : | $(SRCDIR)/dct/ppc_asm/*.o |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |