diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-02 23:08:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-02 04:08:18 +0100 |
commit | 27a5d09c6adc6e20e00e569a13a4b899c5ef935d (patch) | |
tree | 6b3f9fcd546374fbd545f62330e67ef34926144d | |
parent | 7ff296be9f418836f946adff03daccf86d3da3be (diff) | |
download | ffmpeg-27a5d09c6adc6e20e00e569a13a4b899c5ef935d.tar.gz |
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>
-rw-r--r-- | libavfilter/avf_avectorscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_avectorscope.c b/libavfilter/avf_avectorscope.c index 1b5365a09f..3027de37fc 100644 --- a/libavfilter/avf_avectorscope.c +++ b/libavfilter/avf_avectorscope.c @@ -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; |