[FFmpeg-cvslog] avfilter/avf_showspectrum: Change enums to int, which are accessed via AVOption as int
Michael Niedermayer
git at videolan.org
Mon Mar 2 04:29:10 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Feb 2 23:07:54 2015 +0100| [7ff296be9f418836f946adff03daccf86d3da3be] | committer: Michael Niedermayer
avfilter/avf_showspectrum: Change enums to int, which are accessed via AVOption as int
This fixes depending on implementation defined behavior
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ff296be9f418836f946adff03daccf86d3da3be
---
libavfilter/avf_showspectrum.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavfilter/avf_showspectrum.c b/libavfilter/avf_showspectrum.c
index 24116da..49491b6 100644
--- a/libavfilter/avf_showspectrum.c
+++ b/libavfilter/avf_showspectrum.c
@@ -48,16 +48,16 @@ typedef struct {
int nb_display_channels;
int channel_height;
int sliding; ///< 1 if sliding mode, 0 otherwise
- enum DisplayMode mode; ///< channel display mode
- enum ColorMode color_mode; ///< display color scheme
- enum DisplayScale scale;
+ int mode; ///< channel display mode
+ int color_mode; ///< display color scheme
+ int scale;
float saturation; ///< color saturation multiplier
int xpos; ///< x position (current column)
RDFTContext *rdft; ///< Real Discrete Fourier Transform context
int rdft_bits; ///< number of bits (RDFT window size = 1<<rdft_bits)
FFTSample **rdft_data; ///< bins holder for each (displayed) channels
float *window_func_lut; ///< Window function LUT
- enum WindowFunc win_func;
+ int win_func;
float *combine_buffer; ///< color combining buffer (3 * h items)
} ShowSpectrumContext;
More information about the ffmpeg-cvslog
mailing list