Commit ea35e3c6 authored by Stefano Sabatini's avatar Stefano Sabatini

Avoid the use of an intermediary variable in

av_parse_video_rate(). Simplify.

Originally committed as revision 24524 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c90c80ac
......@@ -139,9 +139,7 @@ int av_parse_video_rate(AVRational *rate, const char *arg)
rate->num = 0;
} else {
/* Finally we give up and parse it as double */
AVRational time_base = av_d2q(strtod(arg, 0), 1001000);
rate->den = time_base.den;
rate->num = time_base.num;
*rate = av_d2q(strtod(arg, 0), 1001000);
}
if (rate->num <= 0 || rate->den <= 0)
return AVERROR(EINVAL);
......
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