avfilter/vsrc_mandelbrot: Change enums to int, which are accessed via AVOption as int
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
71fa0aa085
commit
9caec04a31
@ -69,8 +69,8 @@ typedef struct {
|
|||||||
double end_scale;
|
double end_scale;
|
||||||
double end_pts;
|
double end_pts;
|
||||||
double bailout;
|
double bailout;
|
||||||
enum Outer outer;
|
int outer;
|
||||||
enum Inner inner;
|
int inner;
|
||||||
int cache_allocated;
|
int cache_allocated;
|
||||||
int cache_used;
|
int cache_used;
|
||||||
Point *point_cache;
|
Point *point_cache;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user