[FFmpeg-cvslog] avutil/softfloat: Add FLOAT_MIN
Michael Niedermayer
git at videolan.org
Sat Dec 2 01:49:29 EET 2017
ffmpeg | branch: release/3.0 | Michael Niedermayer <michael at niedermayer.cc> | Wed Nov 1 14:00:18 2017 +0100| [4fbee4272793da37c8ba563eab754de355304ad7] | committer: Michael Niedermayer
avutil/softfloat: Add FLOAT_MIN
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4fbee4272793da37c8ba563eab754de355304ad7
---
libavutil/softfloat.h | 1 +
1 file changed, 1 insertion(+)
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;
More information about the ffmpeg-cvslog
mailing list