diff mbox

[FFmpeg-devel,1/3] avutil/softfloat: Add FLOAT_MIN

Message ID 20171101130020.9356-1-michael@niedermayer.cc
State Accepted
Commit e34fe61bf45331d2e6d2840604f799fa4b55c843
Headers show

Commit Message

Michael Niedermayer Nov. 1, 2017, 1 p.m. UTC
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavutil/softfloat.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Michael Niedermayer Nov. 5, 2017, 8:33 p.m. UTC | #1
On Wed, Nov 01, 2017 at 02:00:18PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> ---
>  libavutil/softfloat.h | 1 +
>  1 file changed, 1 insertion(+)

will apply patchset

[...]
diff mbox

Patch

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};
 
 
 /**