2002-05-19 02:01:20 +03:00
|
|
|
#
|
|
|
|
# libavcodec Makefile
|
2002-05-26 01:45:33 +03:00
|
|
|
# (c) 2000, 2001, 2002 Fabrice Bellard
|
2002-05-19 02:01:20 +03:00
|
|
|
#
|
2001-07-23 23:06:54 +03:00
|
|
|
include ../config.mak
|
|
|
|
|
2002-05-19 02:01:20 +03:00
|
|
|
VPATH=$(SRC_PATH)/libavcodec
|
|
|
|
|
2002-05-26 01:45:33 +03:00
|
|
|
# NOTE: -I.. is needed to include config.h
|
2002-07-18 23:27:09 +03:00
|
|
|
CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
|
2001-07-22 17:18:56 +03:00
|
|
|
LDFLAGS= -g
|
|
|
|
|
2002-06-11 16:39:47 +03:00
|
|
|
OBJS= common.o utils.o mem.o allcodecs.o \
|
2002-08-30 02:55:32 +03:00
|
|
|
mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\
|
2001-08-06 03:44:48 +03:00
|
|
|
mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
|
2001-07-22 17:18:56 +03:00
|
|
|
motion_est.o imgconvert.o imgresample.o msmpeg4.o \
|
2002-07-09 19:08:43 +03:00
|
|
|
mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \
|
2002-08-26 00:19:50 +03:00
|
|
|
ratecontrol.o adpcm.o eval.o
|
2001-07-23 23:06:54 +03:00
|
|
|
ASM_OBJS=
|
2001-07-22 17:18:56 +03:00
|
|
|
|
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 \
|
|
|
|
liba52/imdct.o liba52/parse.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
|
|
|
|
2002-03-10 16:51:20 +02:00
|
|
|
ifeq ($(CONFIG_MP3LAME),yes)
|
|
|
|
OBJS += mp3lameaudio.o
|
2002-05-01 16:27:40 +03:00
|
|
|
EXTRALIBS += -lmp3lame
|
2002-03-10 16:51:20 +02:00
|
|
|
endif
|
|
|
|
|
2002-09-01 21:07:56 +03:00
|
|
|
ifeq ($(CONFIG_VORBIS),yes)
|
|
|
|
OBJS += oggvorbis.o
|
|
|
|
EXTRALIBS += -lvorbis -lvorbisenc
|
|
|
|
endif
|
|
|
|
|
2002-02-27 00:14:27 +02:00
|
|
|
ifeq ($(TARGET_GPROF),yes)
|
|
|
|
CFLAGS+=-p
|
|
|
|
LDFLAGS+=-p
|
|
|
|
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 \
|
2001-12-09 14:04:09 +02:00
|
|
|
i386/simple_idct_mmx.o
|
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)
|
|
|
|
ASM_OBJS += armv4l/jrevdct_arm.o
|
|
|
|
OBJS += armv4l/dsputil_arm.o
|
|
|
|
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
|
|
|
|
|
2002-01-20 16:48:02 +02:00
|
|
|
# alpha specific stuff
|
|
|
|
ifeq ($(TARGET_ARCH_ALPHA),yes)
|
2002-07-30 02:14:51 +03:00
|
|
|
OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o alpha/motion_est_alpha.o
|
2002-07-01 07:26:07 +03:00
|
|
|
ASM_OBJS += alpha/dsputil_alpha_asm.o
|
2002-07-11 18:55:19 +03:00
|
|
|
CFLAGS += -Wa,-mpca56 -finline-limit=8000 -fforce-addr -freduce-all-givs
|
2002-01-20 16:48:02 +02:00
|
|
|
endif
|
|
|
|
|
2002-08-28 16:14:36 +03:00
|
|
|
ifeq ($(TARGET_ARCH_POWERPC),yes)
|
2002-09-02 11:48:12 +03:00
|
|
|
OBJS += ppc/dsputil_ppc.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_ALTIVEC),yes)
|
2002-08-28 16:14:36 +03:00
|
|
|
CFLAGS += -faltivec
|
|
|
|
OBJS += ppc/dsputil_altivec.o
|
|
|
|
endif
|
|
|
|
|
2002-07-01 07:26:07 +03:00
|
|
|
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
|
2002-05-26 01:45:33 +03:00
|
|
|
OBJS := $(OBJS) $(ASM_OBJS)
|
2001-07-23 23:06:54 +03:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
LIB= libavcodec.a
|
2001-10-27 15:04:27 +03:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2002-05-26 01:45:33 +03:00
|
|
|
SLIB= libavcodec.so
|
2001-10-27 15:04:27 +03:00
|
|
|
endif
|
2001-08-16 01:30:51 +03:00
|
|
|
TESTS= imgresample-test dct-test motion-test
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2001-10-27 15:04:27 +03:00
|
|
|
all: $(LIB) $(SLIB)
|
2002-05-26 01:45:33 +03:00
|
|
|
|
2001-08-08 19:26:51 +03:00
|
|
|
tests: apiexample cpuid_test $(TESTS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2002-05-26 01:45:33 +03:00
|
|
|
$(LIB): $(OBJS)
|
2001-07-22 17:18:56 +03:00
|
|
|
rm -f $@
|
2002-09-02 19:48:40 +03:00
|
|
|
$(AR) rc $@ $(OBJS)
|
|
|
|
$(RANLIB) $@
|
2002-05-26 01:45:33 +03:00
|
|
|
|
|
|
|
$(SLIB): $(OBJS)
|
2002-07-20 01:23:40 +03:00
|
|
|
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
|
|
|
dsputil.o: dsputil.c dsputil.h
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2001-08-14 00:45:36 +03:00
|
|
|
%.o: %.S
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2001-07-23 23:06:54 +03:00
|
|
|
# depend only used by mplayer now
|
|
|
|
dep: depend
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
clean:
|
2002-04-26 10:18:57 +03:00
|
|
|
rm -f *.o *~ .depend $(LIB) $(SLIB) *.so 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-04-22 22:57:45 +03:00
|
|
|
liba52/*.o liba52/*~ \
|
|
|
|
apiexample $(TESTS)
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2002-06-08 01:01:03 +03:00
|
|
|
distclean: clean
|
2001-07-23 23:06:54 +03:00
|
|
|
rm -f Makefile.bak .depend
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
# api example program
|
|
|
|
apiexample: apiexample.c $(LIB)
|
2002-09-05 13:06:20 +03:00
|
|
|
$(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm
|
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
|
|
|
|
2002-09-01 12:33:05 +03:00
|
|
|
dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\
|
|
|
|
fdctref.o jrevdct.o i386/idct_mmx.o simple_idct.o i386/simple_idct_mmx.o
|
2002-08-21 22:18:02 +03:00
|
|
|
$(CC) -o $@ $^ -lm
|
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
|
|
|
|
2001-10-27 15:04:27 +03:00
|
|
|
install: all
|
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2002-08-13 21:51:11 +03:00
|
|
|
install -d $(prefix)/lib
|
2002-05-26 01:45:33 +03:00
|
|
|
install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so
|
2002-08-13 21:51:11 +03:00
|
|
|
ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so
|
|
|
|
ldconfig || true
|
2002-05-26 01:45:33 +03:00
|
|
|
mkdir -p $(prefix)/include/ffmpeg
|
|
|
|
install -m 644 avcodec.h $(prefix)/include/ffmpeg/avcodec.h
|
|
|
|
install -m 644 common.h $(prefix)/include/ffmpeg/common.h
|
2001-10-27 15:04:27 +03:00
|
|
|
endif
|
2002-06-11 16:39:47 +03:00
|
|
|
|
|
|
|
installlib: all
|
|
|
|
install -m 644 $(LIB) $(prefix)/lib
|
|
|
|
mkdir -p $(prefix)/include/ffmpeg
|
|
|
|
install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \
|
|
|
|
$(prefix)/include/ffmpeg
|
|
|
|
|
2001-07-23 23:58:31 +03:00
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|