diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 16:31:13 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 16:31:13 +0000 |
commit | c9a65ca8c306071b3c359b56a384a1594cd505df (patch) | |
tree | a33c4b156673f2c1404042501c1cebaae6a35457 /libav/Makefile | |
parent | db7f1f95acc050bb5ddf62b0008eab8c8305d369 (diff) | |
download | ffmpeg-c9a65ca8c306071b3c359b56a384a1594cd505df.tar.gz |
converted to new API
Originally committed as revision 547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r-- | libav/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libav/Makefile b/libav/Makefile index bbd080f693..ecb91e142f 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -5,10 +5,13 @@ PWD=$(shell pwd) CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -OBJS= rm.o mpeg.o asf.o avienc.o jpeg.o swf.o wav.o raw.o \ - avidec.o ffm.o \ - avio.o aviobuf.o utils.o \ - file.o img.o au.o gif.o mov.o crc.o +OBJS= utils.o + +# mux and demuxes +OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o asf.o \ + avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o +# file I/O +OBJS+= avio.o aviobuf.o file.o ifeq ($(CONFIG_GRAB),yes) OBJS+= grab.o audio.o |