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