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