summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2010-11-12 06:56:26 +0000
committerAnton Khirnov <wyskas@gmail.com>2010-11-12 06:56:26 +0000
commit09f47fa44ebf3f18651397517b49e6f8c5a0e374 (patch)
tree75ece575079d4e0c2c23ba9963c176591ffc8faf
parenta9c2bf9dc115edc480ef36ccb8db4f941e6b92e9 (diff)
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
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 7cdf63fe88..1a5a5b1bc1 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2418,6 +2418,7 @@ static int transcode(AVFormatContext **output_files,
for (j = 0; j < nb_output_files; j++)
if ((ret = copy_chapters(i, j)) < 0)
goto dump_format;
+ break;
}
/* open files and write file headers */