Mercurial > libavcodec.hg
annotate Makefile @ 3097:41fb9bda307d libavcodec
decode adts aac streams
author | mru |
---|---|
date | Wed, 08 Feb 2006 00:30:58 +0000 |
parents | 4bf348f8e2b1 |
children | 5d068956513b |
rev | line source |
---|---|
395 | 1 # |
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 | 4 # |
2 | 5 include ../config.mak |
6 | |
395 | 7 VPATH=$(SRC_PATH)/libavcodec |
8 | |
429 | 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 | 11 |
3072 | 12 #FIXME: This should be in configure/config.mak |
13 ifeq ($(CONFIG_WIN32),yes) | |
3073
9f486bcad2d3
On MinGW it is not possible to build shared and static libraries at once.
diego
parents:
3072
diff
changeset
|
14 LDFLAGS=-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a) |
3072 | 15 endif |
16 | |
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2362
diff
changeset
|
17 OBJS= bitstream.o utils.o mem.o allcodecs.o \ |
1042 | 18 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
2085 | 19 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \ |
1042 | 20 motion_est.o imgconvert.o imgresample.o \ |
1383 | 21 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ |
2639 | 22 ratecontrol.o adpcm.o eval.o error_resilience.o \ |
23 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
|
24 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
|
25 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
|
26 opt.o |
2756 | 27 |
2639 | 28 ifeq ($(CONFIG_AASC_DECODER),yes) |
29 OBJS+= aasc.o | |
30 endif | |
31 ifeq ($(CONFIG_ALAC_DECODER),yes) | |
32 OBJS+= alac.o | |
33 endif | |
34 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),) | |
35 OBJS+= asv1.o | |
36 endif | |
37 ifeq ($(CONFIG_CINEPAK_DECODER),yes) | |
38 OBJS+= cinepak.o | |
39 endif | |
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
40 ifeq ($(CONFIG_COOK_DECODER),yes) |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
41 OBJS+= cook.o |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
42 endif |
2639 | 43 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) |
44 OBJS+= cljr.o | |
45 endif | |
46 ifeq ($(CONFIG_CYUV_DECODER),yes) | |
47 OBJS+= cyuv.o | |
48 endif | |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
49 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
|
50 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
|
51 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
52 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
|
53 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
|
54 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
55 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
|
56 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
|
57 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
58 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
|
59 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
|
60 endif |
2639 | 61 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),) |
62 OBJS+= dv.o | |
63 endif | |
64 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes) | |
65 OBJS+= 8bps.o | |
66 endif | |
67 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),) | |
68 OBJS+= ffv1.o | |
69 endif | |
70 ifeq ($(CONFIG_FLAC_DECODER),yes) | |
71 OBJS+= flac.o | |
72 endif | |
73 ifeq ($(CONFIG_FLIC_DECODER),yes) | |
74 OBJS+= flicvideo.o | |
75 endif | |
76 ifeq ($(CONFIG_FOURXM_DECODER),yes) | |
77 OBJS+= 4xm.o | |
78 endif | |
2700
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
79 ifeq ($(CONFIG_FRAPS_DECODER),yes) |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
80 OBJS+= fraps.o |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
81 endif |
2639 | 82 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),) |
83 OBJS+= h261.o | |
84 endif | |
85 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),) | |
86 OBJS+= h264.o | |
87 endif | |
88 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),) | |
89 OBJS+= huffyuv.o | |
90 endif | |
91 ifeq ($(CONFIG_IDCIN_DECODER),yes) | |
92 OBJS+= idcinvideo.o | |
93 endif | |
94 ifeq ($(CONFIG_INDEO2_DECODER),yes) | |
95 OBJS+= indeo2.o | |
96 endif | |
97 ifeq ($(CONFIG_INDEO3_DECODER),yes) | |
98 OBJS+= indeo3.o | |
99 endif | |
100 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes) | |
101 OBJS+= interplayvideo.o | |
102 endif | |
103 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),) | |
104 OBJS+= lcl.o | |
105 endif | |
106 ifeq ($(CONFIG_LOCO_DECODER),yes) | |
107 OBJS+= loco.o | |
108 endif | |
109 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),) | |
110 OBJS+= mace.o | |
111 endif | |
112 ifeq ($(CONFIG_MSRLE_DECODER),yes) | |
113 OBJS+= msrle.o | |
114 endif | |
115 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes) | |
116 OBJS+= msvideo1.o | |
117 endif | |
118 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) | |
119 OBJS+= png.o | |
120 endif | |
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
121 ifeq ($(CONFIG_QDM2_DECODER),yes) |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
122 OBJS+= qdm2.o |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
123 endif |
2639 | 124 ifeq ($(CONFIG_QDRAW_DECODER),yes) |
125 OBJS+= qdrw.o | |
126 endif | |
127 ifeq ($(CONFIG_QPEG_DECODER),yes) | |
128 OBJS+= qpeg.o | |
129 endif | |
130 ifeq ($(CONFIG_QTRLE_DECODER),yes) | |
131 OBJS+= qtrle.o | |
132 endif | |
133 ifeq ($(CONFIG_RA_144_DECODER),yes) | |
134 OBJS+= ra144.o | |
135 endif | |
136 ifeq ($(CONFIG_RA_288_DECODER),yes) | |
137 OBJS+= ra288.o | |
138 endif | |
139 ifeq ($(CONFIG_ROQ_DECODER),yes) | |
140 OBJS+= roqvideo.o | |
141 endif | |
142 ifeq ($(CONFIG_RPZA_DECODER),yes) | |
143 OBJS+= rpza.o | |
144 endif | |
145 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),) | |
146 OBJS+= rv10.o | |
147 endif | |
148 ifeq ($(CONFIG_SHORTEN_DECODER),yes) | |
149 OBJS+= shorten.o | |
150 endif | |
151 ifeq ($(CONFIG_SMC_DECODER),yes) | |
152 OBJS+= smc.o | |
153 endif | |
2662 | 154 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),) |
2639 | 155 OBJS+= snow.o |
156 endif | |
157 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),) | |
158 OBJS+= sonic.o | |
159 endif | |
160 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),) | |
161 OBJS+= svq1.o | |
162 endif | |
163 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) | |
164 OBJS+= truemotion1.o | |
165 endif | |
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
166 ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes) |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
167 OBJS+= truemotion2.o |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
168 endif |
3006
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
169 ifeq ($(CONFIG_TRUESPEECH_DECODER),yes) |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
170 OBJS+= truespeech.o |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
171 endif |
2639 | 172 ifeq ($(CONFIG_TSCC_DECODER),yes) |
173 OBJS+= tscc.o | |
174 endif | |
3030 | 175 ifeq ($(CONFIG_CSCD_DECODER),yes) |
176 OBJS+= cscd.o | |
3034
d37065d8aeff
Our own LZO (1X) implementation, under LGPL and optimized for readability.
reimar
parents:
3032
diff
changeset
|
177 OBJS+= lzo.o |
3030 | 178 endif |
2639 | 179 ifeq ($(CONFIG_ULTI_DECODER),yes) |
180 OBJS+= ulti.o | |
181 endif | |
182 ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),) | |
183 OBJS+= vc9.o | |
184 endif | |
185 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),) | |
186 OBJS+= vcr1.o | |
187 endif | |
188 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) | |
189 OBJS+= vmdav.o | |
190 endif | |
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
191 ifeq ($(CONFIG_VORBIS_DECODER),yes) |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
192 OBJS+= vorbis.o |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
193 endif |
2639 | 194 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) |
195 OBJS+= vp3.o | |
196 endif | |
197 ifeq ($(CONFIG_VQA_DECODER),yes) | |
198 OBJS+= vqavideo.o | |
199 endif | |
200 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),) | |
201 OBJS+= wmadec.o | |
202 endif | |
203 ifeq ($(CONFIG_WNV1_DECODER),yes) | |
204 OBJS+= wnv1.o | |
205 endif | |
206 ifeq ($(CONFIG_WS_SND1_DECODER),yes) | |
207 OBJS+= ws-snd1.o | |
208 endif | |
209 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),) | |
210 OBJS+= xan.o | |
211 endif | |
212 ifeq ($(CONFIG_XL_DECODER),yes) | |
213 OBJS+= xl.o | |
214 endif | |
2949 | 215 ifeq ($(CONFIG_BMP_DECODER),yes) |
216 OBJS+= bmp.o | |
217 endif | |
218 | |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
219 AMROBJS= |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
220 ifeq ($(AMR_NB),yes) |
1297 | 221 ifeq ($(AMR_NB_FIXED),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
222 AMROBJS= amr.o |
1297 | 223 AMREXTRALIBS+= amr/*.o |
224 AMRLIBS=amrlibs | |
225 CLEANAMR=cleanamr | |
226 else | |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
227 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
228 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o |
1297 | 229 CLEANAMR=cleanamrfloat |
230 endif | |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
231 endif |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
232 |
1799 | 233 ifeq ($(HAVE_PTHREADS),yes) |
234 OBJS+= pthread.o | |
235 endif | |
236 | |
1822
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
237 ifeq ($(HAVE_W32THREADS),yes) |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
238 OBJS+= w32thread.o |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
239 endif |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
240 |
3081
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
241 ifeq ($(HAVE_OS2THREADS),yes) |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
242 OBJS+= os2thread.o |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
243 endif |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
244 |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
245 |
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
|
246 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
|
247 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
|
248 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
|
249 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
250 ifeq ($(AMR_WB),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
251 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
252 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
|
253 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
|
254 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
|
255 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
|
256 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
|
257 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
|
258 endif |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
259 OBJS+= $(AMROBJS) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
260 CLEANAMRWB=cleanamrwbfloat |
2 | 261 ASM_OBJS= |
0 | 262 |
1383 | 263 ifeq ($(HAVE_XVMC_ACCEL),yes) |
264 OBJS+= xvmcvideo.o | |
265 endif | |
266 | |
338 | 267 # 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
|
268 ifeq ($(CONFIG_AC3),yes) |
338 | 269 OBJS+= a52dec.o |
270 | |
271 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 272 ifneq ($(CONFIG_A52BIN),yes) |
338 | 273 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
1194 | 274 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
|
275 endif |
429 | 276 endif |
0 | 277 |
2824 | 278 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
279 |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
280 # currently using libdts for dts decoding |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
281 ifeq ($(CONFIG_DTS),yes) |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
282 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
|
283 CFLAGS += $(DTS_INC) |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
284 endif |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
285 |
1245 | 286 ifeq ($(CONFIG_FAAD),yes) |
287 OBJS+= faad.o | |
288 endif | |
289 | |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
290 ifeq ($(CONFIG_FAAC),yes) |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
291 OBJS+= faac.o |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
292 endif |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
293 |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
294 ifeq ($(CONFIG_XVID),yes) |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
295 OBJS+= xvidff.o |
3064 | 296 OBJS+= xvid_rc.o |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
297 endif |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
298 |
2556
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
299 ifeq ($(CONFIG_X264),yes) |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
300 OBJS+= x264.o |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
301 endif |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
302 |
1069 | 303 ifeq ($(CONFIG_PP),yes) |
3046
1127b4455bec
Remove redundant --enable-shared-pp configure option and make the PP code
diego
parents:
3044
diff
changeset
|
304 ifeq ($(BUILD_SHARED),yes) |
2708 | 305 EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF) |
1069 | 306 else |
307 # LIBS += libpostproc/libpostproc.a ... should be fixed | |
308 OBJS += libpostproc/postprocess.o | |
309 endif | |
310 endif | |
311 | |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
312 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
313 OBJS += mp3lameaudio.o |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
314 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
315 |
2520 | 316 ifeq ($(CONFIG_LIBOGG),yes) |
317 ifeq ($(CONFIG_LIBVORBIS),yes) | |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
318 OBJS += oggvorbis.o |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
319 endif |
2520 | 320 ifeq ($(CONFIG_LIBTHEORA), yes) |
321 OBJS += oggtheora.o | |
322 endif | |
323 endif | |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
324 |
2729 | 325 ifeq ($(CONFIG_LIBGSM),yes) |
326 OBJS += libgsm.o | |
327 endif | |
328 | |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
329 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
|
330 CFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
331 LDFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
332 endif |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
333 |
0 | 334 # i386 mmx specific stuff |
2 | 335 ifeq ($(TARGET_MMX),yes) |
74 | 336 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 337 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 338 i386/idct_mmx.o i386/motion_est_mmx.o \ |
1972 | 339 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
340 i386/vp3dsp_sse2.o | |
2868 | 341 ifeq ($(CONFIG_GPL),yes) |
342 OBJS += i386/idct_mmx_xvid.o | |
343 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
|
344 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
|
345 i386/fft_sse.o: CFLAGS+= -msse |
1869 | 346 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
|
347 endif |
0 | 348 endif |
349 | |
62 | 350 # armv4l specific stuff |
351 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
352 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o |
730 | 353 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
|
354 ifeq ($(TARGET_IWMMXT),yes) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
355 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
|
356 endif |
62 | 357 endif |
358 | |
88 | 359 # sun mediaLib specific stuff |
360 # currently only works when libavcodec is used in mplayer | |
361 ifeq ($(HAVE_MLIB),yes) | |
362 OBJS += mlib/dsputil_mlib.o | |
363 CFLAGS += $(MLIB_INC) | |
364 endif | |
365 | |
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
366 # Intel IPP specific stuff |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
367 # 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
|
368 ifeq ($(HAVE_IPP),yes) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
369 CFLAGS += $(IPP_INC) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
370 endif |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
371 |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
372 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
373 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
|
374 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
|
375 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
|
376 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
2545 | 377 CFLAGS += -fforce-addr |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
378 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
379 |
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
|
380 ifeq ($(TARGET_ARCH_POWERPC),yes) |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
381 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
|
382 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
383 |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
384 ifeq ($(TARGET_MMI),yes) |
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
385 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
|
386 endif |
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
387 |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
388 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
|
389 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
|
390 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
|
391 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
|
392 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
|
393 |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
394 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
|
395 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
|
396 endif |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
397 |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
398 ifeq ($(TARGET_ARCH_SPARC),yes) |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
399 OBJS+=sparc/dsputil_vis.o |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
400 sparc/%.o: sparc/%.c |
2967 | 401 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $< |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
402 endif |
1960 | 403 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
|
404 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
|
405 endif |
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
406 |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
407 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
429 | 408 OBJS := $(OBJS) $(ASM_OBJS) |
2 | 409 |
3044
ed98beb48872
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
3040
diff
changeset
|
410 NAME=avcodec |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
411 LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF) |
136 | 412 ifeq ($(BUILD_SHARED),yes) |
3040
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
413 LIBVERSION=$(LAVCVERSION) |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
414 LIBMAJOR=$(LAVCMAJOR) |
136 | 415 endif |
784 | 416 TESTS= imgresample-test dct-test motion-test fft-test |
0 | 417 |
2896 | 418 all: $(LIB) $(SLIBNAME) |
429 | 419 |
1297 | 420 amrlibs: |
421 $(MAKE) -C amr spclib fipoplib | |
422 | |
43 | 423 tests: apiexample cpuid_test $(TESTS) |
0 | 424 |
1297 | 425 $(LIB): $(OBJS) $(AMRLIBS) |
0 | 426 rm -f $@ |
1297 | 427 $(AR) rc $@ $(OBJS) $(AMREXTRALIBS) |
640 | 428 $(RANLIB) $@ |
0 | 429 |
2896 | 430 $(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
|
431 ifeq ($(CONFIG_PP),yes) |
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
432 $(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
|
433 endif |
3072 | 434 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) |
1472 | 435 ifeq ($(CONFIG_WIN32),yes) |
436 -lib /machine:i386 /def:$(@:.dll=.def) | |
437 endif | |
429 | 438 |
0 | 439 dsputil.o: dsputil.c dsputil.h |
440 | |
1069 | 441 libpostproc/libpostproc.a: |
442 $(MAKE) -C libpostproc | |
443 | |
0 | 444 %.o: %.c |
2967 | 445 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
0 | 446 |
62 | 447 %.o: %.S |
2770
07a63c88e3a7
x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
2756
diff
changeset
|
448 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
62 | 449 |
1046 | 450 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
|
451 $(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
|
452 |
2 | 453 dep: depend |
454 | |
1297 | 455 clean: $(CLEANAMR) |
3050
61e47d203191
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
3048
diff
changeset
|
456 rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll \ |
3073
9f486bcad2d3
On MinGW it is not possible to build shared and static libraries at once.
diego
parents:
3072
diff
changeset
|
457 *.dll.a *.def *.exp \ |
3050
61e47d203191
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
3048
diff
changeset
|
458 i386/*.o i386/*~ \ |
62 | 459 armv4l/*.o armv4l/*~ \ |
88 | 460 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
461 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
|
462 ppc/*.o ppc/*~ \ |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
463 ps2/*.o ps2/*~ \ |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
464 sh4/*.o sh4/*~ \ |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
465 sparc/*.o sparc/*~ \ |
338 | 466 liba52/*.o liba52/*~ \ |
467 apiexample $(TESTS) | |
1074 | 468 $(MAKE) -C libpostproc clean |
0 | 469 |
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
470 distclean: clean |
3067
d084a83f2117
Remove obscure Makefile.bak entry from distclean rules.
diego
parents:
3064
diff
changeset
|
471 rm -f .depend |
3050
61e47d203191
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
3048
diff
changeset
|
472 $(MAKE) -C libpostproc distclean |
2 | 473 |
1297 | 474 cleanamr: |
475 $(MAKE) -C amr clean | |
476 | |
477 cleanamrfloat: | |
478 rm -f amr_float/*.o | |
479 | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
480 cleanamrwbfloat: |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
481 $(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
|
482 |
0 | 483 # api example program |
484 apiexample: apiexample.c $(LIB) | |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
485 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) -lm |
0 | 486 |
43 | 487 # cpuid test |
488 cpuid_test: i386/cputest.c | |
489 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
490 | |
0 | 491 # testing progs |
492 | |
493 imgresample-test: imgresample.c | |
644 | 494 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
0 | 495 |
979 | 496 dct-test: dct-test.o fdctref.o $(LIB) |
2872 | 497 $(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
|
498 |
74 | 499 motion-test: motion_test.o $(LIB) |
644 | 500 $(CC) -o $@ $^ -lm |
74 | 501 |
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
|
502 fft-test: fft-test.o $(LIB) |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
503 $(CC) -o $@ $^ $(LIBAVUTIL) -lm |
784 | 504 |
136 | 505 ifeq ($(BUILD_SHARED),yes) |
1470 | 506 install: all install-headers |
507 ifeq ($(CONFIG_WIN32),yes) | |
2896 | 508 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)" |
1470 | 509 else |
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
510 install -d $(libdir) |
3040
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
511 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \ |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
512 $(libdir)/$(SLIBNAME_WITH_VERSION) |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
513 ln -sf $(SLIBNAME_WITH_VERSION) \ |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
514 $(libdir)/$(SLIBNAME_WITH_MAJOR) |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
515 ln -sf $(SLIBNAME_WITH_VERSION) \ |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
516 $(libdir)/$(SLIBNAME) |
2730
5bc8023efdba
ldconfig as config.mak variable patch by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
2729
diff
changeset
|
517 $(LDCONFIG) || true |
1470 | 518 endif |
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
519 ifeq ($(CONFIG_PP),yes) |
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
520 $(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
|
521 endif |
1470 | 522 else |
523 install: | |
136 | 524 endif |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
525 |
1470 | 526 installlib: all install-headers |
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
527 install -m 644 $(LIB) "$(libdir)" |
1470 | 528 |
529 install-headers: | |
530 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
|
531 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \ |
1470 | 532 "$(prefix)/include/ffmpeg" |
3021
e3c391312d7c
install dsputil.h, that is used by many filters in mplayer
nicodvb
parents:
3006
diff
changeset
|
533 install -m 644 $(SRC_PATH)/libavcodec/dsputil.h \ |
e3c391312d7c
install dsputil.h, that is used by many filters in mplayer
nicodvb
parents:
3006
diff
changeset
|
534 "$(prefix)/include/ffmpeg" |
2933
ba9c17abb24b
Put double-quotes around the install path in the "install-headers" section
diego
parents:
2930
diff
changeset
|
535 install -d "$(libdir)/pkgconfig" |
ba9c17abb24b
Put double-quotes around the install path in the "install-headers" section
diego
parents:
2930
diff
changeset
|
536 install -m 644 ../libavcodec.pc "$(libdir)/pkgconfig" |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
537 |
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
|
538 # |
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
|
539 # 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
|
540 # |
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
|
541 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
|
542 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
|
543 endif |