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:
Michael Niedermayer 2014-06-06 16:02:53 +02:00
parent 27b893b231
commit 3133e7fd44
1 changed files with 1 additions and 1 deletions

View File

@ -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