Fix weird indent.

Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Stefano Sabatini 15 years ago
parent 0795b86174
commit 6705dd5f98
  1. 8
      libavcore/parseutils.c

@ -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, '/');

Loading…
Cancel
Save