diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-15 16:34:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-15 16:34:38 +0000 |
commit | 37f5cd5a18a8e08a18814d1aca828c92ee398d10 (patch) | |
tree | c78ac7785164d08a131c82146f04acea1e3325fd /ffmpeg.c | |
parent | 1008ceb38024dcfe202be2174ad33aa4a958d35a (diff) | |
download | ffmpeg-37f5cd5a18a8e08a18814d1aca828c92ee398d10.tar.gz |
10l (stats didnt include av_write_trailer())
Originally committed as revision 3015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1677,15 +1677,15 @@ static int av_encode(AVFormatContext **output_files, term_exit(); - /* dump report by using the first video and audio streams */ - print_report(output_files, ost_table, nb_ostreams, 1); - /* write the trailer if needed and close file */ for(i=0;i<nb_output_files;i++) { os = output_files[i]; av_write_trailer(os); } + /* dump report by using the first video and audio streams */ + print_report(output_files, ost_table, nb_ostreams, 1); + /* close each encoder */ for(i=0;i<nb_ostreams;i++) { ost = ost_table[i]; |