1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

mandelbrot: add SQR() macro

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-11-13 18:14:10 +01:00
parent e555119c73
commit 41fd1b2d5a

View File

@ -30,6 +30,8 @@
#include "libavutil/imgutils.h"
#include "libavutil/parseutils.h"
#define SQR(a) ((a)*(a))
enum Outer{
ITERATION_COUNT,
NORMALIZED_ITERATION_COUNT,