Commit 8a86aaa3 authored by David Conrad's avatar David Conrad

Flush the buffer after writing the header and when done with writing the files

Fixes writing small (~4kb) files.

Originally committed as revision 16650 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0d3d172f
......@@ -708,6 +708,7 @@ static int mkv_write_header(AVFormatContext *s)
if (mkv->cues == NULL)
return AVERROR(ENOMEM);
put_flush_packet(pb);
return 0;
}
......@@ -888,6 +889,7 @@ static int mkv_write_trailer(AVFormatContext *s)
end_ebml_master(pb, mkv->segment);
av_free(mkv->md5_ctx);
put_flush_packet(pb);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment