2 * This file is part of Libav.
4 * Libav is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * Libav is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with Libav; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * Replacements for frequently missing libm functions
29 #include "attributes.h"
32 static av_always_inline
float cbrtf(float x
)
34 return x
< 0 ?
-powf(-x
, 1.0 / 3.0) : powf(x
, 1.0 / 3.0);
40 #define exp2(x) exp((x) * 0.693147180559945)
41 #endif /* HAVE_EXP2 */
45 #define exp2f(x) ((float)exp2(x))
46 #endif /* HAVE_EXP2F */
50 #define llrint(x) ((long long)rint(x))
51 #endif /* HAVE_LLRINT */
55 #define llrintf(x) ((long long)rint(x))
56 #endif /* HAVE_LLRINT */
60 #define log2(x) (log(x) * 1.44269504088896340736)
61 #endif /* HAVE_LOG2 */
65 #define log2f(x) ((float)log2(x))
66 #endif /* HAVE_LOG2F */
69 static av_always_inline av_const
long int lrint(double x
)
73 #endif /* HAVE_LRINT */
76 static av_always_inline av_const
long int lrintf(float x
)
78 return (int)(rint(x
));
80 #endif /* HAVE_LRINTF */
83 static av_always_inline av_const
double round(double x
)
85 return (x
> 0) ?
floor(x
+ 0.5) : ceil(x
- 0.5);
87 #endif /* HAVE_ROUND */
90 static av_always_inline av_const
float roundf(float x
)
92 return (x
> 0) ?
floor(x
+ 0.5) : ceil(x
- 0.5);
94 #endif /* HAVE_ROUNDF */
97 static av_always_inline av_const
double trunc(double x
)
99 return (x
> 0) ?
floor(x
) : ceil(x
);
101 #endif /* HAVE_TRUNC */
104 static av_always_inline av_const
float truncf(float x
)
106 return (x
> 0) ?
floor(x
) : ceil(x
);
108 #endif /* HAVE_TRUNCF */
110 #endif /* AVUTIL_LIBM_H */