[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 1381, Thu Mar 18 16:11:28 2004 UTC revision 1382, Mon Mar 22 22:36:25 2004 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)/dct/simple_idct.c \          dct/simple_idct.c \
13          $(SRCDIR)/image/colorspace.c \          image/colorspace.c \
14          $(SRCDIR)/image/image.c \          image/image.c \
15          $(SRCDIR)/image/interpolate8x8.c \          image/interpolate8x8.c \
16          $(SRCDIR)/image/reduced.c \          image/font.c \
17          $(SRCDIR)/image/font.c \          image/postprocessing.c \
18          $(SRCDIR)/motion/motion_comp.c \          image/qpel.c \
19          $(SRCDIR)/motion/motion_est.c \          image/reduced.c \
20          $(SRCDIR)/motion/smp_motion_est.c \          motion/estimation_bvop.c \
21          $(SRCDIR)/motion/sad.c \          motion/estimation_common.c \
22          $(SRCDIR)/prediction/mbprediction.c \          motion/estimation_gmc.c \
23          $(SRCDIR)/quant/adapt_quant.c \          motion/estimation_pvop.c \
24          $(SRCDIR)/quant/quant_h263.c \          motion/estimation_rd_based.c \
25          $(SRCDIR)/quant/quant_matrix.c \          motion/gmc.c \
26          $(SRCDIR)/quant/quant_mpeg4.c \          motion/motion_comp.c \
27          $(SRCDIR)/utils/emms.c \          motion/vop_type_decision.c \
28          $(SRCDIR)/utils/mbtransquant.c \          motion/sad.c \
29          $(SRCDIR)/utils/mem_align.c \          prediction/mbprediction.c \
30          $(SRCDIR)/utils/mem_transfer.c \          plugins/plugin_single.c \
31          $(SRCDIR)/utils/ratecontrol.c \          plugins/plugin_2pass1.c \
32          $(SRCDIR)/utils/timer.c          plugins/plugin_2pass2.c \
33            plugins/plugin_lumimasking.c \
34  SRC_DIVX4COMPAT = \          plugins/plugin_dump.c \
35          $(SRCDIR)/divx4.c          plugins/plugin_psnr.c \
36            quant/quant_h263.c \
37            quant/quant_matrix.c \
38            quant/quant_mpeg.c \
39            utils/emms.c \
40            utils/mbtransquant.c \
41            utils/mem_align.c \
42            utils/mem_transfer.c \
43            utils/timer.c
44    
45  SRC_IA32 = \  SRC_IA32 = \
46          $(SRCDIR)/utils/x86_asm/cpuid.asm \          bitstream/x86_asm/cbp_3dne.asm \
47          \          bitstream/x86_asm/cbp_mmx.asm \
48          $(SRCDIR)/bitstream/x86_asm/cbp_mmx.asm \          bitstream/x86_asm/cbp_sse2.asm \
49          $(SRCDIR)/dct/x86_asm/fdct_mmx.asm \          dct/x86_asm/fdct_mmx_ffmpeg.asm \
50          $(SRCDIR)/dct/x86_asm/fdct_xmm.asm \          dct/x86_asm/fdct_mmx_skal.asm \
51          $(SRCDIR)/dct/x86_asm/idct_mmx.asm \          dct/x86_asm/fdct_sse2_skal.asm \
52          $(SRCDIR)/dct/x86_asm/simple_idct_mmx.asm \          dct/x86_asm/idct_3dne.asm \
53          $(SRCDIR)/image/x86_asm/interpolate8x8_mmx.asm \          dct/x86_asm/idct_mmx.asm \
54          $(SRCDIR)/image/x86_asm/reduced_mmx.asm \          dct/x86_asm/idct_sse2_dmitry.asm \
55          $(SRCDIR)/image/x86_asm/colorspace_rgb_mmx.asm \          dct/x86_asm/simple_idct_mmx.asm \
56          $(SRCDIR)/image/x86_asm/colorspace_yuyv_mmx.asm \          image/x86_asm/colorspace_rgb_mmx.asm \
57          $(SRCDIR)/image/x86_asm/colorspace_yuv_mmx.asm \          image/x86_asm/colorspace_yuv_mmx.asm \
58          $(SRCDIR)/motion/x86_asm/sad_mmx.asm \          image/x86_asm/colorspace_yuyv_mmx.asm \
59          $(SRCDIR)/quant/x86_asm/quantize4_mmx.asm \          image/x86_asm/interpolate8x8_3dn.asm \
60          $(SRCDIR)/quant/x86_asm/quantize_mmx.asm \          image/x86_asm/interpolate8x8_3dne.asm \
61          $(SRCDIR)/utils/x86_asm/mem_transfer_mmx.asm    \          image/x86_asm/interpolate8x8_mmx.asm \
62          $(SRCDIR)/utils/x86_asm/interlacing_mmx.asm \          image/x86_asm/interpolate8x8_xmm.asm \
63          \          image/x86_asm/reduced_mmx.asm \
64          $(SRCDIR)/image/x86_asm/interpolate8x8_xmm.asm  \          image/x86_asm/qpel_mmx.asm \
65          $(SRCDIR)/motion/x86_asm/sad_xmm.asm \          motion/x86_asm/sad_xmm.asm \
66          \          motion/x86_asm/sad_sse2.asm \
67          $(SRCDIR)/bitstream/x86_asm/cbp_sse2.asm \          motion/x86_asm/sad_mmx.asm \
68          $(SRCDIR)/motion/x86_asm/sad_sse2.asm \          motion/x86_asm/sad_3dne.asm \
69          \          motion/x86_asm/sad_3dn.asm \
70          $(SRCDIR)/image/x86_asm/interpolate8x8_3dn.asm \          quant/x86_asm/quantize_h263_mmx.asm \
71          $(SRCDIR)/motion/x86_asm/sad_3dn.asm \          quant/x86_asm/quantize_h263_3dne.asm \
72          \          quant/x86_asm/quantize_mpeg_xmm.asm \
73          $(SRCDIR)/bitstream/x86_asm/cbp_3dne.asm \          quant/x86_asm/quantize_mpeg_mmx.asm \
74          $(SRCDIR)/dct/x86_asm/idct_3dne.asm \          utils/x86_asm/mem_transfer_mmx.asm \
75          $(SRCDIR)/image/x86_asm/interpolate8x8_3dne.asm \          utils/x86_asm/mem_transfer_3dne.asm \
76          $(SRCDIR)/motion/x86_asm/sad_3dne.asm \          utils/x86_asm/interlacing_mmx.asm \
77          $(SRCDIR)/quant/x86_asm/quantize4_xmm.asm \          utils/x86_asm/cpuid.asm
         $(SRCDIR)/quant/x86_asm/quantize_3dne.asm \  
         $(SRCDIR)/utils/x86_asm/mem_transfer_3dne.asm  
78    
79  SRC_IA64 = \  SRC_IA64 = \
80          $(SRCDIR)/dct/ia64_asm/fdct_ia64.s \          dct/ia64_asm/fdct_ia64.s \
81          $(SRCDIR)/image/ia64_asm/interpolate8x8_ia64.s \          image/ia64_asm/interpolate8x8_ia64.s \
82          $(SRCDIR)/motion/ia64_asm/sad_ia64.s \          motion/ia64_asm/sad_ia64.s \
83          $(SRCDIR)/motion/ia64_asm/halfpel8_refine_ia64.s \          motion/ia64_asm/halfpel8_refine_ia64.s \
84          $(SRCDIR)/quant/ia64_asm/quant_h263_ia64.s \          quant/ia64_asm/quant_h263_ia64.s \
85          $(SRCDIR)/utils/ia64_asm/mem_transfer_ia64.s          utils/ia64_asm/mem_transfer_ia64.s
86    
87    SRC_IA64_IDCT_GCC = \
88            dct/ia64_asm/idct_ia64_gcc.s
89    
90    SRC_IA64_IDCT_ECC = \
91            dct/ia64_asm/idct_ia64_ecc.s
92    
93  SRC_PPC = \  SRC_PPC = \
94          $(SRCDIR)/bitstream/ppc_asm/cbp_ppc.s          bitstream/ppc_asm/cbp_ppc.s
95    
96  SRC_ALTIVEC = \  SRC_ALTIVEC = \
97          $(SRCDIR)/bitstream/ppc_asm/cbp_altivec.s \          bitstream/ppc_asm/cbp_altivec.s \
98          $(SRCDIR)/dct/ppc_asm/fdct_altivec.s \          dct/ppc_asm/fdct_altivec.s \
99          $(SRCDIR)/dct/ppc_asm/idct_altivec.s \          dct/ppc_asm/idct_altivec.s \
100          $(SRCDIR)/motion/ppc_asm/sad_altivec.s          motion/ppc_asm/sad_altivec.s

Legend:
Removed from v.1381  
changed lines
  Added in v.1382

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