obs-filters: Remove fminf/fmaxf redefinitions

These functions are already defined in math.h, so there's no need to
define them again.
This commit is contained in:
jp9000 2015-06-26 03:03:15 -07:00
parent 07ca99f523
commit 204d5f30ce

View file

@ -8,16 +8,6 @@
#define finite _finite
#endif
static inline float fmaxf(float a, float b)
{
return a > b ? a : b;
}
static inline float fminf(float a, float b)
{
return a < b ? a : b;
}
#endif
#define do_log(level, format, ...) \