[FFmpeg-cvslog] r25287 - trunk/libavcore/parseutils.c

stefano subversion
Fri Oct 1 18:02:10 CEST 2010


Author: stefano
Date: Fri Oct  1 18:02:10 2010
New Revision: 25287

Log:
Fix weird indent.

Modified:
   trunk/libavcore/parseutils.c

Modified: trunk/libavcore/parseutils.c
==============================================================================
--- trunk/libavcore/parseutils.c	Fri Oct  1 15:55:20 2010	(r25286)
+++ trunk/libavcore/parseutils.c	Fri Oct  1 18:02:10 2010	(r25287)
@@ -121,10 +121,10 @@ int av_parse_video_rate(AVRational *rate
 
     /* 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, '/');



More information about the ffmpeg-cvslog mailing list