]> git.sesse.net Git - ffmpeg/blob - libavcodec/Makefile
3 lines while -> 1 line for loop
[ffmpeg] / libavcodec / Makefile
1 #
2 # libavcodec Makefile
3 # (c) 2000-2005 Fabrice Bellard
4 #
5 include ../config.mak
6
7 # NOTE: -I.. is needed to include config.h
8 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS)
9
10 OBJS= bitstream.o utils.o mem.o allcodecs.o \
11       mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
12       mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \
13       motion_est.o imgconvert.o imgresample.o \
14       mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
15       ratecontrol.o adpcm.o eval.o error_resilience.o \
16       fft.o mdct.o raw.o golomb.o cabac.o\
17       dpcm.o adx.o faandct.o parser.o g726.o \
18       vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
19       opt.o
20
21 HEADERS = avcodec.h
22
23 ifeq ($(CONFIG_AASC_DECODER),yes)
24     OBJS+= aasc.o
25 endif
26 ifeq ($(CONFIG_ALAC_DECODER),yes)
27     OBJS+= alac.o
28 endif
29 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),)
30     OBJS+= asv1.o
31 endif
32 ifeq ($(CONFIG_AVS_DECODER),yes)
33     OBJS+= avs.o
34 endif
35 ifeq ($(CONFIG_CINEPAK_DECODER),yes)
36     OBJS+= cinepak.o
37 endif
38 ifeq ($(CONFIG_COOK_DECODER),yes)
39     OBJS+= cook.o
40 endif
41 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),)
42     OBJS+= cljr.o
43 endif
44 ifeq ($(CONFIG_CYUV_DECODER),yes)
45     OBJS+= cyuv.o
46 endif
47 ifeq ($(CONFIG_DVBSUB_DECODER),yes)
48    OBJS+= dvbsubdec.o
49 endif
50 ifeq ($(CONFIG_DVBSUB_ENCODER),yes)
51    OBJS+= dvbsub.o
52 endif
53 ifeq ($(CONFIG_DVDSUB_DECODER),yes)
54    OBJS+= dvdsub.o
55 endif
56 ifeq ($(CONFIG_DVDSUB_ENCODER),yes)
57    OBJS+= dvdsubenc.o
58 endif
59 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),)
60     OBJS+= dv.o
61 endif
62 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes)
63     OBJS+= 8bps.o
64 endif
65 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),)
66     OBJS+= ffv1.o
67 endif
68 ifeq ($(CONFIG_FLAC_DECODER),yes)
69     OBJS+= flac.o
70 endif
71 ifeq ($(CONFIG_FLAC_ENCODER),yes)
72     OBJS+= flacenc.o
73 endif
74 ifeq ($(CONFIG_FLIC_DECODER),yes)
75     OBJS+= flicvideo.o
76 endif
77 ifeq ($(CONFIG_FOURXM_DECODER),yes)
78     OBJS+= 4xm.o
79 endif
80 ifeq ($(CONFIG_FRAPS_DECODER),yes)
81     OBJS+= fraps.o
82 endif
83 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),)
84     OBJS+= h261.o
85 endif
86 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),)
87     OBJS+= h264.o
88 endif
89 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),)
90     OBJS+= huffyuv.o
91 endif
92 ifeq ($(CONFIG_IDCIN_DECODER),yes)
93     OBJS+= idcinvideo.o
94 endif
95 ifeq ($(CONFIG_INDEO2_DECODER),yes)
96     OBJS+= indeo2.o
97 endif
98 ifeq ($(CONFIG_INDEO3_DECODER),yes)
99     OBJS+= indeo3.o
100 endif
101 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes)
102     OBJS+= interplayvideo.o
103 endif
104 ifeq ($(CONFIG_KMVC_DECODER),yes)
105     OBJS+= kmvc.o
106 endif
107 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
108     OBJS+= lcl.o
109 endif
110 ifeq ($(CONFIG_LOCO_DECODER),yes)
111     OBJS+= loco.o
112 endif
113 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),)
114     OBJS+= mace.o
115 endif
116 ifeq ($(CONFIG_MSRLE_DECODER),yes)
117     OBJS+= msrle.o
118 endif
119 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes)
120     OBJS+= msvideo1.o
121 endif
122 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),)
123     OBJS+= png.o
124 endif
125 ifeq ($(CONFIG_QDM2_DECODER),yes)
126     OBJS+= qdm2.o
127 endif
128 ifeq ($(CONFIG_QDRAW_DECODER),yes)
129     OBJS+= qdrw.o
130 endif
131 ifeq ($(CONFIG_QPEG_DECODER),yes)
132     OBJS+= qpeg.o
133 endif
134 ifeq ($(CONFIG_QTRLE_DECODER),yes)
135     OBJS+= qtrle.o
136 endif
137 ifeq ($(CONFIG_RA_144_DECODER),yes)
138     OBJS+= ra144.o
139 endif
140 ifeq ($(CONFIG_RA_288_DECODER),yes)
141     OBJS+= ra288.o
142 endif
143 ifeq ($(CONFIG_ROQ_DECODER),yes)
144     OBJS+= roqvideo.o
145 endif
146 ifeq ($(CONFIG_RPZA_DECODER),yes)
147     OBJS+= rpza.o
148 endif
149 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),)
150     OBJS+= rv10.o
151 endif
152 ifeq ($(CONFIG_SHORTEN_DECODER),yes)
153     OBJS+= shorten.o
154 endif
155 ifneq ($(CONFIG_SMACKER_DECODER)$(CONFIG_SMACKAUD_DECODER),)
156     OBJS+= smacker.o
157 endif
158 ifeq ($(CONFIG_SMC_DECODER),yes)
159     OBJS+= smc.o
160 endif
161 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),)
162     OBJS+= snow.o
163 endif
164 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),)
165     OBJS+= sonic.o
166 endif
167 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),)
168     OBJS+= svq1.o
169 endif
170 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes)
171     OBJS+= truemotion1.o
172 endif
173 ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes)
174     OBJS+= truemotion2.o
175 endif
176 ifeq ($(CONFIG_TRUESPEECH_DECODER),yes)
177     OBJS+= truespeech.o
178 endif
179 ifeq ($(CONFIG_TTA_DECODER),yes)
180     OBJS+= tta.o
181 endif
182 ifeq ($(CONFIG_TSCC_DECODER),yes)
183     OBJS+= tscc.o
184 endif
185 ifeq ($(CONFIG_CSCD_DECODER),yes)
186     OBJS+= cscd.o
187     OBJS+= lzo.o
188 endif
189 ifeq ($(CONFIG_NUV_DECODER),yes)
190     OBJS+= nuv.o
191     OBJS+= rtjpeg.o
192     OBJS+= lzo.o
193 endif
194 ifeq ($(CONFIG_ULTI_DECODER),yes)
195     OBJS+= ulti.o
196 endif
197 ifneq ($(CONFIG_VC1_DECODER)$(CONFIG_WMV3_DECODER),)
198     OBJS+= vc1.o
199 endif
200 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
201     OBJS+= vcr1.o
202 endif
203 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
204     OBJS+= vmdav.o
205 endif
206 ifeq ($(CONFIG_VORBIS_DECODER),yes)
207     OBJS+= vorbis.o
208 endif
209 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
210     OBJS+= vp3.o
211 endif
212 ifeq ($(CONFIG_VQA_DECODER),yes)
213     OBJS+= vqavideo.o
214 endif
215 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
216     OBJS+= wmadec.o
217 endif
218 ifeq ($(CONFIG_WNV1_DECODER),yes)
219     OBJS+= wnv1.o
220 endif
221 ifeq ($(CONFIG_WS_SND1_DECODER),yes)
222     OBJS+= ws-snd1.o
223 endif
224 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
225     OBJS+= xan.o
226 endif
227 ifeq ($(CONFIG_XL_DECODER),yes)
228     OBJS+= xl.o
229 endif
230 ifeq ($(CONFIG_BMP_DECODER),yes)
231         OBJS+= bmp.o
232 endif
233 ifeq ($(CONFIG_MMVIDEO_DECODER),yes)
234         OBJS+= mmvideo.o
235 endif
236 ifeq ($(CONFIG_ZMBV_DECODER),yes)
237         OBJS+= zmbv.o
238 endif
239 ifeq ($(CONFIG_FLASHSV_DECODER),yes)
240         OBJS+= flashsv.o
241 endif
242
243
244 ifeq ($(AMR),yes)
245 OBJS+= amr.o
246 endif
247
248 ifeq ($(AMR_NB),yes)
249 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
250 endif
251
252 ifeq ($(AMR_NB_FIXED),yes)
253 EXTRAOBJS += amr/*.o
254 EXTRADEPS=amrlibs
255 endif
256
257 ifeq ($(AMR_WB),yes)
258 OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o  amrwb_float/dec_gain.o  \
259        amrwb_float/dec_if.o    amrwb_float/dec_lpc.o  amrwb_float/dec_main.o  \
260        amrwb_float/dec_rom.o   amrwb_float/dec_util.o amrwb_float/enc_acelp.o \
261        amrwb_float/enc_dtx.o   amrwb_float/enc_gain.o amrwb_float/enc_if.o    \
262        amrwb_float/enc_lpc.o   amrwb_float/enc_main.o amrwb_float/enc_rom.o   \
263        amrwb_float/enc_util.o  amrwb_float/if_rom.o
264 endif
265
266
267 ifeq ($(HAVE_PTHREADS),yes)
268 OBJS+= pthread.o
269 endif
270
271 ifeq ($(HAVE_W32THREADS),yes)
272 OBJS+= w32thread.o
273 endif
274
275 ifeq ($(HAVE_OS2THREADS),yes)
276 OBJS+= os2thread.o
277 endif
278
279
280 ifeq ($(HAVE_BEOSTHREADS),yes)
281 OBJS+= beosthread.o
282 endif
283
284 ASM_OBJS=
285
286 ifeq ($(HAVE_XVMC_ACCEL),yes)
287 OBJS+= xvmcvideo.o
288 endif
289
290 # currently using liba52 for ac3 decoding
291 ifeq ($(CONFIG_AC3),yes)
292 OBJS+= a52dec.o
293
294 # using builtin liba52 or runtime linked liba52.so.0
295 ifneq ($(CONFIG_A52BIN),yes)
296 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
297         liba52/imdct.o  liba52/parse.o liba52/crc.o liba52/resample.o
298 endif
299 endif
300
301 EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
302
303 # currently using libdts for dts decoding
304 ifeq ($(CONFIG_DTS),yes)
305 OBJS+= dtsdec.o
306 CFLAGS += $(DTS_INC)
307 endif
308
309 ifeq ($(CONFIG_FAAD),yes)
310 OBJS+= faad.o
311 endif
312
313 ifeq ($(CONFIG_FAAC),yes)
314 OBJS+= faac.o
315 endif
316
317 ifeq ($(CONFIG_XVID),yes)
318 OBJS+= xvidff.o
319 OBJS+= xvid_rc.o
320 endif
321
322 ifeq ($(CONFIG_X264),yes)
323 OBJS+= x264.o
324 endif
325
326 ifeq ($(CONFIG_MP3LAME),yes)
327 OBJS += mp3lameaudio.o
328 endif
329
330 ifeq ($(CONFIG_LIBOGG),yes)
331 ifeq ($(CONFIG_LIBVORBIS),yes)
332 OBJS += oggvorbis.o
333 endif
334 ifeq ($(CONFIG_LIBTHEORA), yes)
335 OBJS += oggtheora.o
336 endif
337 endif
338
339 ifeq ($(CONFIG_LIBGSM),yes)
340 OBJS += libgsm.o
341 endif
342
343 # i386 mmx specific stuff
344 ifeq ($(TARGET_MMX),yes)
345 OBJS += i386/fdct_mmx.o i386/cputest.o \
346         i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
347         i386/idct_mmx.o i386/motion_est_mmx.o \
348         i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
349         i386/vp3dsp_sse2.o i386/fft_3dn.o i386/fft_3dn2.o i386/snowdsp_mmx.o
350 ifeq ($(CONFIG_GPL),yes)
351 OBJS += i386/idct_mmx_xvid.o
352 endif
353 ifeq ($(TARGET_BUILTIN_VECTOR),yes)
354 i386/fft_sse.o: CFLAGS+= -msse
355 depend: CFLAGS+= -msse
356 endif
357 ifeq ($(TARGET_BUILTIN_3DNOW),yes)
358 i386/fft_3dn.o: CFLAGS+= -m3dnow
359 ifeq ($(TARGET_ARCH_X86),yes)
360 i386/fft_3dn2.o: CFLAGS+= -march=athlon
361 endif
362 ifeq ($(TARGET_ARCH_X86_64),yes)
363 i386/fft_3dn2.o: CFLAGS+= -march=k8
364 endif
365 endif
366 endif
367
368 # armv4l specific stuff
369 ifeq ($(TARGET_ARCH_ARMV4L),yes)
370 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
371 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
372 ifeq ($(TARGET_IWMMXT),yes)
373 OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
374 endif
375 endif
376
377 # sun mediaLib specific stuff
378 # currently only works when libavcodec is used in mplayer
379 ifeq ($(HAVE_MLIB),yes)
380 OBJS += mlib/dsputil_mlib.o
381 CFLAGS += $(MLIB_INC)
382 endif
383
384 # Intel IPP specific stuff
385 # currently only works when libavcodec is used in mplayer
386 ifeq ($(HAVE_IPP),yes)
387 CFLAGS += $(IPP_INC)
388 endif
389
390 # alpha specific stuff
391 ifeq ($(TARGET_ARCH_ALPHA),yes)
392 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
393         alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
394 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
395 CFLAGS += -fforce-addr
396 endif
397
398 ifeq ($(TARGET_ARCH_POWERPC),yes)
399 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
400 endif
401
402 ifeq ($(TARGET_MMI),yes)
403 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
404 endif
405
406 ifeq ($(TARGET_ALTIVEC),yes)
407 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
408         ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
409         ppc/dsputil_h264_altivec.o ppc/dsputil_snow_altivec.o
410 endif
411
412 ifeq ($(TARGET_ARCH_SH4),yes)
413 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
414 endif
415
416 ifeq ($(TARGET_ARCH_SPARC),yes)
417 OBJS+=sparc/dsputil_vis.o
418 sparc/%.o: sparc/%.c
419         $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
420 endif
421
422 NAME=avcodec
423 LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
424 ifeq ($(BUILD_SHARED),yes)
425 LIBVERSION=$(LAVCVERSION)
426 LIBMAJOR=$(LAVCMAJOR)
427 endif
428 TESTS= imgresample-test dct-test motion-test fft-test
429
430 include $(SRC_PATH)/common.mak
431
432 amrlibs:
433         $(MAKE) -C amr spclib fipoplib
434
435 tests: apiexample cpuid_test $(TESTS)
436
437 dsputil.o: dsputil.c dsputil.h
438
439 clean::
440         rm -f \
441            i386/*.o i386/*~ \
442            armv4l/*.o armv4l/*~ \
443            mlib/*.o mlib/*~ \
444            alpha/*.o alpha/*~ \
445            ppc/*.o ppc/*~ \
446            ps2/*.o ps2/*~ \
447            sh4/*.o sh4/*~ \
448            sparc/*.o sparc/*~ \
449            liba52/*.o liba52/*~ \
450            amr_float/*.o \
451            apiexample $(TESTS)
452         -$(MAKE) -C amr clean
453         -$(MAKE) -C amrwb_float -f makefile.gcc clean
454
455 # api example program
456 apiexample: apiexample.c $(LIB)
457         $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS)
458
459 # cpuid test
460 cpuid_test: i386/cputest.c
461         $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
462
463 # testing progs
464
465 imgresample-test: imgresample.c
466         $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
467
468 dct-test: dct-test.o fdctref.o $(LIB)
469         $(CC) -o $@ $^ -lm $(LIBAVUTIL)
470
471 motion-test: motion_test.o $(LIB)
472         $(CC) -o $@ $^ -lm
473
474 fft-test: fft-test.o $(LIB)
475         $(CC) -o $@ $^ $(LIBAVUTIL) -lm