Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-03-14 17:49:34 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-03-14 17:49:34 +0300
commita38627be6d61b2309fe1df2dbe1eb6470c22ddc6 (patch)
tree07ba0c59ecacccca281bec89384001ecb11e2637 /libavcodec/cbrt_data.c
parent29d106e751bea16a8b311d4a05cd32ebdaab8a60 (diff)
avcodec/cbrt_data: include avutil/libm.h to unbreak compilation on systems without cbrt
Diffstat (limited to 'libavcodec/cbrt_data.c')
-rw-r--r--libavcodec/cbrt_data.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/cbrt_data.c b/libavcodec/cbrt_data.c
index f5d9778a6f..d2e36cd6dd 100644
--- a/libavcodec/cbrt_data.c
+++ b/libavcodec/cbrt_data.c
@@ -21,6 +21,8 @@
#include "config.h"
#include "cbrt_data.h"
+#include "libavutil/libm.h"
+
#if CONFIG_HARDCODED_TABLES
#include "libavcodec/cbrt_tables.h"
#else