diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-22 17:31:34 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-22 17:31:34 +0100 |
commit | 74097e09023c2ebea3570dbc7a21ea493fdd7ebe (patch) | |
tree | 60f66f4bacbe5879cf8b13c6293de169eecaee85 /libavfilter/vf_signalstats.c | |
parent | 3a23ec0daa28583f18bd63c1416e6a09afea9812 (diff) | |
download | ffmpeg-74097e09023c2ebea3570dbc7a21ea493fdd7ebe.tar.gz |
avfilter/vf_signalstats: Change enum to int, which is accessed via AVOption as int
This fixes depending on implementation defined behavior
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_signalstats.c')
-rw-r--r-- | libavfilter/vf_signalstats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_signalstats.c b/libavfilter/vf_signalstats.c index 8632761cc3..e89bd79bef 100644 --- a/libavfilter/vf_signalstats.c +++ b/libavfilter/vf_signalstats.c @@ -40,7 +40,7 @@ typedef struct { int vsub; // vertical subsampling int fs; // pixel count per frame int cfs; // pixel count per frame of chroma planes - enum FilterMode outfilter; + int outfilter; // FilterMode int filters; AVFrame *frame_prev; uint8_t rgba_color[4]; |