mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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_pts;
|
||||
double bailout;
|
||||
enum Outer outer;
|
||||
enum Inner inner;
|
||||
int outer;
|
||||
int inner;
|
||||
int cache_allocated;
|
||||
int cache_used;
|
||||
Point *point_cache;
|
||||
|
Loading…
Reference in New Issue
Block a user