Commit 09f47fa4 authored by Anton Khirnov's avatar Anton Khirnov

ffmpeg.c: add a forgotten break in chapter copying

only copy chapters from one file

Originally committed as revision 25729 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9c2bf9d
...@@ -2418,6 +2418,7 @@ static int transcode(AVFormatContext **output_files, ...@@ -2418,6 +2418,7 @@ static int transcode(AVFormatContext **output_files,
for (j = 0; j < nb_output_files; j++) for (j = 0; j < nb_output_files; j++)
if ((ret = copy_chapters(i, j)) < 0) if ((ret = copy_chapters(i, j)) < 0)
goto dump_format; goto dump_format;
break;
} }
/* open files and write file headers */ /* open files and write file headers */
......
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