summaryrefslogtreecommitdiff
path: root/libavformat/asfenc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-09-09 21:35:23 +0200
committerAnton Khirnov <anton@khirnov.net>2012-09-15 18:25:07 +0200
commit3b4bb19e63b41a0a542ba3ef254443b2e76a6a3e (patch)
tree8a4168cce911a68fa1f807881a9a9cd240f663ca /libavformat/asfenc.c
parent0c270239c2acec8cf2f3924e2b956e15a41e8d1c (diff)
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/asfenc.c')
-rw-r--r--libavformat/asfenc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c
index bcb741e04d..5c820becb2 100644
--- a/libavformat/asfenc.c
+++ b/libavformat/asfenc.c
@@ -872,7 +872,6 @@ static int asf_write_trailer(AVFormatContext *s)
asf_write_header1(s, file_size, data_size - asf->data_offset);
}
- avio_flush(s->pb);
av_free(asf->index_ptr);
return 0;
}