annotate Makefile @ 2948:aebeb38eea7a libavcodec

Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system Original thread: Date: Nov 20, 2005 9:25 PM Subject: [PATCH] make dvdsub encoder depend on config variables
author gpoirier
date Mon, 21 Nov 2005 20:03:35 +0000
parents ac94d509884e
children e5a10ae14ffb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
1 #
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
2 # libavcodec Makefile
2542
a27a580f292e first pass at ALAC decoder from David Hammerton; while David's original
melanson
parents: 2541
diff changeset
3 # (c) 2000-2005 Fabrice Bellard
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
4 #
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
5 include ../config.mak
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
6
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
7 VPATH=$(SRC_PATH)/libavcodec
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
8
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
9 # NOTE: -I.. is needed to include config.h
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
10 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
11
2398
582e635cfa08 common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents: 2362
diff changeset
12 OBJS= bitstream.o utils.o mem.o allcodecs.o \
1042
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
13 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
2085
michael
parents: 2044
diff changeset
14 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \
1042
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
15 motion_est.o imgconvert.o imgresample.o \
1383
ed8a6c3bc4db compile xvmc only when requested
iive
parents: 1381
diff changeset
16 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
17 ratecontrol.o adpcm.o eval.o error_resilience.o \
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
18 fft.o mdct.o raw.o golomb.o cabac.o\
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
19 dpcm.o adx.o faandct.o parser.o g726.o \
2946
ac94d509884e dvbsub encoder, patch by Wolfram Gloger < wmglo AH dent POIS med POIS uni-muenchen POIS de >
gpoirier
parents: 2933
diff changeset
20 vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
2948
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
21 opt.o
2756
d8874c8749ec subtitle codec type support
bellard
parents: 2734
diff changeset
22
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
23 ifeq ($(CONFIG_AASC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
24 OBJS+= aasc.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
25 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
26 ifeq ($(CONFIG_ALAC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
27 OBJS+= alac.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
28 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
29 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
30 OBJS+= asv1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
31 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
32 ifeq ($(CONFIG_CINEPAK_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
33 OBJS+= cinepak.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
34 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
35 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
36 OBJS+= cljr.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
37 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
38 ifeq ($(CONFIG_CYUV_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
39 OBJS+= cyuv.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
40 endif
2948
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
41 ifeq ($(CONFIG_DVBSUB_DECODER),yes)
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
42 OBJS+= dvbsubdec.o
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
43 endif
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
44 ifeq ($(CONFIG_DVBSUB_ENCODER),yes)
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
45 OBJS+= dvbsub.o
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
46 endif
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
47 ifeq ($(CONFIG_DVDSUB_DECODER),yes)
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
48 OBJS+= dvdsub.o
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
49 endif
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
50 ifeq ($(CONFIG_DVDSUB_ENCODER),yes)
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
51 OBJS+= dvdsubenc.o
aebeb38eea7a Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents: 2946
diff changeset
52 endif
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
53 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
54 OBJS+= dv.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
55 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
56 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
57 OBJS+= 8bps.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
58 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
59 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
60 OBJS+= ffv1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
61 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
62 ifeq ($(CONFIG_FLAC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
63 OBJS+= flac.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
64 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
65 ifeq ($(CONFIG_FLIC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
66 OBJS+= flicvideo.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
67 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
68 ifeq ($(CONFIG_FOURXM_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
69 OBJS+= 4xm.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
70 endif
2700
485571c9182f Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents: 2697
diff changeset
71 ifeq ($(CONFIG_FRAPS_DECODER),yes)
485571c9182f Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents: 2697
diff changeset
72 OBJS+= fraps.o
485571c9182f Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents: 2697
diff changeset
73 endif
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
74 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
75 OBJS+= h261.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
76 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
77 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
78 OBJS+= h264.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
79 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
80 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
81 OBJS+= huffyuv.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
82 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
83 ifeq ($(CONFIG_IDCIN_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
84 OBJS+= idcinvideo.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
85 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
86 ifeq ($(CONFIG_INDEO2_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
87 OBJS+= indeo2.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
88 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
89 ifeq ($(CONFIG_INDEO3_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
90 OBJS+= indeo3.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
91 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
92 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
93 OBJS+= interplayvideo.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
94 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
95 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
96 OBJS+= lcl.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
97 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
98 ifeq ($(CONFIG_LOCO_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
99 OBJS+= loco.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
100 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
101 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
102 OBJS+= mace.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
103 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
104 ifeq ($(CONFIG_MSRLE_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
105 OBJS+= msrle.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
106 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
107 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
108 OBJS+= msvideo1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
109 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
110 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
111 OBJS+= png.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
112 endif
2930
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
113 ifeq ($(CONFIG_QDM2_DECODER),yes)
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
114 OBJS+= qdm2.o
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
115 endif
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
116 ifeq ($(CONFIG_QDRAW_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
117 OBJS+= qdrw.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
118 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
119 ifeq ($(CONFIG_QPEG_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
120 OBJS+= qpeg.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
121 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
122 ifeq ($(CONFIG_QTRLE_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
123 OBJS+= qtrle.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
124 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
125 ifeq ($(CONFIG_RA_144_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
126 OBJS+= ra144.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
127 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
128 ifeq ($(CONFIG_RA_288_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
129 OBJS+= ra288.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
130 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
131 ifeq ($(CONFIG_ROQ_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
132 OBJS+= roqvideo.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
133 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
134 ifeq ($(CONFIG_RPZA_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
135 OBJS+= rpza.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
136 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
137 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
138 OBJS+= rv10.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
139 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
140 ifeq ($(CONFIG_SHORTEN_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
141 OBJS+= shorten.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
142 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
143 ifeq ($(CONFIG_SMC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
144 OBJS+= smc.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
145 endif
2662
michael
parents: 2656
diff changeset
146 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),)
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
147 OBJS+= snow.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
148 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
149 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
150 OBJS+= sonic.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
151 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
152 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
153 OBJS+= svq1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
154 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
155 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
156 OBJS+= truemotion1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
157 endif
2930
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
158 ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes)
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
159 OBJS+= truemotion2.o
f9320ccf9f09 Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents: 2918
diff changeset
160 endif
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
161 ifeq ($(CONFIG_TSCC_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
162 OBJS+= tscc.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
163 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
164 ifeq ($(CONFIG_ULTI_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
165 OBJS+= ulti.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
166 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
167 ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
168 OBJS+= vc9.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
169 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
170 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
171 OBJS+= vcr1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
172 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
173 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
174 OBJS+= vmdav.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
175 endif
2697
4fe1c19fc7a3 Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents: 2662
diff changeset
176 ifeq ($(CONFIG_VORBIS_DECODER),yes)
4fe1c19fc7a3 Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents: 2662
diff changeset
177 OBJS+= vorbis.o
4fe1c19fc7a3 Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents: 2662
diff changeset
178 endif
2639
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
179 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
180 OBJS+= vp3.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
181 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
182 ifeq ($(CONFIG_VQA_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
183 OBJS+= vqavideo.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
184 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
185 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
186 OBJS+= wmadec.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
187 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
188 ifeq ($(CONFIG_WNV1_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
189 OBJS+= wnv1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
190 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
191 ifeq ($(CONFIG_WS_SND1_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
192 OBJS+= ws-snd1.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
193 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
194 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
195 OBJS+= xan.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
196 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
197 ifeq ($(CONFIG_XL_DECODER),yes)
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
198 OBJS+= xl.o
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
199 endif
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
200
e2780f828440 put most codecs under ifdefs
michael
parents: 2618
diff changeset
201
2399
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
202 AMROBJS=
1258
802614404398 AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents: 1247
diff changeset
203 ifeq ($(AMR_NB),yes)
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
204 ifeq ($(AMR_NB_FIXED),yes)
2399
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
205 AMROBJS= amr.o
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
206 AMREXTRALIBS+= amr/*.o
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
207 AMRLIBS=amrlibs
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
208 CLEANAMR=cleanamr
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
209 else
2399
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
210 AMROBJS= amr.o
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
211 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
212 CLEANAMR=cleanamrfloat
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
213 endif
1258
802614404398 AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents: 1247
diff changeset
214 endif
802614404398 AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents: 1247
diff changeset
215
1799
95612d423fde multithreaded/SMP motion estimation
michael
parents: 1791
diff changeset
216 ifeq ($(HAVE_PTHREADS),yes)
95612d423fde multithreaded/SMP motion estimation
michael
parents: 1791
diff changeset
217 OBJS+= pthread.o
95612d423fde multithreaded/SMP motion estimation
michael
parents: 1791
diff changeset
218 endif
95612d423fde multithreaded/SMP motion estimation
michael
parents: 1791
diff changeset
219
1822
7366bb5c363f w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 1812
diff changeset
220 ifeq ($(HAVE_W32THREADS),yes)
7366bb5c363f w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 1812
diff changeset
221 OBJS+= w32thread.o
7366bb5c363f w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 1812
diff changeset
222 endif
7366bb5c363f w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents: 1812
diff changeset
223
2362
7a6ff8cc7c95 BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents: 2355
diff changeset
224 ifeq ($(HAVE_BEOSTHREADS),yes)
7a6ff8cc7c95 BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents: 2355
diff changeset
225 OBJS+= beosthread.o
7a6ff8cc7c95 BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents: 2355
diff changeset
226 endif
7a6ff8cc7c95 BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents: 2355
diff changeset
227
1486
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
228 ifeq ($(AMR_WB),yes)
2399
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
229 AMROBJS= amr.o
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
230 OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \
1486
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
231 amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
232 amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
233 amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
234 amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
235 amrwb_float/enc_util.o amrwb_float/if_rom.o
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
236 endif
2399
f4709a828e7e Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents: 2398
diff changeset
237 OBJS+= $(AMROBJS)
1486
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
238 CLEANAMRWB=cleanamrwbfloat
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
239 ASM_OBJS=
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
240
1383
ed8a6c3bc4db compile xvmc only when requested
iive
parents: 1381
diff changeset
241 ifeq ($(HAVE_XVMC_ACCEL),yes)
ed8a6c3bc4db compile xvmc only when requested
iive
parents: 1381
diff changeset
242 OBJS+= xvmcvideo.o
ed8a6c3bc4db compile xvmc only when requested
iive
parents: 1381
diff changeset
243 endif
ed8a6c3bc4db compile xvmc only when requested
iive
parents: 1381
diff changeset
244
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
245 # currently using liba52 for ac3 decoding
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
246 ifeq ($(CONFIG_AC3),yes)
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
247 OBJS+= a52dec.o
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
248
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
249 # using builtin liba52 or runtime linked liba52.so.0
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
250 ifneq ($(CONFIG_A52BIN),yes)
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
251 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
1194
432d9a42a244 Compile a52 util functions too
arpi_esp
parents: 1190
diff changeset
252 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
253 endif
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
254 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
255
2824
dae9760d1f12 fix building in separate directory
mru
parents: 2817
diff changeset
256 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF)
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
257
2123
ef54decf5624 libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents: 2085
diff changeset
258 # currently using libdts for dts decoding
ef54decf5624 libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents: 2085
diff changeset
259 ifeq ($(CONFIG_DTS),yes)
ef54decf5624 libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents: 2085
diff changeset
260 OBJS+= dtsdec.o
2918
13dcd22f0816 Add DTS_INC to the CFLAGS for DTS. This is only set by external configure
diego
parents: 2915
diff changeset
261 CFLAGS += $(DTS_INC)
2123
ef54decf5624 libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents: 2085
diff changeset
262 endif
ef54decf5624 libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents: 2085
diff changeset
263
1245
cd88870c4560 * support for AAC audio streams via libfaad
kabi
parents: 1224
diff changeset
264 ifeq ($(CONFIG_FAAD),yes)
cd88870c4560 * support for AAC audio streams via libfaad
kabi
parents: 1224
diff changeset
265 OBJS+= faad.o
cd88870c4560 * support for AAC audio streams via libfaad
kabi
parents: 1224
diff changeset
266 endif
cd88870c4560 * support for AAC audio streams via libfaad
kabi
parents: 1224
diff changeset
267
1500
726a81d83ddd Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents: 1498
diff changeset
268 ifeq ($(CONFIG_FAAC),yes)
726a81d83ddd Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents: 1498
diff changeset
269 OBJS+= faac.o
726a81d83ddd Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents: 1498
diff changeset
270 endif
726a81d83ddd Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents: 1498
diff changeset
271
2131
060053df9538 XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents: 2123
diff changeset
272 ifeq ($(CONFIG_XVID),yes)
060053df9538 XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents: 2123
diff changeset
273 OBJS+= xvidff.o
060053df9538 XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents: 2123
diff changeset
274 endif
060053df9538 XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents: 2123
diff changeset
275
2556
e5af3bc1d038 H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents: 2552
diff changeset
276 ifeq ($(CONFIG_X264),yes)
e5af3bc1d038 H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents: 2552
diff changeset
277 OBJS+= x264.o
e5af3bc1d038 H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents: 2552
diff changeset
278 endif
e5af3bc1d038 H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents: 2552
diff changeset
279
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
280 ifeq ($(CONFIG_PP),yes)
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
281 ifeq ($(SHARED_PP),yes)
2708
97c135899d7d fix shared libpostproc build
mru
parents: 2700
diff changeset
282 EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF)
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
283 else
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
284 # LIBS += libpostproc/libpostproc.a ... should be fixed
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
285 OBJS += libpostproc/postprocess.o
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
286 endif
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
287 endif
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
288
258
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
289 ifeq ($(CONFIG_MP3LAME),yes)
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
290 OBJS += mp3lameaudio.o
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
291 endif
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
292
2520
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
293 ifeq ($(CONFIG_LIBOGG),yes)
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
294 ifeq ($(CONFIG_LIBVORBIS),yes)
636
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
295 OBJS += oggvorbis.o
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
296 endif
2520
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
297 ifeq ($(CONFIG_LIBTHEORA), yes)
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
298 OBJS += oggtheora.o
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
299 endif
047f7bad4cbb 01-makefile_fix_updated.patch
michael
parents: 2514
diff changeset
300 endif
636
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
301
2729
26bf6f4e9945 libgsm warper by (Alban Bedel: albeu, free fr)
michael
parents: 2711
diff changeset
302 ifeq ($(CONFIG_LIBGSM),yes)
26bf6f4e9945 libgsm warper by (Alban Bedel: albeu, free fr)
michael
parents: 2711
diff changeset
303 OBJS += libgsm.o
26bf6f4e9945 libgsm warper by (Alban Bedel: albeu, free fr)
michael
parents: 2711
diff changeset
304 endif
26bf6f4e9945 libgsm warper by (Alban Bedel: albeu, free fr)
michael
parents: 2711
diff changeset
305
252
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
306 ifeq ($(TARGET_GPROF),yes)
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
307 CFLAGS+=-p
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
308 LDFLAGS+=-p
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
309 endif
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
310
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
311 # i386 mmx specific stuff
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
312 ifeq ($(TARGET_MMX),yes)
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
313 OBJS += i386/fdct_mmx.o i386/cputest.o \
32
a524484f9adf added idct mmx
glantau
parents: 23
diff changeset
314 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
315 i386/idct_mmx.o i386/motion_est_mmx.o \
1972
8a556283601d hook up support for SSE2-optimized VP3 IDCT
melanson
parents: 1965
diff changeset
316 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
8a556283601d hook up support for SSE2-optimized VP3 IDCT
melanson
parents: 1965
diff changeset
317 i386/vp3dsp_sse2.o
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents: 2862
diff changeset
318 ifeq ($(CONFIG_GPL),yes)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents: 2862
diff changeset
319 OBJS += i386/idct_mmx_xvid.o
666064f710d4 xvids mmx&mmx2 idcts
michael
parents: 2862
diff changeset
320 endif
1027
a0a7149be543 fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents: 1010
diff changeset
321 ifdef TARGET_BUILTIN_VECTOR
a0a7149be543 fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents: 1010
diff changeset
322 i386/fft_sse.o: CFLAGS+= -msse
1869
1b0e22e6f4d1 * missing opts for make dep
kabi
parents: 1866
diff changeset
323 depend: CFLAGS+= -msse
1027
a0a7149be543 fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents: 1010
diff changeset
324 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
325 endif
986e461dc072 Initial revision
glantau
parents:
diff changeset
326
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
327 # armv4l specific stuff
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
328 ifeq ($(TARGET_ARCH_ARMV4L),yes)
2734
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
329 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
730
b24ea84b23e2 trying to fix the non-x86 IDCTs (untested)
michaelni
parents: 727
diff changeset
330 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
2734
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
331 ifeq ($(TARGET_IWMMXT),yes)
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
332 OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
333 endif
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
334 endif
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
335
88
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
336 # sun mediaLib specific stuff
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
337 # currently only works when libavcodec is used in mplayer
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
338 ifeq ($(HAVE_MLIB),yes)
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
339 OBJS += mlib/dsputil_mlib.o
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
340 CFLAGS += $(MLIB_INC)
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
341 endif
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
342
2734
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
343 # Intel IPP specific stuff
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
344 # currently only works when libavcodec is used in mplayer
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
345 ifeq ($(HAVE_IPP),yes)
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
346 CFLAGS += $(IPP_INC)
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
347 endif
aeea63c97878 Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents: 2730
diff changeset
348
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
349 # alpha specific stuff
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
350 ifeq ($(TARGET_ARCH_ALPHA),yes)
744
2f7da29ede37 Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents: 730
diff changeset
351 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
2f7da29ede37 Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents: 730
diff changeset
352 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
705
107a56aa74f5 Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large win
mellum
parents: 689
diff changeset
353 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
2545
2b9fc44b8615 -freduce-all-givs has been removed from gcc
mellum
parents: 2542
diff changeset
354 CFLAGS += -fforce-addr
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
355 endif
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
356
623
92e99e506920 first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 612
diff changeset
357 ifeq ($(TARGET_ARCH_POWERPC),yes)
828
ace3ccd18dd2 Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents: 827
diff changeset
358 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
638
0012f75c92bb altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 636
diff changeset
359 endif
0012f75c92bb altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 636
diff changeset
360
689
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
361 ifeq ($(TARGET_MMI),yes)
721
71f669e9f633 ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 705
diff changeset
362 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
689
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
363 endif
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
364
638
0012f75c92bb altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 636
diff changeset
365 ifeq ($(TARGET_ALTIVEC),yes)
975
e05d525505c5 fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents: 973
diff changeset
366 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents: 2234
diff changeset
367 ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents: 2234
diff changeset
368 ppc/dsputil_h264_altivec.o
623
92e99e506920 first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 612
diff changeset
369 endif
92e99e506920 first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 612
diff changeset
370
1259
e8c3884f2c7e sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents: 1258
diff changeset
371 ifeq ($(TARGET_ARCH_SH4),yes)
e8c3884f2c7e sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents: 1258
diff changeset
372 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
e8c3884f2c7e sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents: 1258
diff changeset
373 endif
e8c3884f2c7e sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents: 1258
diff changeset
374
1965
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
375 ifeq ($(TARGET_ARCH_SPARC),yes)
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
376 OBJS+=sparc/dsputil_vis.o
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
377 sparc/%.o: sparc/%.c
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
378 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
379 endif
1960
d571f4537f52 * Enabling UltraSparc stuff wit _SPARC64
romansh
parents: 1959
diff changeset
380 ifeq ($(TARGET_ARCH_SPARC64),yes)
1959
55b7435c59b8 VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents: 1930
diff changeset
381 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
55b7435c59b8 VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents: 1930
diff changeset
382 endif
55b7435c59b8 VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents: 1930
diff changeset
383
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
384 # Darwin specific stuff
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
385 ifeq ($(CONFIG_DARWIN),yes)
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
386 SHFLAGS += -Wl,-install_name,$(libdir)/$(SLIBPREF)avcodec$(SLIBSUF),-current_version,$(SPPVERSION),-compatibility_version,$(SPPVERSION)
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
387 endif
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
388
509
cab79946302f Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents: 489
diff changeset
389 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
390 OBJS := $(OBJS) $(ASM_OBJS)
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
391
994
7701ff462e3a os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 979
diff changeset
392 LIB= $(LIBPREF)avcodec$(LIBSUF)
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
393 LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
394 ifeq ($(BUILD_SHARED),yes)
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
395 SLIBNAME= $(SLIBPREF)avcodec$(SLIBSUF)
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
396 endif
784
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
397 TESTS= imgresample-test dct-test motion-test fft-test
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
398
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
399 all: $(LIB) $(SLIBNAME)
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
400
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
401 amrlibs:
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
402 $(MAKE) -C amr spclib fipoplib
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
403
43
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
404 tests: apiexample cpuid_test $(TESTS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
405
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
406 $(LIB): $(OBJS) $(AMRLIBS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
407 rm -f $@
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
408 $(AR) rc $@ $(OBJS) $(AMREXTRALIBS)
640
d2f47c6c6b41 ar -s -> ranlib
michaelni
parents: 638
diff changeset
409 $(RANLIB) $@
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
410
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
411 $(SLIBNAME): $(OBJS)
2285
9891c6a212ca Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents: 2282
diff changeset
412 ifeq ($(CONFIG_PP),yes)
2443
8d4708fabc06 Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents: 2421
diff changeset
413 $(MAKE) -C libpostproc
2285
9891c6a212ca Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents: 2282
diff changeset
414 endif
1472
db00afcbd2ac use VC++ lib tool if available
bellard
parents: 1470
diff changeset
415 ifeq ($(CONFIG_WIN32),yes)
db00afcbd2ac use VC++ lib tool if available
bellard
parents: 1470
diff changeset
416 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
db00afcbd2ac use VC++ lib tool if available
bellard
parents: 1470
diff changeset
417 -lib /machine:i386 /def:$(@:.dll=.def)
db00afcbd2ac use VC++ lib tool if available
bellard
parents: 1470
diff changeset
418 else
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
419 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
1472
db00afcbd2ac use VC++ lib tool if available
bellard
parents: 1470
diff changeset
420 endif
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
421
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
422 dsputil.o: dsputil.c dsputil.h
986e461dc072 Initial revision
glantau
parents:
diff changeset
423
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
424 libpostproc/libpostproc.a:
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
425 $(MAKE) -C libpostproc
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
426
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
427 %.o: %.c
2770
07a63c88e3a7 x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 2756
diff changeset
428 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
429
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
430 %.o: %.S
2770
07a63c88e3a7 x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 2756
diff changeset
431 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
432
1046
a717c451cf1b dependencies are only build with make depend
bellard
parents: 1042
diff changeset
433 depend: $(SRCS)
1027
a0a7149be543 fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents: 1010
diff changeset
434 $(CC) -MM $(CFLAGS) $^ 1>.depend
1010
3c110cba4b29 - removed nonsense *.d dependancy stuff, there was already a better 'make dep' support in it
arpi_esp
parents: 1005
diff changeset
435
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
436 dep: depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
437
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
438 clean: $(CLEANAMR)
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
439 rm -f *.o *.d *~ .depend $(LIB) $(SLIBNAME) *$(SLIBSUF) i386/*.o i386/*~ \
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
440 armv4l/*.o armv4l/*~ \
88
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
441 mlib/*.o mlib/*~ \
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
442 alpha/*.o alpha/*~ \
623
92e99e506920 first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 612
diff changeset
443 ppc/*.o ppc/*~ \
689
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
444 ps2/*.o ps2/*~ \
1259
e8c3884f2c7e sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents: 1258
diff changeset
445 sh4/*.o sh4/*~ \
1965
f74f306c30b5 vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents: 1960
diff changeset
446 sparc/*.o sparc/*~ \
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
447 liba52/*.o liba52/*~ \
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
448 apiexample $(TESTS)
1074
d90c350454da * using $(MAKE)
kabi
parents: 1071
diff changeset
449 $(MAKE) -C libpostproc clean
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
450
484
f8bbc8976247 in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents: 429
diff changeset
451 distclean: clean
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
452 rm -f Makefile.bak .depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
453
1297
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
454 cleanamr:
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
455 $(MAKE) -C amr clean
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
456
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
457 cleanamrfloat:
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
458 rm -f amr_float/*.o
1db67cd7808a * 3gp patch by Joca
kabi
parents: 1293
diff changeset
459
1486
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
460 cleanamrwbfloat:
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
461 $(MAKE) -C amrwb_float -f makefile.gcc clean
f22010affdce AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents: 1472
diff changeset
462
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
463 # api example program
986e461dc072 Initial revision
glantau
parents:
diff changeset
464 apiexample: apiexample.c $(LIB)
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
465 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) -lm
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
466
43
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
467 # cpuid test
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
468 cpuid_test: i386/cputest.c
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
469 $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
470
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
471 # testing progs
986e461dc072 Initial revision
glantau
parents:
diff changeset
472
986e461dc072 Initial revision
glantau
parents:
diff changeset
473 imgresample-test: imgresample.c
644
641708b5c33c fixing tests
michaelni
parents: 640
diff changeset
474 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
475
979
979f3cbd08a2 tests link all libavcodec
bellard
parents: 975
diff changeset
476 dct-test: dct-test.o fdctref.o $(LIB)
2872
062b2d5d1eba add xvid idcts to dct-test
michael
parents: 2868
diff changeset
477 $(CC) -o $@ $^ -lm $(LIBAVUTIL)
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
478
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
479 motion-test: motion_test.o $(LIB)
644
641708b5c33c fixing tests
michaelni
parents: 640
diff changeset
480 $(CC) -o $@ $^ -lm
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
481
973
e2c119417470 enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents: 866
diff changeset
482 fft-test: fft-test.o $(LIB)
2817
b128802eb77b libavutil: Utility code from libavcodec moved to a separate library.
al
parents: 2796
diff changeset
483 $(CC) -o $@ $^ $(LIBAVUTIL) -lm
784
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
484
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
485 ifeq ($(BUILD_SHARED),yes)
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
486 install: all install-headers
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
487 ifeq ($(CONFIG_WIN32),yes)
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
488 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
489 else
2564
ad15cccd015f add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 2557
diff changeset
490 install -d $(libdir)
2896
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
491 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) $(libdir)/libavcodec-$(VERSION)$(SLIBSUF)
e1dfc65af0fb support for building dynamic libraries on Mac OS X
diego
parents: 2872
diff changeset
492 ln -sf libavcodec-$(VERSION)$(SLIBSUF) $(libdir)/libavcodec$(SLIBSUF)
2730
5bc8023efdba ldconfig as config.mak variable patch by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents: 2729
diff changeset
493 $(LDCONFIG) || true
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
494 endif
2285
9891c6a212ca Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents: 2282
diff changeset
495 ifeq ($(CONFIG_PP),yes)
2443
8d4708fabc06 Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents: 2421
diff changeset
496 $(MAKE) -C libpostproc $@
2285
9891c6a212ca Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents: 2282
diff changeset
497 endif
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
498 else
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
499 install:
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
500 endif
489
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
501
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
502 installlib: all install-headers
2564
ad15cccd015f add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents: 2557
diff changeset
503 install -m 644 $(LIB) "$(libdir)"
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
504
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
505 install-headers:
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
506 mkdir -p "$(prefix)/include/ffmpeg"
1568
c5ec7ac5c053 rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents: 1557
diff changeset
507 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \
1470
dc1aebe51742 correct DLL windows install
bellard
parents: 1465
diff changeset
508 "$(prefix)/include/ffmpeg"
2933
ba9c17abb24b Put double-quotes around the install path in the "install-headers" section
diego
parents: 2930
diff changeset
509 install -d "$(libdir)/pkgconfig"
ba9c17abb24b Put double-quotes around the install path in the "install-headers" section
diego
parents: 2930
diff changeset
510 install -m 644 ../libavcodec.pc "$(libdir)/pkgconfig"
489
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
511
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
512 #
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
513 # include dependency files if they exist
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
514 #
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
515 ifneq ($(wildcard .depend),)
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
516 include .depend
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
517 endif