mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
Revert "avutil/softfloat: Check for MIN_EXP in av_sqrt_sf()"
This case should not be possible if the input has a exponent within
the valid range
This reverts commit 0269fb11e3
.
This commit is contained in:
parent
0269fb11e3
commit
4b6ad23609
@ -181,10 +181,6 @@ static av_always_inline SoftFloat av_sqrt_sf(SoftFloat val)
|
||||
val.mant >>= 1;
|
||||
|
||||
val.exp = (val.exp >> 1) + 1;
|
||||
if (val.exp < MIN_EXP) {
|
||||
val.exp = MIN_EXP;
|
||||
val.mant= 0;
|
||||
}
|
||||
}
|
||||
|
||||
return val;
|
||||
|
Loading…
Reference in New Issue
Block a user