diff options
author | Ganesh Ajjanagadde <[email protected]> | 2016-03-14 21:28:56 -0400 |
---|---|---|
committer | Ganesh Ajjanagadde <[email protected]> | 2016-03-22 10:15:31 -0700 |
commit | db1a642cd213804ed1579a19c9f5db08407dad9b (patch) | |
tree | 03b30c952698571c0544f3591f835d4aacd1745a /libavcodec/opus.c | |
parent | 124526ba1aee5b616b9f6cf2da6b5db85d05711d (diff) |
all: move ff_exp10, ff_exp10f, ff_fast_powf to lavu/ffmath.h
The idea is to use ffmath.h for internal implementations of math functions.
Currently, it is used for variants of libm functions, but is by no means
limited to such things.
Note that this is not exported; use lavu/mathematics for such purposes.
Reviewed-by: Ronald S. Bultje <[email protected]>
Signed-off-by: Ganesh Ajjanagadde <[email protected]>
Diffstat (limited to 'libavcodec/opus.c')
-rw-r--r-- | libavcodec/opus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opus.c b/libavcodec/opus.c index f2b8ecc411..47f2657204 100644 --- a/libavcodec/opus.c +++ b/libavcodec/opus.c @@ -27,7 +27,7 @@ #include <stdint.h> #include "libavutil/error.h" -#include "libavutil/internal.h" +#include "libavutil/ffmath.h" #include "opus.h" #include "vorbis.h" |