Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-11-01 16:00:18 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-11-06 00:13:16 +0300
commite34fe61bf45331d2e6d2840604f799fa4b55c843 (patch)
tree249dd30d4db650396d36ad759875c91cd2bcf81b /libavutil
parente131b8cedb00043dcc97cc05ca04749ec8ff57de (diff)
avutil/softfloat: Add FLOAT_MIN
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/softfloat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index b13d728f30..a651406f74 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};
/**