Browse Source

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>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
9caec04a31
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vsrc_mandelbrot.c

+ 2
- 2
libavfilter/vsrc_mandelbrot.c View File

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