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>2015-12-02 11:52:01 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-12-04 16:49:35 +0300
commitd6b988b505d6c5f69fc5df921643622795685cce (patch)
tree59e47b23a486dc54a7815e2142597a784b87d9a4 /libavutil/tablegen.h
parent0c1d62ab9d757d546fafca366d776524e7bb9893 (diff)
libavutil/tablegen: add missing math.h include
Diffstat (limited to 'libavutil/tablegen.h')
-rw-r--r--libavutil/tablegen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/tablegen.h b/libavutil/tablegen.h
index f81b46b7dc..02acdd61e8 100644
--- a/libavutil/tablegen.h
+++ b/libavutil/tablegen.h
@@ -24,6 +24,8 @@
#ifndef AVUTIL_TABLEGEN_H
#define AVUTIL_TABLEGEN_H
+#include <math.h>
+
// we lack some functions on all host platforms, and we don't care about
// performance and/or strict ISO C semantics as it's performed at build time
static inline double ff_cbrt(double x)