intfloat_readwrite: fix signed addition overflows
authorMans Rullgard <mans@mansr.com>
Sat, 8 Oct 2011 01:16:29 +0000 (02:16 +0100)
committerMans Rullgard <mans@mansr.com>
Tue, 11 Oct 2011 13:42:28 +0000 (14:42 +0100)
These additions might overflow the signed range for large
input values.  Converting to unsigned before the addition
rather than after avoids such undefined behaviour.  The
result under normal two's complement wraparound remains
unchanged.

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavutil/intfloat_readwrite.c

index 21a1c31..4c8de7b 100644 (file)
 #include "intfloat_readwrite.h"
 
 double av_int2dbl(int64_t v){
-    if(v+v > 0xFFEULL<<52)
+    if((uint64_t)v+v > 0xFFEULL<<52)
         return NAN;
     return ldexp(((v&((1LL<<52)-1)) + (1LL<<52)) * (v>>63|1), (v>>52&0x7FF)-1075);
 }
 
 float av_int2flt(int32_t v){
-    if(v+v > 0xFF000000U)
+    if((uint32_t)v+v > 0xFF000000U)
         return NAN;
     return ldexp(((v&0x7FFFFF) + (1<<23)) * (v>>31|1), (v>>23&0xFF)-150);
 }