Commit 9caec04a authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vsrc_mandelbrot: Change enums to int, which are accessed via AVOption as int

This fixes depending on implementation defined behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 71fa0aa0
...@@ -69,8 +69,8 @@ typedef struct { ...@@ -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;
......
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