1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avutil/softfloat: Fix alternative implementation of av_normalize_sf()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2015-06-05 17:36:46 +02:00
parent 5bf84a584e
commit 6690ca22b3

View File

@@ -44,7 +44,7 @@ static av_const SoftFloat av_normalize_sf(SoftFloat a){
a.exp -= 1; a.exp -= 1;
} }
#else #else
int s=ONE_BITS + 1 - av_log2(a.mant ^ (a.mant<<1)); int s=ONE_BITS - av_log2(FFABS(a.mant));
a.exp -= s; a.exp -= s;
a.mant <<= s; a.mant <<= s;
#endif #endif