2002-05-25 22:34:32 +00:00
|
|
|
#
|
|
|
|
# libavformat Makefile
|
2003-09-16 20:29:19 +00:00
|
|
|
# (c) 2000-2003 Fabrice Bellard
|
2002-05-25 22:34:32 +00:00
|
|
|
#
|
2001-07-23 20:06:54 +00:00
|
|
|
include ../config.mak
|
2002-05-18 23:07:57 +00:00
|
|
|
|
2002-11-29 14:56:03 +00:00
|
|
|
VPATH=$(SRC_PATH)/libavformat
|
2002-05-18 23:07:57 +00:00
|
|
|
|
2003-10-18 18:47:06 +00:00
|
|
|
CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-09-08 21:20:55 +00:00
|
|
|
OBJS= utils.o cutils.o os_support.o allformats.o
|
2003-02-06 15:09:39 +00:00
|
|
|
PPOBJS=
|
2002-05-20 16:31:13 +00:00
|
|
|
|
|
|
|
# mux and demuxes
|
2004-07-15 18:32:54 +00:00
|
|
|
OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
|
2003-09-29 17:54:07 +00:00
|
|
|
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
|
2003-09-05 18:45:32 +00:00
|
|
|
yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
|
2004-01-02 04:47:02 +00:00
|
|
|
nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
|
2004-11-20 23:10:07 +00:00
|
|
|
sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o
|
2003-01-29 12:00:11 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_RISKY),yes)
|
|
|
|
OBJS+= asf.o
|
2004-03-06 11:07:37 +00:00
|
|
|
OBJS+= asf-enc.o
|
2003-01-29 12:00:11 +00:00
|
|
|
endif
|
|
|
|
|
2004-12-29 23:17:42 +00:00
|
|
|
AMROBJS=
|
2003-10-14 11:36:03 +00:00
|
|
|
ifeq ($(AMR_NB),yes)
|
2004-12-29 23:17:42 +00:00
|
|
|
AMROBJS= amr.o
|
2003-10-14 11:36:03 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(AMR_NB_FIXED),yes)
|
2004-12-29 23:17:42 +00:00
|
|
|
AMROBJS= amr.o
|
2003-10-14 11:36:03 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(AMR_WB),yes)
|
2004-12-29 23:17:42 +00:00
|
|
|
AMROBJS= amr.o
|
2003-06-05 14:30:52 +00:00
|
|
|
endif
|
2004-12-29 23:17:42 +00:00
|
|
|
OBJS+= $(AMROBJS)
|
2003-06-05 14:30:52 +00:00
|
|
|
|
2003-01-11 05:02:14 +00:00
|
|
|
# image formats
|
2004-03-13 17:30:37 +00:00
|
|
|
OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
|
2002-05-20 16:31:13 +00:00
|
|
|
# file I/O
|
|
|
|
OBJS+= avio.o aviobuf.o file.o
|
2003-01-11 05:02:14 +00:00
|
|
|
OBJS+= framehook.o
|
2001-08-13 21:37:10 +00:00
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_VIDEO4LINUX),yes)
|
|
|
|
OBJS+= grab.o
|
2001-08-13 21:37:10 +00:00
|
|
|
endif
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-01-22 22:40:52 +00:00
|
|
|
ifeq ($(CONFIG_DV1394),yes)
|
|
|
|
OBJS+= dv1394.o
|
|
|
|
endif
|
|
|
|
|
2004-10-22 02:04:30 +00:00
|
|
|
ifeq ($(CONFIG_DC1394),yes)
|
|
|
|
OBJS+= dc1394.o
|
|
|
|
endif
|
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_AUDIO_OSS),yes)
|
|
|
|
OBJS+= audio.o
|
|
|
|
endif
|
|
|
|
|
2002-11-05 00:38:06 +00:00
|
|
|
ifeq ($(CONFIG_AUDIO_BEOS),yes)
|
2003-02-06 15:09:39 +00:00
|
|
|
PPOBJS+= beosaudio.o
|
2003-07-15 13:35:20 +00:00
|
|
|
EXTRALIBS+=-lbe -lmedia
|
|
|
|
# this should be the default !
|
|
|
|
EXTRALIBS+=-lavcodec -L../libavcodec
|
2002-11-05 00:38:06 +00:00
|
|
|
endif
|
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_NETWORK),yes)
|
2002-07-24 18:04:24 +00:00
|
|
|
OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
|
2003-02-06 15:09:39 +00:00
|
|
|
# BeOS and Darwin network stuff
|
2002-11-27 02:45:14 +00:00
|
|
|
ifeq ($(NEED_INET_ATON),yes)
|
2002-11-02 10:35:07 +00:00
|
|
|
OBJS+= barpainet.o
|
|
|
|
endif
|
2001-08-15 22:33:03 +00:00
|
|
|
endif
|
|
|
|
|
2002-09-01 18:07:56 +00:00
|
|
|
ifeq ($(CONFIG_VORBIS),yes)
|
|
|
|
OBJS+= ogg.o
|
|
|
|
endif
|
|
|
|
|
2004-04-24 15:16:23 +00:00
|
|
|
ifeq ($(TARGET_ARCH_SPARC64),yes)
|
|
|
|
CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
|
|
|
|
endif
|
|
|
|
|
2003-01-11 20:34:38 +00:00
|
|
|
LIB= $(LIBPREF)avformat$(LIBSUF)
|
2003-07-11 21:33:27 +00:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
|
|
SLIB= $(SLIBPREF)avformat$(SLIBSUF)
|
|
|
|
endif
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2004-11-20 23:10:07 +00:00
|
|
|
EXTRALIBS+=-lavcodec -L../libavcodec
|
|
|
|
ifeq ($(CONFIG_MP3LAME),yes)
|
|
|
|
EXTRALIBS+=-lmp3lame
|
|
|
|
endif
|
|
|
|
|
2003-02-06 15:09:39 +00:00
|
|
|
SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
|
2003-01-14 15:30:42 +00:00
|
|
|
|
2003-07-11 21:33:27 +00:00
|
|
|
all: $(LIB) $(SLIB)
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-02-06 15:09:39 +00:00
|
|
|
$(LIB): $(OBJS) $(PPOBJS)
|
2001-07-22 14:37:44 +00:00
|
|
|
rm -f $@
|
2003-02-06 15:09:39 +00:00
|
|
|
$(AR) rc $@ $(OBJS) $(PPOBJS)
|
2002-09-02 16:48:40 +00:00
|
|
|
$(RANLIB) $@
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-07-11 21:33:27 +00:00
|
|
|
$(SLIB): $(OBJS)
|
2003-09-15 22:27:43 +00:00
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
2003-09-16 20:29:19 +00:00
|
|
|
$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
|
2003-09-04 08:21:27 +00:00
|
|
|
-lib /machine:i386 /def:$(@:.dll=.def)
|
|
|
|
else
|
2003-09-16 20:29:19 +00:00
|
|
|
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
|
2003-09-04 08:21:27 +00:00
|
|
|
endif
|
2003-07-11 21:33:27 +00:00
|
|
|
|
2003-02-01 20:53:07 +00:00
|
|
|
depend: $(SRCS)
|
2003-01-22 09:53:25 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
|
|
|
|
2003-07-11 21:33:27 +00:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2003-09-15 22:27:43 +00:00
|
|
|
install: all install-headers
|
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
2004-10-01 13:32:13 +00:00
|
|
|
install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
|
2003-09-15 22:27:43 +00:00
|
|
|
else
|
2003-07-11 21:33:27 +00:00
|
|
|
install -d $(prefix)/lib
|
2004-10-01 13:32:13 +00:00
|
|
|
install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
|
2003-07-11 21:33:27 +00:00
|
|
|
ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
|
|
|
|
ldconfig || true
|
2003-09-15 22:27:43 +00:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
install:
|
2003-07-11 21:33:27 +00:00
|
|
|
endif
|
|
|
|
|
2003-09-15 22:27:43 +00:00
|
|
|
installlib: all install-headers
|
2005-01-11 08:16:04 +00:00
|
|
|
install -m 644 $(LIB) "$(prefix)/lib"
|
2003-09-15 22:27:43 +00:00
|
|
|
|
|
|
|
install-headers:
|
|
|
|
mkdir -p "$(prefix)/include/ffmpeg"
|
2002-12-30 01:07:47 +00:00
|
|
|
install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
|
|
|
|
$(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
|
|
|
|
$(SRC_PATH)/libavformat/rtspcodes.h \
|
2003-09-15 22:27:43 +00:00
|
|
|
"$(prefix)/include/ffmpeg"
|
2002-07-25 16:06:41 +00:00
|
|
|
|
2001-07-22 14:37:44 +00:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2002-11-05 00:38:06 +00:00
|
|
|
# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
|
|
|
|
%.o: %.cpp
|
|
|
|
g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
|
|
|
|
|
2004-04-12 18:42:23 +00:00
|
|
|
distclean clean:
|
2004-09-16 17:15:58 +00:00
|
|
|
rm -f *.o *.d .depend *~ *.a *.so $(LIB)
|
2003-01-22 09:53:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|