871
|
1 /*
|
|
2 * This file is part of FFmpeg.
|
|
3 *
|
|
4 * FFmpeg 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.
|
|
8 *
|
|
9 * FFmpeg 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.
|
|
13 *
|
|
14 * You should have received a copy of the GNU Lesser General Public
|
|
15 * License along with FFmpeg; if not, write to the Free Software
|
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
17 */
|
|
18
|
|
19 /**
|
|
20 * @file libavutil/libm.h
|
|
21 * Replacements for frequently missing libm functions
|
|
22 */
|
|
23
|
|
24 #ifndef AVUTIL_LIBM_H
|
|
25 #define AVUTIL_LIBM_H
|
|
26
|
|
27 #include <math.h>
|
|
28 #include "config.h"
|
872
|
29 #include "attributes.h"
|
871
|
30
|
|
31 #if !HAVE_EXP2
|
|
32 #undef exp2
|
|
33 #define exp2(x) exp((x) * 0.693147180559945)
|
|
34 #endif /* HAVE_EXP2 */
|
|
35
|
|
36 #if !HAVE_EXP2F
|
|
37 #undef exp2f
|
|
38 #define exp2f(x) ((float)exp2(x))
|
|
39 #endif /* HAVE_EXP2F */
|
|
40
|
|
41 #if !HAVE_LLRINT
|
|
42 #undef llrint
|
|
43 #define llrint(x) ((long long)rint(x))
|
|
44 #endif /* HAVE_LLRINT */
|
|
45
|
|
46 #if !HAVE_LOG2
|
|
47 #undef log2
|
|
48 #define log2(x) (log(x) * 1.44269504088896340736)
|
|
49 #endif /* HAVE_LOG2 */
|
|
50
|
|
51 #if !HAVE_LOG2F
|
|
52 #undef log2f
|
|
53 #define log2f(x) ((float)log2(x))
|
|
54 #endif /* HAVE_LOG2F */
|
|
55
|
|
56 #if !HAVE_LRINT
|
|
57 static av_always_inline av_const long int lrint(double x)
|
|
58 {
|
|
59 return rint(x);
|
|
60 }
|
|
61 #endif /* HAVE_LRINT */
|
|
62
|
|
63 #if !HAVE_LRINTF
|
|
64 static av_always_inline av_const long int lrintf(float x)
|
|
65 {
|
|
66 return (int)(rint(x));
|
|
67 }
|
|
68 #endif /* HAVE_LRINTF */
|
|
69
|
|
70 #if !HAVE_ROUND
|
|
71 static av_always_inline av_const double round(double x)
|
|
72 {
|
|
73 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
|
|
74 }
|
|
75 #endif /* HAVE_ROUND */
|
|
76
|
|
77 #if !HAVE_ROUNDF
|
|
78 static av_always_inline av_const float roundf(float x)
|
|
79 {
|
|
80 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
|
|
81 }
|
|
82 #endif /* HAVE_ROUNDF */
|
|
83
|
|
84 #if !HAVE_TRUNCF
|
|
85 static av_always_inline av_const float truncf(float x)
|
|
86 {
|
|
87 return (x > 0) ? floor(x) : ceil(x);
|
|
88 }
|
|
89 #endif /* HAVE_TRUNCF */
|
|
90
|
|
91 #endif /* AVUTIL_LIBM_H */
|