2002-05-19 02:01:20 +03:00
|
|
|
#
|
|
|
|
# libavcodec Makefile
|
2005-03-06 02:43:55 +02:00
|
|
|
# (c) 2000-2005 Fabrice Bellard
|
2002-05-19 02:01:20 +03:00
|
|
|
#
|
2001-07-23 23:06:54 +03:00
|
|
|
include ../config.mak
|
|
|
|
|
2002-05-26 01:45:33 +03:00
|
|
|
# NOTE: -I.. is needed to include config.h
|
2005-08-01 23:07:05 +03:00
|
|
|
CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2004-12-29 19:50:25 +02:00
|
|
|
OBJS= bitstream.o utils.o mem.o allcodecs.o \
|
2003-01-29 14:00:11 +02:00
|
|
|
mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
|
2004-06-18 16:11:15 +03:00
|
|
|
mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \
|
2003-01-29 14:00:11 +02:00
|
|
|
motion_est.o imgconvert.o imgresample.o \
|
2003-07-27 02:21:30 +03:00
|
|
|
mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
|
2005-05-03 01:14:42 +03:00
|
|
|
ratecontrol.o adpcm.o eval.o error_resilience.o \
|
|
|
|
fft.o mdct.o raw.o golomb.o cabac.o\
|
2005-08-01 23:07:05 +03:00
|
|
|
dpcm.o adx.o faandct.o parser.o g726.o \
|
2005-11-15 00:17:29 +02:00
|
|
|
vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
|
2005-11-21 22:03:35 +02:00
|
|
|
opt.o
|
2005-06-03 16:59:38 +03:00
|
|
|
|
2006-03-21 00:48:08 +02:00
|
|
|
HEADERS = avcodec.h
|
2006-02-13 14:53:25 +02:00
|
|
|
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_AASC_DECODER),yes)
|
|
|
|
OBJS+= aasc.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ALAC_DECODER),yes)
|
|
|
|
OBJS+= alac.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),)
|
|
|
|
OBJS+= asv1.o
|
|
|
|
endif
|
2006-02-17 05:17:42 +02:00
|
|
|
ifeq ($(CONFIG_AVS_DECODER),yes)
|
|
|
|
OBJS+= avs.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_CINEPAK_DECODER),yes)
|
|
|
|
OBJS+= cinepak.o
|
|
|
|
endif
|
2005-12-09 18:08:18 +02:00
|
|
|
ifeq ($(CONFIG_COOK_DECODER),yes)
|
|
|
|
OBJS+= cook.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),)
|
|
|
|
OBJS+= cljr.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_CYUV_DECODER),yes)
|
|
|
|
OBJS+= cyuv.o
|
|
|
|
endif
|
2005-11-21 22:03:35 +02:00
|
|
|
ifeq ($(CONFIG_DVBSUB_DECODER),yes)
|
|
|
|
OBJS+= dvbsubdec.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DVBSUB_ENCODER),yes)
|
|
|
|
OBJS+= dvbsub.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DVDSUB_DECODER),yes)
|
|
|
|
OBJS+= dvdsub.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DVDSUB_ENCODER),yes)
|
|
|
|
OBJS+= dvdsubenc.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),)
|
|
|
|
OBJS+= dv.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_EIGHTBPS_DECODER),yes)
|
|
|
|
OBJS+= 8bps.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),)
|
|
|
|
OBJS+= ffv1.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FLAC_DECODER),yes)
|
|
|
|
OBJS+= flac.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FLIC_DECODER),yes)
|
|
|
|
OBJS+= flicvideo.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FOURXM_DECODER),yes)
|
|
|
|
OBJS+= 4xm.o
|
|
|
|
endif
|
2005-05-18 01:47:34 +03:00
|
|
|
ifeq ($(CONFIG_FRAPS_DECODER),yes)
|
|
|
|
OBJS+= fraps.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),)
|
|
|
|
OBJS+= h261.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),)
|
|
|
|
OBJS+= h264.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),)
|
|
|
|
OBJS+= huffyuv.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_IDCIN_DECODER),yes)
|
|
|
|
OBJS+= idcinvideo.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_INDEO2_DECODER),yes)
|
|
|
|
OBJS+= indeo2.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_INDEO3_DECODER),yes)
|
|
|
|
OBJS+= indeo3.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes)
|
|
|
|
OBJS+= interplayvideo.o
|
|
|
|
endif
|
2006-04-07 19:59:57 +03:00
|
|
|
ifeq ($(CONFIG_KMVC_DECODER),yes)
|
|
|
|
OBJS+= kmvc.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
|
|
|
|
OBJS+= lcl.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_LOCO_DECODER),yes)
|
|
|
|
OBJS+= loco.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),)
|
|
|
|
OBJS+= mace.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MSRLE_DECODER),yes)
|
|
|
|
OBJS+= msrle.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MSVIDEO1_DECODER),yes)
|
|
|
|
OBJS+= msvideo1.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),)
|
|
|
|
OBJS+= png.o
|
|
|
|
endif
|
2005-11-05 02:00:24 +02:00
|
|
|
ifeq ($(CONFIG_QDM2_DECODER),yes)
|
|
|
|
OBJS+= qdm2.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_QDRAW_DECODER),yes)
|
|
|
|
OBJS+= qdrw.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_QPEG_DECODER),yes)
|
|
|
|
OBJS+= qpeg.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_QTRLE_DECODER),yes)
|
|
|
|
OBJS+= qtrle.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RA_144_DECODER),yes)
|
|
|
|
OBJS+= ra144.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RA_288_DECODER),yes)
|
|
|
|
OBJS+= ra288.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ROQ_DECODER),yes)
|
|
|
|
OBJS+= roqvideo.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RPZA_DECODER),yes)
|
|
|
|
OBJS+= rpza.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),)
|
|
|
|
OBJS+= rv10.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SHORTEN_DECODER),yes)
|
|
|
|
OBJS+= shorten.o
|
|
|
|
endif
|
2006-03-21 19:27:47 +02:00
|
|
|
ifneq ($(CONFIG_SMACKER_DECODER)$(CONFIG_SMACKAUD_DECODER),)
|
|
|
|
OBJS+= smacker.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_SMC_DECODER),yes)
|
|
|
|
OBJS+= smc.o
|
|
|
|
endif
|
2005-05-11 00:02:20 +03:00
|
|
|
ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),)
|
2005-05-03 01:14:42 +03:00
|
|
|
OBJS+= snow.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),)
|
|
|
|
OBJS+= sonic.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),)
|
|
|
|
OBJS+= svq1.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes)
|
|
|
|
OBJS+= truemotion1.o
|
|
|
|
endif
|
2005-11-05 02:00:24 +02:00
|
|
|
ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes)
|
|
|
|
OBJS+= truemotion2.o
|
|
|
|
endif
|
2006-01-03 04:30:38 +02:00
|
|
|
ifeq ($(CONFIG_TRUESPEECH_DECODER),yes)
|
|
|
|
OBJS+= truespeech.o
|
|
|
|
endif
|
2006-02-12 04:15:19 +02:00
|
|
|
ifeq ($(CONFIG_TTA_DECODER),yes)
|
|
|
|
OBJS+= tta.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_TSCC_DECODER),yes)
|
|
|
|
OBJS+= tscc.o
|
|
|
|
endif
|
2006-01-09 17:41:39 +02:00
|
|
|
ifeq ($(CONFIG_CSCD_DECODER),yes)
|
|
|
|
OBJS+= cscd.o
|
2006-01-12 19:52:41 +02:00
|
|
|
OBJS+= lzo.o
|
2006-01-09 17:41:39 +02:00
|
|
|
endif
|
2006-03-28 01:22:50 +03:00
|
|
|
ifeq ($(CONFIG_NUV_DECODER),yes)
|
|
|
|
OBJS+= nuv.o
|
|
|
|
OBJS+= rtjpeg.o
|
|
|
|
OBJS+= lzo.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifeq ($(CONFIG_ULTI_DECODER),yes)
|
|
|
|
OBJS+= ulti.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),)
|
|
|
|
OBJS+= vc9.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
|
|
|
|
OBJS+= vcr1.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
|
|
|
|
OBJS+= vmdav.o
|
|
|
|
endif
|
2005-05-17 22:02:43 +03:00
|
|
|
ifeq ($(CONFIG_VORBIS_DECODER),yes)
|
|
|
|
OBJS+= vorbis.o
|
|
|
|
endif
|
2005-05-03 01:14:42 +03:00
|
|
|
ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
|
|
|
|
OBJS+= vp3.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_VQA_DECODER),yes)
|
|
|
|
OBJS+= vqavideo.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
|
|
|
|
OBJS+= wmadec.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_WNV1_DECODER),yes)
|
|
|
|
OBJS+= wnv1.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_WS_SND1_DECODER),yes)
|
|
|
|
OBJS+= ws-snd1.o
|
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
|
|
|
|
OBJS+= xan.o
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_XL_DECODER),yes)
|
|
|
|
OBJS+= xl.o
|
|
|
|
endif
|
2005-11-30 03:40:50 +02:00
|
|
|
ifeq ($(CONFIG_BMP_DECODER),yes)
|
|
|
|
OBJS+= bmp.o
|
|
|
|
endif
|
2006-02-12 08:49:40 +02:00
|
|
|
ifeq ($(CONFIG_MMVIDEO_DECODER),yes)
|
|
|
|
OBJS+= mmvideo.o
|
|
|
|
endif
|
2006-02-12 10:53:29 +02:00
|
|
|
ifeq ($(CONFIG_ZMBV_DECODER),yes)
|
|
|
|
OBJS+= zmbv.o
|
|
|
|
endif
|
2005-11-30 03:40:50 +02:00
|
|
|
|
2006-04-27 05:23:42 +03:00
|
|
|
|
2006-05-06 13:57:38 +03:00
|
|
|
ifeq ($(AMR),yes)
|
|
|
|
OBJS+= amr.o
|
|
|
|
endif
|
2006-04-27 05:23:42 +03:00
|
|
|
|
2003-05-14 14:40:16 +03:00
|
|
|
ifeq ($(AMR_NB),yes)
|
2006-04-27 05:33:27 +03:00
|
|
|
OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
|
|
|
|
endif
|
|
|
|
|
2003-06-05 17:30:52 +03:00
|
|
|
ifeq ($(AMR_NB_FIXED),yes)
|
2006-04-27 06:31:26 +03:00
|
|
|
EXTRAOBJS += amr/*.o
|
|
|
|
EXTRADEPS=amrlibs
|
2003-05-14 14:40:16 +03:00
|
|
|
endif
|
|
|
|
|
2006-04-27 05:23:42 +03:00
|
|
|
ifeq ($(AMR_WB),yes)
|
|
|
|
OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \
|
|
|
|
amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \
|
|
|
|
amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \
|
|
|
|
amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \
|
|
|
|
amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \
|
|
|
|
amrwb_float/enc_util.o amrwb_float/if_rom.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2004-02-13 19:54:10 +02:00
|
|
|
ifeq ($(HAVE_PTHREADS),yes)
|
|
|
|
OBJS+= pthread.o
|
|
|
|
endif
|
|
|
|
|
2004-02-19 22:29:26 +02:00
|
|
|
ifeq ($(HAVE_W32THREADS),yes)
|
|
|
|
OBJS+= w32thread.o
|
|
|
|
endif
|
|
|
|
|
2006-02-02 15:07:30 +02:00
|
|
|
ifeq ($(HAVE_OS2THREADS),yes)
|
|
|
|
OBJS+= os2thread.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2004-11-21 20:04:56 +02:00
|
|
|
ifeq ($(HAVE_BEOSTHREADS),yes)
|
|
|
|
OBJS+= beosthread.o
|
|
|
|
endif
|
|
|
|
|
2001-07-23 23:06:54 +03:00
|
|
|
ASM_OBJS=
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2003-07-27 02:21:30 +03:00
|
|
|
ifeq ($(HAVE_XVMC_ACCEL),yes)
|
|
|
|
OBJS+= xvmcvideo.o
|
|
|
|
endif
|
|
|
|
|
2002-04-22 22:57:45 +03:00
|
|
|
# currently using liba52 for ac3 decoding
|
2001-07-23 23:58:31 +03:00
|
|
|
ifeq ($(CONFIG_AC3),yes)
|
2002-04-22 22:57:45 +03:00
|
|
|
OBJS+= a52dec.o
|
|
|
|
|
|
|
|
# using builtin liba52 or runtime linked liba52.so.0
|
2002-05-26 01:45:33 +03:00
|
|
|
ifneq ($(CONFIG_A52BIN),yes)
|
2002-04-22 22:57:45 +03:00
|
|
|
OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
|
2003-04-16 23:04:20 +03:00
|
|
|
liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
|
2001-07-23 23:58:31 +03:00
|
|
|
endif
|
2002-05-26 01:45:33 +03:00
|
|
|
endif
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2006-04-15 18:05:53 +03:00
|
|
|
EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
|
2005-08-01 23:07:05 +03:00
|
|
|
|
2004-07-14 04:32:14 +03:00
|
|
|
# currently using libdts for dts decoding
|
|
|
|
ifeq ($(CONFIG_DTS),yes)
|
|
|
|
OBJS+= dtsdec.o
|
2005-10-23 21:16:53 +03:00
|
|
|
CFLAGS += $(DTS_INC)
|
2004-07-14 04:32:14 +03:00
|
|
|
endif
|
|
|
|
|
2003-05-12 13:55:19 +03:00
|
|
|
ifeq ($(CONFIG_FAAD),yes)
|
|
|
|
OBJS+= faad.o
|
|
|
|
endif
|
|
|
|
|
2003-10-04 12:53:34 +03:00
|
|
|
ifeq ($(CONFIG_FAAC),yes)
|
|
|
|
OBJS+= faac.o
|
|
|
|
endif
|
|
|
|
|
2004-07-16 22:48:30 +03:00
|
|
|
ifeq ($(CONFIG_XVID),yes)
|
|
|
|
OBJS+= xvidff.o
|
2006-01-24 23:57:26 +02:00
|
|
|
OBJS+= xvid_rc.o
|
2004-07-16 22:48:30 +03:00
|
|
|
endif
|
|
|
|
|
2005-03-09 05:04:56 +02:00
|
|
|
ifeq ($(CONFIG_X264),yes)
|
|
|
|
OBJS+= x264.o
|
|
|
|
endif
|
|
|
|
|
2002-03-10 16:51:20 +02:00
|
|
|
ifeq ($(CONFIG_MP3LAME),yes)
|
|
|
|
OBJS += mp3lameaudio.o
|
|
|
|
endif
|
|
|
|
|
2005-02-24 17:18:02 +02:00
|
|
|
ifeq ($(CONFIG_LIBOGG),yes)
|
|
|
|
ifeq ($(CONFIG_LIBVORBIS),yes)
|
2002-09-01 21:07:56 +03:00
|
|
|
OBJS += oggvorbis.o
|
|
|
|
endif
|
2005-02-24 17:18:02 +02:00
|
|
|
ifeq ($(CONFIG_LIBTHEORA), yes)
|
|
|
|
OBJS += oggtheora.o
|
|
|
|
endif
|
|
|
|
endif
|
2002-09-01 21:07:56 +03:00
|
|
|
|
2005-05-23 02:39:11 +03:00
|
|
|
ifeq ($(CONFIG_LIBGSM),yes)
|
|
|
|
OBJS += libgsm.o
|
|
|
|
endif
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
# i386 mmx specific stuff
|
2001-07-23 23:06:54 +03:00
|
|
|
ifeq ($(TARGET_MMX),yes)
|
2001-08-16 01:30:51 +03:00
|
|
|
OBJS += i386/fdct_mmx.o i386/cputest.o \
|
2001-08-08 01:42:22 +03:00
|
|
|
i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
|
2002-04-22 22:57:45 +03:00
|
|
|
i386/idct_mmx.o i386/motion_est_mmx.o \
|
2004-04-25 06:33:30 +03:00
|
|
|
i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
|
2006-03-21 00:27:59 +02:00
|
|
|
i386/vp3dsp_sse2.o i386/fft_3dn.o i386/fft_3dn2.o i386/snowdsp_mmx.o
|
2005-09-10 20:01:30 +03:00
|
|
|
ifeq ($(CONFIG_GPL),yes)
|
|
|
|
OBJS += i386/idct_mmx_xvid.o
|
|
|
|
endif
|
2003-01-22 11:35:03 +02:00
|
|
|
ifdef TARGET_BUILTIN_VECTOR
|
|
|
|
i386/fft_sse.o: CFLAGS+= -msse
|
2004-03-09 14:18:40 +02:00
|
|
|
depend: CFLAGS+= -msse
|
2003-01-22 11:35:03 +02:00
|
|
|
endif
|
2006-03-08 06:13:55 +02:00
|
|
|
ifdef TARGET_BUILTIN_3DNOW
|
|
|
|
i386/fft_3dn.o: CFLAGS+= -m3dnow
|
2006-05-15 01:00:03 +03:00
|
|
|
i386/fft_3dn2.o: CFLAGS+= -m3dnow
|
2006-03-08 06:13:55 +02:00
|
|
|
endif
|
2001-07-22 17:18:56 +03:00
|
|
|
endif
|
|
|
|
|
2001-08-14 00:45:36 +03:00
|
|
|
# armv4l specific stuff
|
|
|
|
ifeq ($(TARGET_ARCH_ARMV4L),yes)
|
2005-05-26 17:32:46 +03:00
|
|
|
ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
|
2002-10-06 18:27:01 +03:00
|
|
|
OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
|
2005-05-26 17:32:46 +03:00
|
|
|
ifeq ($(TARGET_IWMMXT),yes)
|
|
|
|
OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
|
|
|
|
endif
|
2001-08-14 00:45:36 +03:00
|
|
|
endif
|
|
|
|
|
2001-09-17 00:54:00 +03:00
|
|
|
# sun mediaLib specific stuff
|
|
|
|
# currently only works when libavcodec is used in mplayer
|
|
|
|
ifeq ($(HAVE_MLIB),yes)
|
|
|
|
OBJS += mlib/dsputil_mlib.o
|
|
|
|
CFLAGS += $(MLIB_INC)
|
|
|
|
endif
|
|
|
|
|
2005-05-26 17:32:46 +03:00
|
|
|
# Intel IPP specific stuff
|
|
|
|
# currently only works when libavcodec is used in mplayer
|
|
|
|
ifeq ($(HAVE_IPP),yes)
|
|
|
|
CFLAGS += $(IPP_INC)
|
|
|
|
endif
|
|
|
|
|
2002-01-20 16:48:02 +02:00
|
|
|
# alpha specific stuff
|
|
|
|
ifeq ($(TARGET_ARCH_ALPHA),yes)
|
2002-10-12 02:01:16 +03:00
|
|
|
OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
|
|
|
|
alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
|
2002-09-29 18:14:28 +03:00
|
|
|
ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
|
2005-03-06 16:42:10 +02:00
|
|
|
CFLAGS += -fforce-addr
|
2002-01-20 16:48:02 +02:00
|
|
|
endif
|
|
|
|
|
2002-08-28 16:14:36 +03:00
|
|
|
ifeq ($(TARGET_ARCH_POWERPC),yes)
|
2002-11-02 13:28:08 +02:00
|
|
|
OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
|
2002-09-02 11:48:12 +03:00
|
|
|
endif
|
|
|
|
|
2002-09-23 11:44:24 +03:00
|
|
|
ifeq ($(TARGET_MMI),yes)
|
2002-10-03 23:57:19 +03:00
|
|
|
OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
|
2002-09-23 11:44:24 +03:00
|
|
|
endif
|
|
|
|
|
2002-09-02 11:48:12 +03:00
|
|
|
ifeq ($(TARGET_ALTIVEC),yes)
|
2003-01-07 20:15:48 +02:00
|
|
|
OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
|
2004-09-16 22:05:22 +03:00
|
|
|
ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
|
2006-03-27 15:51:19 +03:00
|
|
|
ppc/dsputil_h264_altivec.o ppc/dsputil_snow_altivec.o
|
2002-08-28 16:14:36 +03:00
|
|
|
endif
|
|
|
|
|
2003-05-14 15:18:49 +03:00
|
|
|
ifeq ($(TARGET_ARCH_SH4),yes)
|
|
|
|
OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
|
|
|
|
endif
|
|
|
|
|
2004-04-24 18:16:23 +03:00
|
|
|
ifeq ($(TARGET_ARCH_SPARC),yes)
|
2004-04-24 02:38:54 +03:00
|
|
|
OBJS+=sparc/dsputil_vis.o
|
2004-04-24 18:16:23 +03:00
|
|
|
sparc/%.o: sparc/%.c
|
2005-12-17 20:14:38 +02:00
|
|
|
$(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
|
2004-04-24 18:16:23 +03:00
|
|
|
endif
|
2001-07-23 23:06:54 +03:00
|
|
|
|
2006-01-14 17:54:58 +02:00
|
|
|
NAME=avcodec
|
2006-02-13 14:53:25 +02:00
|
|
|
SUBDIR=libavcodec
|
2005-08-01 23:07:05 +03:00
|
|
|
LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
|
2001-10-27 15:04:27 +03:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2006-01-14 05:39:02 +02:00
|
|
|
LIBVERSION=$(LAVCVERSION)
|
|
|
|
LIBMAJOR=$(LAVCMAJOR)
|
2001-10-27 15:04:27 +03:00
|
|
|
endif
|
2002-10-28 02:51:48 +02:00
|
|
|
TESTS= imgresample-test dct-test motion-test fft-test
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2006-02-13 14:53:25 +02:00
|
|
|
include $(SRC_PATH)/common.mak
|
|
|
|
|
2003-06-05 17:30:52 +03:00
|
|
|
amrlibs:
|
|
|
|
$(MAKE) -C amr spclib fipoplib
|
|
|
|
|
2001-08-08 19:26:51 +03:00
|
|
|
tests: apiexample cpuid_test $(TESTS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
|
|
|
dsputil.o: dsputil.c dsputil.h
|
|
|
|
|
2006-05-05 12:41:06 +03:00
|
|
|
clean::
|
2006-02-13 14:53:25 +02:00
|
|
|
rm -f \
|
2006-01-16 16:59:54 +02:00
|
|
|
i386/*.o i386/*~ \
|
2001-08-14 00:45:36 +03:00
|
|
|
armv4l/*.o armv4l/*~ \
|
2001-09-17 00:54:00 +03:00
|
|
|
mlib/*.o mlib/*~ \
|
2002-01-20 16:48:02 +02:00
|
|
|
alpha/*.o alpha/*~ \
|
2002-08-28 16:14:36 +03:00
|
|
|
ppc/*.o ppc/*~ \
|
2002-09-23 11:44:24 +03:00
|
|
|
ps2/*.o ps2/*~ \
|
2003-05-14 15:18:49 +03:00
|
|
|
sh4/*.o sh4/*~ \
|
2004-04-24 18:16:23 +03:00
|
|
|
sparc/*.o sparc/*~ \
|
2002-04-22 22:57:45 +03:00
|
|
|
liba52/*.o liba52/*~ \
|
2006-05-05 12:41:06 +03:00
|
|
|
amr_float/*.o \
|
2002-04-22 22:57:45 +03:00
|
|
|
apiexample $(TESTS)
|
2006-05-05 13:27:44 +03:00
|
|
|
-$(MAKE) -C amr clean
|
|
|
|
-$(MAKE) -C amrwb_float -f makefile.gcc clean
|
2003-09-28 23:34:11 +03:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
# api example program
|
|
|
|
apiexample: apiexample.c $(LIB)
|
2006-03-29 13:59:09 +03:00
|
|
|
$(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2001-08-08 19:26:51 +03:00
|
|
|
# cpuid test
|
|
|
|
cpuid_test: i386/cputest.c
|
|
|
|
$(CC) $(CFLAGS) -D__TEST__ -o $@ $<
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
# testing progs
|
|
|
|
|
|
|
|
imgresample-test: imgresample.c
|
2002-09-05 11:48:34 +03:00
|
|
|
$(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2003-01-08 01:47:09 +02:00
|
|
|
dct-test: dct-test.o fdctref.o $(LIB)
|
2005-09-11 02:00:13 +03:00
|
|
|
$(CC) -o $@ $^ -lm $(LIBAVUTIL)
|
2001-07-23 23:58:31 +03:00
|
|
|
|
2001-08-16 01:30:51 +03:00
|
|
|
motion-test: motion_test.o $(LIB)
|
2002-09-05 11:48:34 +03:00
|
|
|
$(CC) -o $@ $^ -lm
|
2001-08-16 01:30:51 +03:00
|
|
|
|
2003-01-07 19:48:14 +02:00
|
|
|
fft-test: fft-test.o $(LIB)
|
2005-08-01 23:07:05 +03:00
|
|
|
$(CC) -o $@ $^ $(LIBAVUTIL) -lm
|