1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avfilter/vf_lut3d: fix sanitizef INF handling

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Mark Reid 2020-11-08 17:12:29 -08:00 committed by Anton Khirnov
parent dd03d65540
commit e366797ad3

View File

@ -107,7 +107,7 @@ typedef struct ThreadData {
#define EXPONENT_MASK 0x7F800000
#define MANTISSA_MASK 0x007FFFFF
#define SIGN_MASK 0x7FFFFFFF
#define SIGN_MASK 0x80000000
static inline float sanitizef(float f)
{
@ -120,7 +120,7 @@ static inline float sanitizef(float f)
return 0.0f;
} else if (t.i & SIGN_MASK) {
// -INF
return FLT_MIN;
return -FLT_MAX;
} else {
// +INF
return FLT_MAX;