diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-09-09 21:35:23 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-09-15 18:25:07 +0200 |
commit | 3b4bb19e63b41a0a542ba3ef254443b2e76a6a3e (patch) | |
tree | 8a4168cce911a68fa1f807881a9a9cd240f663ca /libavformat/avienc.c | |
parent | 0c270239c2acec8cf2f3924e2b956e15a41e8d1c (diff) | |
download | ffmpeg-3b4bb19e63b41a0a542ba3ef254443b2e76a6a3e.tar.gz |
lavf: flush the output AVIOContext in av_write_trailer().
This is consistent with stdio and is what we want to do in all cases.
Fixes a bug in the voc muxer which didn't flush in write_trailer()
previously. This is the cause of the change in the test results.
Diffstat (limited to 'libavformat/avienc.c')
-rw-r--r-- | libavformat/avienc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c index 40fd7adda8..86698794df 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -626,7 +626,6 @@ static int avi_write_trailer(AVFormatContext *s) avi_write_counters(s, avi->riff_id); } } - avio_flush(pb); for (i=0; i<s->nb_streams; i++) { AVIStream *avist= s->streams[i]->priv_data; |