1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
David Conrad 2009-01-17 04:30:36 +00:00
parent 0d3d172f32
commit 8a86aaa3b2

View File

@ -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;
}