Commit a66b243d authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/softfloat: FLOAT_0 should use MIN_EXP

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 3d20f8e7
......@@ -36,7 +36,7 @@ typedef struct SoftFloat{
int32_t exp;
}SoftFloat;
static const SoftFloat FLOAT_0 = { 0, 0};
static const SoftFloat FLOAT_0 = { 0, MIN_EXP};
static const SoftFloat FLOAT_05 = { 0x20000000, 0};
static const SoftFloat FLOAT_1 = { 0x20000000, 1};
static const SoftFloat FLOAT_EPSILON = { 0x29F16B12, -16};
......
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