You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mandelbrot: Add inner variable & enum for inner coloring schemes.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user