ffmpeg.c: reindent
authorAnton Khirnov <wyskas@gmail.com>
Fri, 12 Nov 2010 06:56:23 +0000 (06:56 +0000)
committerAnton Khirnov <wyskas@gmail.com>
Fri, 12 Nov 2010 06:56:23 +0000 (06:56 +0000)
Originally committed as revision 25728 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffmpeg.c

index 9b2cc20b459fb71dea9e2d0cc2037d16cd44c84d..7cdf63fe88d2b2cb0c4409a00b12b441819ef517 100644 (file)
--- 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++) {