diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 05:02:14 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 05:02:14 +0000 |
commit | 87a0a6816f63c37fd6ea78ff8801e9f2d18e93f7 (patch) | |
tree | 7fef66f2bcce32f3d60bc8306e3c6de8df6524bf /libavformat/Makefile | |
parent | f746a0461694a8951d003395d79af8eba9dae5ed (diff) | |
download | ffmpeg-87a0a6816f63c37fd6ea78ff8801e9f2d18e93f7.tar.gz |
added still image support
Originally committed as revision 1439 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 091fecf0cc..d688d7060d 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -12,9 +12,13 @@ OBJS= utils.o cutils.o allformats.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 dv.o framehook.o + avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o dv.o \ + yuv4mpeg.o +# image formats +OBJS+= pnm.o yuv.o # file I/O OBJS+= avio.o aviobuf.o file.o +OBJS+= framehook.o ifeq ($(BUILD_STRPTIME),yes) OBJS+= strptime.o |