forked from FFmpeg/FFmpeg
avutil/libm: use FFMIN instead of fmin()
MSVC apparently doesnt support fmin() either Suggested/Found-by: ubitux, Daemon404, nevcairiel Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
27b893b231
commit
3133e7fd44
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ static av_always_inline float cbrtf(float x)
|
|||
|
||||
#if !HAVE_FMINF
|
||||
#undef fminf
|
||||
#define fminf(x, y) ((float)fmin(x,y))
|
||||
#define fminf(x, y) (FFMIN(x,y))
|
||||
#endif
|
||||
|
||||
#if !HAVE_ISINF
|
||||
|
|
Loading…
Add table
Reference in a new issue