Commit 97508af2 authored by Michael Niedermayer's avatar Michael Niedermayer

build: add fminf() emulation

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a80342fe
...@@ -1645,6 +1645,7 @@ MATH_FUNCS=" ...@@ -1645,6 +1645,7 @@ MATH_FUNCS="
exp2 exp2
exp2f exp2f
expf expf
fminf
isinf isinf
isnan isnan
ldexpf ldexpf
...@@ -4635,6 +4636,7 @@ disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersi ...@@ -4635,6 +4636,7 @@ disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersi
atan2f_args=2 atan2f_args=2
ldexpf_args=2 ldexpf_args=2
powf_args=2 powf_args=2
fminf_args=2
for func in $MATH_FUNCS; do for func in $MATH_FUNCS; do
eval check_mathfunc $func \${${func}_args:-1} eval check_mathfunc $func \${${func}_args:-1}
......
...@@ -82,6 +82,11 @@ static av_always_inline float cbrtf(float x) ...@@ -82,6 +82,11 @@ static av_always_inline float cbrtf(float x)
#define exp2f(x) ((float)exp2(x)) #define exp2f(x) ((float)exp2(x))
#endif /* HAVE_EXP2F */ #endif /* HAVE_EXP2F */
#if !HAVE_FMINF
#undef fminf
#define fminf(x, y) ((float)fminf(x,y))
#endif
#if !HAVE_ISINF #if !HAVE_ISINF
static av_always_inline av_const int isinf(float x) static av_always_inline av_const int isinf(float x)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment