2002-05-19 01:01:20 +02:00
|
|
|
#
|
|
|
|
# libavcodec Makefile
|
2003-09-16 22:28:53 +02:00
|
|
|
# (c) 2000-2003 Fabrice Bellard
|
2002-05-19 01:01:20 +02:00
|
|
|
#
|
2001-07-23 22:06:54 +02:00
|
|
|
include ../config.mak
|
|
|
|
|
2002-05-19 01:01:20 +02:00
|
|
|
VPATH=$(SRC_PATH)/libavcodec
|
|
|
|
|
2002-05-26 00:45:33 +02:00
|
|
|
# NOTE: -I.. is needed to include config.h
|
2003-10-18 20:47:06 +02:00
|
|
|
CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2002-06-11 15:39:47 +02:00
|
|
|
OBJS= common.o utils.o mem.o allcodecs.o \
|
2003-01-29 13:00:11 +01:00
|
|
|
mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
|
2004-06-18 15:11:15 +02:00
|
|
|
mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \
|
2003-01-29 13:00:11 +01:00
|
|
|
motion_est.o imgconvert.o imgresample.o \
|
2003-07-27 01:21:30 +02:00
|
|
|
mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
|
2002-10-28 01:51:48 +01:00
|
|
|
ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \
|
2003-05-05 04:54:15 +02:00
|
|
|
fft.o mdct.o mace.o huffyuv.o cyuv.o opts.o raw.o h264.o golomb.o \
|
2003-09-02 06:32:02 +02:00
|
|
|
vp3.o asv1.o 4xm.o cabac.o ffv1.o ra144.o ra288.o vcr1.o cljr.o \
|
2003-10-01 06:39:38 +02:00
|
|
|
roqvideo.o dpcm.o interplayvideo.o xan.o rpza.o cinepak.o msrle.o \
|
2003-11-10 04:14:04 +01:00
|
|
|
msvideo1.o vqavideo.o idcinvideo.o adx.o rational.o faandct.o 8bps.o \
|
2004-02-18 02:49:30 +01:00
|
|
|
smc.o parser.o flicvideo.o truemotion1.o vmdav.o lcl.o qtrle.o g726.o \
|
2004-07-26 01:36:44 +02:00
|
|
|
flac.o vp3dsp.o integer.o snow.o
|
2003-05-14 13:40:16 +02:00
|
|
|
|
|
|
|
ifeq ($(AMR_NB),yes)
|
2003-06-05 16:30:52 +02:00
|
|
|
ifeq ($(AMR_NB_FIXED),yes)
|
2003-05-14 13:40:16 +02:00
|
|
|
OBJS+= amr.o
|
2003-06-05 16:30:52 +02:00
|
|
|
AMREXTRALIBS+= amr/*.o
|
|
|
|
AMRLIBS=amrlibs
|
|
|
|
CLEANAMR=cleanamr
|
|
|
|
else
|
|
|
|
OBJS+= amr.o amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
|
|
|
|
CLEANAMR=cleanamrfloat
|
|
|
|
endif
|
2003-05-14 13:40:16 +02:00
|
|
|
endif
|
|
|
|
|
2004-02-13 18:54:10 +01:00
|
|
|
ifeq ($(HAVE_PTHREADS),yes)
|
|
|
|
OBJS+= pthread.o
|
|
|
|
endif
|
|
|
|
|
2004-02-19 21:29:26 +01:00
|
|
|
ifeq ($(HAVE_W32THREADS),yes)
|
|
|
|
OBJS+= w32thread.o
|
|
|
|
endif
|
|
|
|
|
2003-09-28 22:34:11 +02:00
|
|
|
ifeq ($(AMR_WB),yes)
|
|
|
|
OBJS+= amr.o 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
|
|
|
|
CLEANAMRWB=cleanamrwbfloat
|
2001-07-23 22:06:54 +02:00
|
|
|
ASM_OBJS=
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2003-01-29 13:00:11 +01:00
|
|
|
# codecs which are patented in some non free countries like the us
|
|
|
|
ifeq ($(CONFIG_RISKY),yes)
|
2004-05-30 22:37:15 +02:00
|
|
|
OBJS+= h263.o h261.o msmpeg4.o h263dec.o svq1.o rv10.o wmadec.o indeo3.o
|
2003-01-29 13:00:11 +01:00
|
|
|
endif
|
|
|
|
|
2003-07-27 01:21:30 +02:00
|
|
|
ifeq ($(HAVE_XVMC_ACCEL),yes)
|
|
|
|
OBJS+= xvmcvideo.o
|
|
|
|
endif
|
|
|
|
|
2002-04-22 21:57:45 +02:00
|
|
|
# currently using liba52 for ac3 decoding
|
2001-07-23 22:58:31 +02:00
|
|
|
ifeq ($(CONFIG_AC3),yes)
|
2002-04-22 21:57:45 +02:00
|
|
|
OBJS+= a52dec.o
|
|
|
|
|
|
|
|
# using builtin liba52 or runtime linked liba52.so.0
|
2002-05-26 00:45:33 +02:00
|
|
|
ifneq ($(CONFIG_A52BIN),yes)
|
2002-04-22 21:57:45 +02:00
|
|
|
OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
|
2003-04-16 22:04:20 +02:00
|
|
|
liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
|
2001-07-23 22:58:31 +02:00
|
|
|
endif
|
2002-05-26 00:45:33 +02:00
|
|
|
endif
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2004-07-14 03:32:14 +02:00
|
|
|
# currently using libdts for dts decoding
|
|
|
|
ifeq ($(CONFIG_DTS),yes)
|
|
|
|
OBJS+= dtsdec.o
|
|
|
|
endif
|
|
|
|
|
2003-05-12 12:55:19 +02:00
|
|
|
ifeq ($(CONFIG_FAAD),yes)
|
|
|
|
OBJS+= faad.o
|
2003-05-12 14:32:33 +02:00
|
|
|
ifeq ($(CONFIG_FAADBIN),yes)
|
|
|
|
# no libs needed
|
|
|
|
else
|
|
|
|
EXTRALIBS += -lfaad
|
|
|
|
endif
|
2003-05-12 12:55:19 +02:00
|
|
|
endif
|
|
|
|
|
2003-10-04 11:53:34 +02:00
|
|
|
ifeq ($(CONFIG_FAAC),yes)
|
|
|
|
OBJS+= faac.o
|
|
|
|
EXTRALIBS += -lfaac
|
|
|
|
endif
|
|
|
|
|
2004-07-16 21:48:30 +02:00
|
|
|
ifeq ($(CONFIG_XVID),yes)
|
|
|
|
OBJS+= xvidff.o
|
|
|
|
EXTRALIBS += -lxvidcore
|
|
|
|
endif
|
|
|
|
|
2003-02-14 22:27:25 +01:00
|
|
|
ifeq ($(CONFIG_PP),yes)
|
|
|
|
ifeq ($(SHARED_PP),yes)
|
|
|
|
EXTRALIBS += -lpostproc
|
|
|
|
else
|
|
|
|
# LIBS += libpostproc/libpostproc.a ... should be fixed
|
|
|
|
OBJS += libpostproc/postprocess.o
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-03-10 15:51:20 +01:00
|
|
|
ifeq ($(CONFIG_MP3LAME),yes)
|
|
|
|
OBJS += mp3lameaudio.o
|
2002-05-01 15:27:40 +02:00
|
|
|
EXTRALIBS += -lmp3lame
|
2002-03-10 15:51:20 +01:00
|
|
|
endif
|
|
|
|
|
2002-09-01 20:07:56 +02:00
|
|
|
ifeq ($(CONFIG_VORBIS),yes)
|
|
|
|
OBJS += oggvorbis.o
|
|
|
|
EXTRALIBS += -lvorbis -lvorbisenc
|
|
|
|
endif
|
|
|
|
|
2002-02-26 23:14:27 +01:00
|
|
|
ifeq ($(TARGET_GPROF),yes)
|
|
|
|
CFLAGS+=-p
|
|
|
|
LDFLAGS+=-p
|
|
|
|
endif
|
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
# i386 mmx specific stuff
|
2001-07-23 22:06:54 +02:00
|
|
|
ifeq ($(TARGET_MMX),yes)
|
2001-08-16 00:30:51 +02:00
|
|
|
OBJS += i386/fdct_mmx.o i386/cputest.o \
|
2001-08-08 00:42:22 +02:00
|
|
|
i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
|
2002-04-22 21:57:45 +02:00
|
|
|
i386/idct_mmx.o i386/motion_est_mmx.o \
|
2004-04-25 05:33:30 +02:00
|
|
|
i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
|
|
|
|
i386/vp3dsp_sse2.o
|
2003-01-22 10:35:03 +01:00
|
|
|
ifdef TARGET_BUILTIN_VECTOR
|
|
|
|
i386/fft_sse.o: CFLAGS+= -msse
|
2004-03-09 13:18:40 +01:00
|
|
|
depend: CFLAGS+= -msse
|
2003-01-22 10:35:03 +01:00
|
|
|
endif
|
2001-07-22 16:18:56 +02:00
|
|
|
endif
|
|
|
|
|
2001-08-13 23:45:36 +02:00
|
|
|
# armv4l specific stuff
|
|
|
|
ifeq ($(TARGET_ARCH_ARMV4L),yes)
|
2003-07-07 13:19:18 +02:00
|
|
|
ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o
|
2002-10-06 17:27:01 +02:00
|
|
|
OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
|
2001-08-13 23:45:36 +02:00
|
|
|
endif
|
|
|
|
|
2001-09-16 23:54:00 +02: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
|
|
|
|
|
2002-01-20 15:48:02 +01:00
|
|
|
# alpha specific stuff
|
|
|
|
ifeq ($(TARGET_ARCH_ALPHA),yes)
|
2002-10-12 01:01:16 +02:00
|
|
|
OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
|
|
|
|
alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
|
2002-09-29 17:14:28 +02:00
|
|
|
ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
|
2002-09-19 18:06:25 +02:00
|
|
|
CFLAGS += -fforce-addr -freduce-all-givs
|
2002-01-20 15:48:02 +01:00
|
|
|
endif
|
|
|
|
|
2002-08-28 15:14:36 +02:00
|
|
|
ifeq ($(TARGET_ARCH_POWERPC),yes)
|
2002-11-02 12:28:08 +01:00
|
|
|
OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
|
2002-09-02 10:48:12 +02:00
|
|
|
endif
|
|
|
|
|
2002-09-23 10:44:24 +02:00
|
|
|
ifeq ($(TARGET_MMI),yes)
|
2002-10-03 22:57:19 +02:00
|
|
|
OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
|
2002-09-23 10:44:24 +02:00
|
|
|
endif
|
|
|
|
|
2002-09-02 10:48:12 +02:00
|
|
|
ifeq ($(TARGET_ALTIVEC),yes)
|
2003-01-07 19:15:48 +01:00
|
|
|
OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
|
2003-10-26 11:14:05 +01:00
|
|
|
ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o
|
2002-08-28 15:14:36 +02:00
|
|
|
endif
|
|
|
|
|
2003-05-14 14:18:49 +02:00
|
|
|
ifeq ($(TARGET_ARCH_SH4),yes)
|
|
|
|
OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
|
|
|
|
endif
|
|
|
|
|
2004-04-24 17:16:23 +02:00
|
|
|
ifeq ($(TARGET_ARCH_SPARC),yes)
|
2004-04-24 01:38:54 +02:00
|
|
|
OBJS+=sparc/dsputil_vis.o
|
2004-04-24 17:16:23 +02:00
|
|
|
sparc/%.o: sparc/%.c
|
|
|
|
$(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
|
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_ARCH_SPARC64),yes)
|
2004-04-24 01:38:54 +02:00
|
|
|
CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
|
|
|
|
endif
|
|
|
|
|
2002-07-01 06:26:07 +02:00
|
|
|
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
|
2002-05-26 00:45:33 +02:00
|
|
|
OBJS := $(OBJS) $(ASM_OBJS)
|
2001-07-23 22:06:54 +02:00
|
|
|
|
2003-01-11 21:34:38 +01:00
|
|
|
LIB= $(LIBPREF)avcodec$(LIBSUF)
|
2001-10-27 14:04:27 +02:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2003-01-11 21:34:38 +01:00
|
|
|
SLIB= $(SLIBPREF)avcodec$(SLIBSUF)
|
2001-10-27 14:04:27 +02:00
|
|
|
endif
|
2002-10-28 01:51:48 +01:00
|
|
|
TESTS= imgresample-test dct-test motion-test fft-test
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2001-10-27 14:04:27 +02:00
|
|
|
all: $(LIB) $(SLIB)
|
2002-05-26 00:45:33 +02:00
|
|
|
|
2003-06-05 16:30:52 +02:00
|
|
|
amrlibs:
|
|
|
|
$(MAKE) -C amr spclib fipoplib
|
|
|
|
|
2001-08-08 18:26:51 +02:00
|
|
|
tests: apiexample cpuid_test $(TESTS)
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2003-06-05 16:30:52 +02:00
|
|
|
$(LIB): $(OBJS) $(AMRLIBS)
|
2001-07-22 16:18:56 +02:00
|
|
|
rm -f $@
|
2003-06-05 16:30:52 +02:00
|
|
|
$(AR) rc $@ $(OBJS) $(AMREXTRALIBS)
|
2002-09-02 18:48:40 +02:00
|
|
|
$(RANLIB) $@
|
2002-05-26 00:45:33 +02:00
|
|
|
|
2003-02-01 21:57:37 +01:00
|
|
|
$(SLIB): $(OBJS)
|
2003-09-16 22:28:53 +02:00
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
|
|
|
$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
|
|
|
|
-lib /machine:i386 /def:$(@:.dll=.def)
|
|
|
|
else
|
2004-04-09 16:57:39 +02:00
|
|
|
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(LDFLAGS)
|
2003-09-16 22:28:53 +02:00
|
|
|
endif
|
2001-07-22 16:18:56 +02:00
|
|
|
|
|
|
|
dsputil.o: dsputil.c dsputil.h
|
|
|
|
|
2003-02-14 22:27:25 +01:00
|
|
|
libpostproc/libpostproc.a:
|
|
|
|
$(MAKE) -C libpostproc
|
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2001-08-13 23:45:36 +02:00
|
|
|
%.o: %.S
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2003-02-01 21:57:37 +01:00
|
|
|
depend: $(SRCS)
|
2003-01-22 10:35:03 +01:00
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
2003-01-17 23:40:00 +01:00
|
|
|
|
2001-07-23 22:06:54 +02:00
|
|
|
dep: depend
|
|
|
|
|
2003-06-05 16:30:52 +02:00
|
|
|
clean: $(CLEANAMR)
|
2003-01-14 16:30:42 +01:00
|
|
|
rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
|
2001-08-13 23:45:36 +02:00
|
|
|
armv4l/*.o armv4l/*~ \
|
2001-09-16 23:54:00 +02:00
|
|
|
mlib/*.o mlib/*~ \
|
2002-01-20 15:48:02 +01:00
|
|
|
alpha/*.o alpha/*~ \
|
2002-08-28 15:14:36 +02:00
|
|
|
ppc/*.o ppc/*~ \
|
2002-09-23 10:44:24 +02:00
|
|
|
ps2/*.o ps2/*~ \
|
2003-05-14 14:18:49 +02:00
|
|
|
sh4/*.o sh4/*~ \
|
2004-04-24 17:16:23 +02:00
|
|
|
sparc/*.o sparc/*~ \
|
2002-04-22 21:57:45 +02:00
|
|
|
liba52/*.o liba52/*~ \
|
|
|
|
apiexample $(TESTS)
|
2003-02-18 20:10:57 +01:00
|
|
|
$(MAKE) -C libpostproc clean
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2002-06-08 00:01:03 +02:00
|
|
|
distclean: clean
|
2001-07-23 22:06:54 +02:00
|
|
|
rm -f Makefile.bak .depend
|
|
|
|
|
2003-06-05 16:30:52 +02:00
|
|
|
cleanamr:
|
|
|
|
$(MAKE) -C amr clean
|
|
|
|
|
|
|
|
cleanamrfloat:
|
|
|
|
rm -f amr_float/*.o
|
|
|
|
|
2003-09-28 22:34:11 +02:00
|
|
|
cleanamrwbfloat:
|
|
|
|
$(MAKE) -C amrwb_float -f makefile.gcc clean
|
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
# api example program
|
|
|
|
apiexample: apiexample.c $(LIB)
|
2002-09-05 12:06:20 +02:00
|
|
|
$(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2001-08-08 18:26:51 +02:00
|
|
|
# cpuid test
|
|
|
|
cpuid_test: i386/cputest.c
|
|
|
|
$(CC) $(CFLAGS) -D__TEST__ -o $@ $<
|
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
# testing progs
|
|
|
|
|
|
|
|
imgresample-test: imgresample.c
|
2002-09-05 10:48:34 +02:00
|
|
|
$(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2003-01-08 00:47:09 +01:00
|
|
|
dct-test: dct-test.o fdctref.o $(LIB)
|
2002-08-21 21:18:02 +02:00
|
|
|
$(CC) -o $@ $^ -lm
|
2001-07-23 22:58:31 +02:00
|
|
|
|
2001-08-16 00:30:51 +02:00
|
|
|
motion-test: motion_test.o $(LIB)
|
2002-09-05 10:48:34 +02:00
|
|
|
$(CC) -o $@ $^ -lm
|
2001-08-16 00:30:51 +02:00
|
|
|
|
2003-01-07 18:48:14 +01:00
|
|
|
fft-test: fft-test.o $(LIB)
|
2002-10-28 01:51:48 +01:00
|
|
|
$(CC) -o $@ $^ -lm
|
|
|
|
|
2001-10-27 14:04:27 +02:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2003-09-16 00:27:43 +02:00
|
|
|
install: all install-headers
|
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
|
|
|
install -s -m 755 $(SLIB) "$(prefix)"
|
|
|
|
else
|
2002-08-13 20:51:11 +02:00
|
|
|
install -d $(prefix)/lib
|
2002-05-26 00:45:33 +02:00
|
|
|
install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so
|
2002-08-13 20:51:11 +02:00
|
|
|
ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so
|
|
|
|
ldconfig || true
|
2003-09-16 00:27:43 +02:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
install:
|
2001-10-27 14:04:27 +02:00
|
|
|
endif
|
2002-06-11 15:39:47 +02:00
|
|
|
|
2003-09-16 00:27:43 +02:00
|
|
|
installlib: all install-headers
|
2002-06-11 15:39:47 +02:00
|
|
|
install -m 644 $(LIB) $(prefix)/lib
|
2003-09-16 00:27:43 +02:00
|
|
|
|
|
|
|
install-headers:
|
|
|
|
mkdir -p "$(prefix)/include/ffmpeg"
|
2003-10-24 21:59:43 +02:00
|
|
|
install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \
|
|
|
|
$(SRC_PATH)/libavcodec/common.h \
|
|
|
|
$(SRC_PATH)/libavcodec/rational.h \
|
2003-09-16 00:27:43 +02:00
|
|
|
"$(prefix)/include/ffmpeg"
|
2002-06-11 15:39:47 +02:00
|
|
|
|
2001-07-23 22:58:31 +02:00
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|