Browse Source

avfilter/avf_avectorscope: 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.6
Michael Niedermayer 10 years ago
parent
commit
27a5d09c6a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/avf_avectorscope.c

+ 1
- 1
libavfilter/avf_avectorscope.c View File

@@ -44,7 +44,7 @@ typedef struct AudioVectorScopeContext {
AVFrame *outpicref;
int w, h;
int hw, hh;
enum VectorScopeMode mode;
int mode;
int contrast[3];
int fade[3];
double zoom;


Loading…
Cancel
Save