mirror of https://git.ffmpeg.org/ffmpeg.git
mandelbrot: Add inner variable & enum for inner coloring schemes.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3cbe9afba5
commit
e8499ab171
|
@ -37,6 +37,10 @@ enum Outer{
|
||||||
NORMALIZED_ITERATION_COUNT,
|
NORMALIZED_ITERATION_COUNT,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum Inner{
|
||||||
|
BLACK,
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct Point {
|
typedef struct Point {
|
||||||
double p[2];
|
double p[2];
|
||||||
uint32_t val;
|
uint32_t val;
|
||||||
|
@ -54,6 +58,7 @@ typedef struct {
|
||||||
double end_pts;
|
double end_pts;
|
||||||
double bailout;
|
double bailout;
|
||||||
enum Outer outer;
|
enum Outer outer;
|
||||||
|
enum Inner inner;
|
||||||
int cache_allocated;
|
int cache_allocated;
|
||||||
int cache_used;
|
int cache_used;
|
||||||
Point *point_cache;
|
Point *point_cache;
|
||||||
|
|
Loading…
Reference in New Issue