diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-01 23:34:46 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-01 23:34:46 +0000 |
commit | 4fa1c4fa8d88ac4f5c28b0395012d0679ea98327 (patch) | |
tree | 51160285dbd10708622872502e68d0781eb42459 /libavformat | |
parent | c280f2d7c39e0ff15399554e7ccb4f541cfb8f4b (diff) | |
download | ffmpeg-4fa1c4fa8d88ac4f5c28b0395012d0679ea98327.tar.gz |
* preAlpha DV encoding support -- there's still a truckload
of work to do, but it least people can try it out and share
ideas. Please don't hesitate to give it a spin:
$ ffmpeg -i file.avi file.dv
is all you need.
* fix for a deallocation bug in DV muxer
Originally committed as revision 2327 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index b8e41be400..a132f97dde 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -678,7 +678,6 @@ bail_out: void dv_delete_mux(DVMuxContext *c) { fifo_free(&c->audio_data); - av_free(c); } DVDemuxContext* dv_init_demux(AVFormatContext *s, int vid, int aid) |