Commit 23d3931a authored by Martin Storsjö's avatar Martin Storsjö

Provide a fallback version of the libm function trunc

This fixes compilation on DOS.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 32a12852
......@@ -1119,6 +1119,7 @@ HAVE_LIST="
sys_videoio_h
ten_operands
threads
trunc
truncf
vfp_args
VirtualAlloc
......@@ -2852,6 +2853,7 @@ check_mathfunc lrint
check_mathfunc lrintf
check_mathfunc round
check_mathfunc roundf
check_mathfunc trunc
check_mathfunc truncf
# these are off by default, so fail if requested and not available
......
......@@ -86,6 +86,13 @@ static av_always_inline av_const float roundf(float x)
}
#endif /* HAVE_ROUNDF */
#if !HAVE_TRUNC
static av_always_inline av_const double trunc(double x)
{
return (x > 0) ? floor(x) : ceil(x);
}
#endif /* HAVE_TRUNC */
#if !HAVE_TRUNCF
static av_always_inline av_const float truncf(float x)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment