[svn] / trunk / xvidcore / build / generic / sources.inc Repository:
ViewVC logotype

Diff of /trunk/xvidcore/build/generic/sources.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 824, Sun Feb 9 19:32:52 2003 UTC revision 1709, Wed Jun 14 21:44:07 2006 UTC
# Line 1  Line 1 
1  SRCDIR = ../../src  SRC_DIR = ../../src
2    
3  SRC_GENERIC = \  SRC_GENERIC = \
4          $(SRCDIR)/decoder.c \          decoder.c \
5          $(SRCDIR)/encoder.c \          encoder.c \
6          $(SRCDIR)/xvid.c \          xvid.c \
7          $(SRCDIR)/bitstream/bitstream.c \          bitstream/bitstream.c \
8          $(SRCDIR)/bitstream/cbp.c \          bitstream/cbp.c \
9          $(SRCDIR)/bitstream/mbcoding.c \          bitstream/mbcoding.c \
10          $(SRCDIR)/dct/fdct.c \          dct/fdct.c \
11          $(SRCDIR)/dct/idct.c \          dct/idct.c \
12          $(SRCDIR)/image/colorspace.c \          dct/simple_idct.c \
13          $(SRCDIR)/image/image.c \          image/colorspace.c \
14          $(SRCDIR)/image/interpolate8x8.c \          image/image.c \
15          $(SRCDIR)/motion/motion_comp.c \          image/interpolate8x8.c \
16          $(SRCDIR)/motion/motion_est.c \          image/font.c \
17          $(SRCDIR)/motion/sad.c \          image/postprocessing.c \
18          $(SRCDIR)/prediction/mbprediction.c \          image/qpel.c \
19          $(SRCDIR)/quant/adapt_quant.c \          image/reduced.c \
20          $(SRCDIR)/quant/quant_h263.c \          motion/estimation_bvop.c \
21          $(SRCDIR)/quant/quant_matrix.c \          motion/estimation_common.c \
22          $(SRCDIR)/quant/quant_mpeg4.c \          motion/estimation_gmc.c \
23          $(SRCDIR)/utils/emms.c \          motion/estimation_pvop.c \
24          $(SRCDIR)/utils/mbtransquant.c \          motion/estimation_rd_based.c \
25          $(SRCDIR)/utils/mem_align.c \          motion/estimation_rd_based_bvop.c \
26          $(SRCDIR)/utils/mem_transfer.c \          motion/gmc.c \
27          $(SRCDIR)/utils/ratecontrol.c \          motion/motion_comp.c \
28          $(SRCDIR)/utils/timer.c          motion/vop_type_decision.c \
29            motion/sad.c \
30  SRC_DIVX4COMPAT = \          prediction/mbprediction.c \
31          $(SRCDIR)/divx4.c          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            quant/quant_h263.c \
38            quant/quant_matrix.c \
39            quant/quant_mpeg.c \
40            utils/emms.c \
41            utils/mbtransquant.c \
42            utils/mem_align.c \
43            utils/mem_transfer.c \
44            utils/timer.c
45    
46  SRC_IA32 = \  SRC_IA32 = \
47          $(SRCDIR)/utils/x86_asm/cpuid.asm \          bitstream/x86_asm/cbp_3dne.asm \
48          \          bitstream/x86_asm/cbp_mmx.asm \
49          $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \          bitstream/x86_asm/cbp_sse2.asm \
50          $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \          dct/x86_asm/fdct_mmx_ffmpeg.asm \
51          $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \          dct/x86_asm/fdct_mmx_skal.asm \
52          $(SRCDIR)/dct/x86_asm/idct_mmx.asm \          dct/x86_asm/fdct_sse2_skal.asm \
53          $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \          dct/x86_asm/idct_3dne.asm \
54          $(SRCDIR)/image/x86_asm/rgb_to_yv12_mmx.asm \          dct/x86_asm/idct_mmx.asm \
55          $(SRCDIR)/image/x86_asm/yuv_to_yv12_mmx.asm \          dct/x86_asm/idct_sse2_dmitry.asm \
56          $(SRCDIR)/image/x86_asm/yuyv_to_yv12_mmx.asm \          dct/x86_asm/simple_idct_mmx.asm \
57          $(SRCDIR)/image/x86_asm/yv12_to_rgb24_mmx.asm \          image/x86_asm/colorspace_rgb_mmx.asm \
58          $(SRCDIR)/image/x86_asm/yv12_to_rgb32_mmx.asm \          image/x86_asm/colorspace_yuv_mmx.asm \
59          $(SRCDIR)/image/x86_asm/yv12_to_yuyv_mmx.asm \          image/x86_asm/colorspace_yuyv_mmx.asm \
60          $(SRCDIR)/motion/x86_asm/sad_mmx.asm \          image/x86_asm/interpolate8x8_3dn.asm \
61          $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \          image/x86_asm/interpolate8x8_3dne.asm \
62          $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \          image/x86_asm/interpolate8x8_mmx.asm \
63          $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm    \          image/x86_asm/interpolate8x8_xmm.asm \
64          \          image/x86_asm/postprocessing_mmx.asm \
65          $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm  \          image/x86_asm/postprocessing_sse2.asm \
66          $(SRCDIR)/motion/x86_asm/sad_xmm.asm \          image/x86_asm/reduced_mmx.asm \
67          $(SRCDIR)/motion/x86_asm/sad_sse2.asm \          image/x86_asm/qpel_mmx.asm \
68          \          image/x86_asm/gmc_mmx.asm \
69          $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \          motion/x86_asm/sad_xmm.asm \
70          $(SRCDIR)/motion/x86_asm/sad_3dn.asm          motion/x86_asm/sad_sse2.asm \
71            motion/x86_asm/sad_mmx.asm \
72            motion/x86_asm/sad_3dne.asm \
73            motion/x86_asm/sad_3dn.asm \
74            quant/x86_asm/quantize_h263_mmx.asm \
75            quant/x86_asm/quantize_h263_3dne.asm \
76            quant/x86_asm/quantize_mpeg_xmm.asm \
77            quant/x86_asm/quantize_mpeg_mmx.asm \
78            utils/x86_asm/mem_transfer_mmx.asm \
79            utils/x86_asm/mem_transfer_3dne.asm \
80            utils/x86_asm/interlacing_mmx.asm \
81            utils/x86_asm/cpuid.asm
82    
83    SRC_X86_64 = \
84            dct/x86_64_asm/fdct_mmx_skal.asm \
85            dct/x86_64_asm/idct_mmx.asm \
86            image/x86_64_asm/interpolate8x8_mmx.asm \
87            image/x86_64_asm/interpolate8x8_xmm.asm \
88            image/x86_64_asm/qpel_mmx.asm \
89            motion/x86_64_asm/sad_mmx.asm \
90            motion/x86_64_asm/sad_xmm.asm \
91            quant/x86_64_asm/quantize_h263_mmx.asm \
92            quant/x86_64_asm/quantize_mpeg_xmm.asm \
93            utils/x86_64_asm/cpuid.asm \
94            utils/x86_64_asm/interlacing_mmx.asm \
95            utils/x86_64_asm/mem_transfer_mmx.asm
96    
97  SRC_IA64 = \  SRC_IA64 = \
98          $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \          dct/ia64_asm/fdct_ia64.s \
99          $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \          image/ia64_asm/interpolate8x8_ia64.s \
100          $(SRCDIR)/motion/ia64_asm/sad_ia64.s \          motion/ia64_asm/sad_ia64.s \
101          $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \          motion/ia64_asm/halfpel8_refine_ia64.s \
102          $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \          quant/ia64_asm/quant_h263_ia64.s \
103          $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s \          utils/ia64_asm/mem_transfer_ia64.s
104          $(SRCDIR)/dct/ia64_asm/idct_ia64_gcc.s  
105    SRC_IA64_IDCT_GCC = \
106  SRC_PPC = \          dct/ia64_asm/idct_ia64_gcc.s
107          $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s  
108    SRC_IA64_IDCT_ECC = \
109  SRC_ALTIVEC = \          dct/ia64_asm/idct_ia64_ecc.s
110          $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \  
111          $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \  SRC_PPC_ALTIVEC = \
112          $(SRCDIR)/dct/ppc_asm/idct_altivec.s \          utils/ppc_asm/altivec_trigger.c \
113          $(SRCDIR)/motion/ppc_asm/sad_altivec.s          utils/ppc_asm/mem_transfer_altivec.c \
114            motion/ppc_asm/sad_altivec.c \
115            dct/ppc_asm/idct_altivec.c \
116            image/ppc_asm/interpolate8x8_altivec.c \
117            image/ppc_asm/colorspace_altivec.c \
118            image/ppc_asm/qpel_altivec.c \
119            quant/ppc_asm/quant_h263_altivec.c \
120            quant/ppc_asm/quant_mpeg_altivec.c

Legend:
Removed from v.824  
changed lines
  Added in v.1709

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