OSDN Git Service

Fix weird indent.
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 1 Oct 2010 16:02:10 +0000 (16:02 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 1 Oct 2010 16:02:10 +0000 (16:02 +0000)
Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcore/parseutils.c

index e8ce6cf..b59b819 100644 (file)
@@ -121,10 +121,10 @@ int av_parse_video_rate(AVRational *rate, const char *arg)
 
     /* First, we check our abbreviation table */
     for (i = 0; i < n; ++i)
-         if (!strcmp(video_rate_abbrs[i].abbr, arg)) {
-             *rate = video_rate_abbrs[i].rate;
-             return 0;
-         }
+        if (!strcmp(video_rate_abbrs[i].abbr, arg)) {
+            *rate = video_rate_abbrs[i].rate;
+            return 0;
+        }
 
     /* Then, we try to parse it as fraction */
     cp = strchr(arg, '/');