summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-11-01 14:00:18 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-12-02 00:28:59 +0100
commit4fbee4272793da37c8ba563eab754de355304ad7 (patch)
treed8699da39466703264bbbfbfb01cdf39f7f8009f
parent21ae8b4869e2b2d51be2ce726b03cd86bc36285f (diff)
downloadffmpeg-4fbee4272793da37c8ba563eab754de355304ad7.tar.gz
avutil/softfloat: Add FLOAT_MIN
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavutil/softfloat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index df610b7b3b..64696450e2 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};
static const SoftFloat FLOAT_100000 = { 0x30D40000, 17};
static const SoftFloat FLOAT_0999999 = { 0x3FFFFBCE, 0};
+static const SoftFloat FLOAT_MIN = { 0x20000000, MIN_EXP};
static inline av_const double av_sf2double(SoftFloat v) {
v.exp -= ONE_BITS +1;