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>
pull/130/head
Michael Niedermayer 10 years ago
parent 71fa0aa085
commit 9caec04a31
  1. 4
      libavfilter/vsrc_mandelbrot.c

@ -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…
Cancel
Save