Parent Directory
|
Revision Log
Revision 1900 - (view) (download)
1 : | edgomez | 1382 | SRC_DIR = ../../src |
2 : | edgomez | 824 | |
3 : | SRC_GENERIC = \ | ||
4 : | edgomez | 1382 | decoder.c \ |
5 : | encoder.c \ | ||
6 : | xvid.c \ | ||
7 : | bitstream/bitstream.c \ | ||
8 : | bitstream/cbp.c \ | ||
9 : | bitstream/mbcoding.c \ | ||
10 : | dct/fdct.c \ | ||
11 : | dct/idct.c \ | ||
12 : | dct/simple_idct.c \ | ||
13 : | image/colorspace.c \ | ||
14 : | image/image.c \ | ||
15 : | image/interpolate8x8.c \ | ||
16 : | image/font.c \ | ||
17 : | image/postprocessing.c \ | ||
18 : | image/qpel.c \ | ||
19 : | image/reduced.c \ | ||
20 : | motion/estimation_bvop.c \ | ||
21 : | motion/estimation_common.c \ | ||
22 : | motion/estimation_gmc.c \ | ||
23 : | motion/estimation_pvop.c \ | ||
24 : | motion/estimation_rd_based.c \ | ||
25 : | syskin | 1506 | motion/estimation_rd_based_bvop.c \ |
26 : | edgomez | 1382 | motion/gmc.c \ |
27 : | motion/motion_comp.c \ | ||
28 : | motion/vop_type_decision.c \ | ||
29 : | motion/sad.c \ | ||
30 : | prediction/mbprediction.c \ | ||
31 : | plugins/plugin_single.c \ | ||
32 : | plugins/plugin_2pass1.c \ | ||
33 : | plugins/plugin_2pass2.c \ | ||
34 : | plugins/plugin_lumimasking.c \ | ||
35 : | plugins/plugin_dump.c \ | ||
36 : | plugins/plugin_psnr.c \ | ||
37 : | Skal | 1730 | plugins/plugin_ssim.c \ |
38 : | Isibaar | 1900 | plugins/plugin_psnrhvsm.c \ |
39 : | edgomez | 1382 | quant/quant_h263.c \ |
40 : | quant/quant_matrix.c \ | ||
41 : | quant/quant_mpeg.c \ | ||
42 : | utils/emms.c \ | ||
43 : | utils/mbtransquant.c \ | ||
44 : | utils/mem_align.c \ | ||
45 : | utils/mem_transfer.c \ | ||
46 : | utils/timer.c | ||
47 : | edgomez | 824 | |
48 : | SRC_IA32 = \ | ||
49 : | edgomez | 1382 | bitstream/x86_asm/cbp_mmx.asm \ |
50 : | bitstream/x86_asm/cbp_sse2.asm \ | ||
51 : | dct/x86_asm/fdct_mmx_ffmpeg.asm \ | ||
52 : | dct/x86_asm/fdct_mmx_skal.asm \ | ||
53 : | dct/x86_asm/fdct_sse2_skal.asm \ | ||
54 : | dct/x86_asm/idct_3dne.asm \ | ||
55 : | dct/x86_asm/idct_mmx.asm \ | ||
56 : | dct/x86_asm/idct_sse2_dmitry.asm \ | ||
57 : | image/x86_asm/colorspace_rgb_mmx.asm \ | ||
58 : | image/x86_asm/colorspace_yuv_mmx.asm \ | ||
59 : | image/x86_asm/colorspace_yuyv_mmx.asm \ | ||
60 : | image/x86_asm/interpolate8x8_3dn.asm \ | ||
61 : | image/x86_asm/interpolate8x8_3dne.asm \ | ||
62 : | image/x86_asm/interpolate8x8_mmx.asm \ | ||
63 : | image/x86_asm/interpolate8x8_xmm.asm \ | ||
64 : | suxen_drol | 1397 | image/x86_asm/postprocessing_mmx.asm \ |
65 : | suxen_drol | 1494 | image/x86_asm/postprocessing_sse2.asm \ |
66 : | edgomez | 1382 | image/x86_asm/reduced_mmx.asm \ |
67 : | image/x86_asm/qpel_mmx.asm \ | ||
68 : | Skal | 1709 | image/x86_asm/gmc_mmx.asm \ |
69 : | Skal | 1733 | image/x86_asm/deintl_sse.asm \ |
70 : | edgomez | 1382 | motion/x86_asm/sad_xmm.asm \ |
71 : | motion/x86_asm/sad_sse2.asm \ | ||
72 : | motion/x86_asm/sad_mmx.asm \ | ||
73 : | motion/x86_asm/sad_3dne.asm \ | ||
74 : | motion/x86_asm/sad_3dn.asm \ | ||
75 : | quant/x86_asm/quantize_h263_mmx.asm \ | ||
76 : | quant/x86_asm/quantize_h263_3dne.asm \ | ||
77 : | quant/x86_asm/quantize_mpeg_xmm.asm \ | ||
78 : | quant/x86_asm/quantize_mpeg_mmx.asm \ | ||
79 : | utils/x86_asm/mem_transfer_mmx.asm \ | ||
80 : | utils/x86_asm/mem_transfer_3dne.asm \ | ||
81 : | utils/x86_asm/interlacing_mmx.asm \ | ||
82 : | Skal | 1730 | utils/x86_asm/cpuid.asm \ |
83 : | plugins/x86_asm/plugin_ssim-a.asm | ||
84 : | edgomez | 824 | |
85 : | Isibaar | 1797 | SRC_X86_64 = $(SRC_IA32) |
86 : | edgomez | 1586 | |
87 : | edgomez | 824 | SRC_IA64 = \ |
88 : | edgomez | 1382 | dct/ia64_asm/fdct_ia64.s \ |
89 : | image/ia64_asm/interpolate8x8_ia64.s \ | ||
90 : | motion/ia64_asm/sad_ia64.s \ | ||
91 : | motion/ia64_asm/halfpel8_refine_ia64.s \ | ||
92 : | quant/ia64_asm/quant_h263_ia64.s \ | ||
93 : | utils/ia64_asm/mem_transfer_ia64.s | ||
94 : | edgomez | 824 | |
95 : | edgomez | 1382 | SRC_IA64_IDCT_GCC = \ |
96 : | dct/ia64_asm/idct_ia64_gcc.s | ||
97 : | |||
98 : | SRC_IA64_IDCT_ECC = \ | ||
99 : | dct/ia64_asm/idct_ia64_ecc.s | ||
100 : | |||
101 : | edgomez | 1412 | SRC_PPC_ALTIVEC = \ |
102 : | utils/ppc_asm/altivec_trigger.c \ | ||
103 : | utils/ppc_asm/mem_transfer_altivec.c \ | ||
104 : | motion/ppc_asm/sad_altivec.c \ | ||
105 : | dct/ppc_asm/idct_altivec.c \ | ||
106 : | image/ppc_asm/interpolate8x8_altivec.c \ | ||
107 : | image/ppc_asm/colorspace_altivec.c \ | ||
108 : | edgomez | 1557 | image/ppc_asm/qpel_altivec.c \ |
109 : | edgomez | 1609 | quant/ppc_asm/quant_h263_altivec.c \ |
110 : | quant/ppc_asm/quant_mpeg_altivec.c |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |