Commit 41fd1b2d authored by Michael Niedermayer's avatar Michael Niedermayer

mandelbrot: add SQR() macro

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e555119c
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
#include "libavutil/imgutils.h" #include "libavutil/imgutils.h"
#include "libavutil/parseutils.h" #include "libavutil/parseutils.h"
#define SQR(a) ((a)*(a))
enum Outer{ enum Outer{
ITERATION_COUNT, ITERATION_COUNT,
NORMALIZED_ITERATION_COUNT, NORMALIZED_ITERATION_COUNT,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment