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:
parent
07ca99f523
commit
204d5f30ce
@ -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, ...) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user