Commit 6705dd5f authored by Stefano Sabatini's avatar Stefano Sabatini

Fix weird indent.

Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0795b861
...@@ -121,10 +121,10 @@ int av_parse_video_rate(AVRational *rate, const char *arg) ...@@ -121,10 +121,10 @@ int av_parse_video_rate(AVRational *rate, const char *arg)
/* First, we check our abbreviation table */ /* First, we check our abbreviation table */
for (i = 0; i < n; ++i) for (i = 0; i < n; ++i)
if (!strcmp(video_rate_abbrs[i].abbr, arg)) { if (!strcmp(video_rate_abbrs[i].abbr, arg)) {
*rate = video_rate_abbrs[i].rate; *rate = video_rate_abbrs[i].rate;
return 0; return 0;
} }
/* Then, we try to parse it as fraction */ /* Then, we try to parse it as fraction */
cp = strchr(arg, '/'); cp = strchr(arg, '/');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment