ffmpeg | branch: master | Michael Niedermayer <[email protected]> | Mon Feb 2 23:08:46 2015 +0100| [27a5d09c6adc6e20e00e569a13a4b899c5ef935d] | committer: Michael Niedermayer
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 <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=27a5d09c6adc6e20e00e569a13a4b899c5ef935d --- libavfilter/avf_avectorscope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avf_avectorscope.c b/libavfilter/avf_avectorscope.c index 1b5365a..3027de3 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; _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
