diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-11-01 14:00:18 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-30 21:11:31 +0100 |
commit | 56a56c0cb564aa20e6f91f257beccf1a907674d1 (patch) | |
tree | 7b05597c81ad5708439b7ea013bdbad4c6d97bf0 | |
parent | d3264c496a0ed8edfe940eb197ceb5b650b8a17e (diff) | |
download | ffmpeg-56a56c0cb564aa20e6f91f257beccf1a907674d1.tar.gz |
avutil/softfloat: Add FLOAT_MIN
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit e34fe61bf45331d2e6d2840604f799fa4b55c843)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavutil/softfloat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h index c50aaf5285..4789b209cd 100644 --- a/libavutil/softfloat.h +++ b/libavutil/softfloat.h @@ -43,6 +43,7 @@ static const SoftFloat FLOAT_EPSILON = { 0x29F16B12, -16}; static const SoftFloat FLOAT_1584893192 = { 0x32B771ED, 1}; ///< 1.584893192 (10^.2) static const SoftFloat FLOAT_100000 = { 0x30D40000, 17}; ///< 100000 static const SoftFloat FLOAT_0999999 = { 0x3FFFFBCE, 0}; ///< 0.999999 +static const SoftFloat FLOAT_MIN = { 0x20000000, MIN_EXP}; /** |