summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2010-11-12 06:56:23 +0000
committerAnton Khirnov <wyskas@gmail.com>2010-11-12 06:56:23 +0000
commita9c2bf9dc115edc480ef36ccb8db4f941e6b92e9 (patch)
tree91444e435fd78f0a02b095ae7483fea4da257331 /ffmpeg.c
parent91e96ebafb2ad2c5c6d851a84bac7946b281fd56 (diff)
ffmpeg.c: reindent
Originally committed as revision 25728 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 9b2cc20b45..7cdf63fe88 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2411,14 +2411,14 @@ static int transcode(AVFormatContext **output_files,
/* copy chapters from the first input file that has them*/
if (!nb_chapter_maps)
- for (i = 0; i < nb_input_files; i++) {
- if (!input_files[i]->nb_chapters)
- continue;
+ for (i = 0; i < nb_input_files; i++) {
+ if (!input_files[i]->nb_chapters)
+ continue;
- for (j = 0; j < nb_output_files; j++)
- if ((ret = copy_chapters(i, j)) < 0)
- goto dump_format;
- }
+ for (j = 0; j < nb_output_files; j++)
+ if ((ret = copy_chapters(i, j)) < 0)
+ goto dump_format;
+ }
/* open files and write file headers */
for(i=0;i<nb_output_files;i++) {