summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-02 23:08:46 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-02 04:08:18 +0100
commit27a5d09c6adc6e20e00e569a13a4b899c5ef935d (patch)
tree6b3f9fcd546374fbd545f62330e67ef34926144d /libavfilter
parent7ff296be9f418836f946adff03daccf86d3da3be (diff)
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>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avf_avectorscope.c2
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;