From d6b988b505d6c5f69fc5df921643622795685cce Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Wed, 2 Dec 2015 09:52:01 +0100 Subject: [PATCH] libavutil/tablegen: add missing math.h include --- libavutil/tablegen.h | 2 ++ 1 file changed, 2 insertions(+) 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 + // 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)