File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -1668,7 +1668,6 @@ MATH_FUNCS="
1668
1668
exp2
1669
1669
exp2f
1670
1670
expf
1671
- fminf
1672
1671
isinf
1673
1672
isnan
1674
1673
ldexpf
@@ -4782,7 +4781,6 @@ disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersi
4782
4781
atan2f_args=2
4783
4782
ldexpf_args=2
4784
4783
powf_args=2
4785
- fminf_args=2
4786
4784
4787
4785
for func in $MATH_FUNCS ; do
4788
4786
eval check_mathfunc $func \$ {${func} _args:-1}
Original file line number Diff line number Diff line change @@ -82,16 +82,6 @@ static av_always_inline float cbrtf(float x)
82
82
#define exp2f (x ) ((float)exp2(x))
83
83
#endif /* HAVE_EXP2F */
84
84
85
- #if !HAVE_FMINF
86
- #undef fminf
87
- static av_always_inline av_const float fminf (float x , float y )
88
- {
89
- //Note, the NaN special case is needed for C spec compliance, it should be
90
- //optimized away if the users compiler is configured to assume no NaN
91
- return x > y ? y : (x == x ? x : y );
92
- }
93
- #endif
94
-
95
85
#if !HAVE_ISINF
96
86
static av_always_inline av_const int isinf (float x )
97
87
{
You can’t perform that action at this time.
0 commit comments