Browse code

mandelbrot: add math.h for log2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2011/11/14 13:56:03
Showing 1 changed files
... ...
@@ -31,6 +31,7 @@
31 31
 #include "libavutil/opt.h"
32 32
 #include "libavutil/parseutils.h"
33 33
 #include <float.h>
34
+#include <math.h>
34 35
 
35 36
 #define SQR(a) ((a)*(a))
36 37