Commit 887d74c4 authored by Michael Niedermayer's avatar Michael Niedermayer

av_d2q: Add a special case for |value| > MAX and |value| < 1/MAX

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f77467a1
......@@ -115,6 +115,8 @@ AVRational av_d2q(double d, int max)
exponent = FFMAX( (int)(log(fabs(d) + 1e-20)/LOG2), 0);
den = 1LL << (61 - exponent);
av_reduce(&a.num, &a.den, rint(d * den), den, max);
if ((!a.num || !a.den) && d && max>0 && max<INT_MAX)
av_reduce(&a.num, &a.den, llrint(d * den), den, INT_MAX);
return a;
}
......
......@@ -21,7 +21,7 @@ Testing av_parse_video_rate()
'.23' -> 23/100 OK
'-.23' -> -23/100 ERROR
'-0.234' -> -117/500 ERROR
'-0.0000001' -> 0/1 ERROR
'-0.0000001' -> -1/10000000 ERROR
' 21332.2324 ' -> 917286/43 OK
' -21332.2324 ' -> -917286/43 ERROR
......
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