summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2003-08-28 19:53:47 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2003-08-28 19:53:47 +0000
commit118e91f3d841435c50df4e110eb108d720cdcecf (patch)
tree7f9597bb3ac4f42fb15c4d15e67e718a2652af07 /libavformat/Makefile
parent8c5b5683aecb84100ca32a6f9ea15ffe8df1ac66 (diff)
* Phase 1 for DV encoding support. Muxing/demuxing of DV streams is now
possible. For example you can do: ffmpeg -i i.dv -i audio_track.mp3 -map 0.0 -map 1.0 \ -vcodec copy -acodec pcm_s16le out.dv * Preparations for getting rid of DVAUDIO codec, DV stream really contains PCM audio, so there's no codec needed if we have a decent demuxer. * Providing entry points for dv1394 write support. Originally committed as revision 2174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index 98941daccd..2672c43b6c 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -13,7 +13,7 @@ PPOBJS=
# mux and demuxes
OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \
- avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
+ avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dvcore.o dv.o \
yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o
ifeq ($(CONFIG_RISKY),yes)