mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/avf_showwaves: 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>
This commit is contained in:
parent
665d47f435
commit
2a34b5099b
|
@ -50,7 +50,7 @@ typedef struct {
|
|||
int req_fullfilled;
|
||||
int n;
|
||||
int sample_count_mod;
|
||||
enum ShowWavesMode mode;
|
||||
int mode; ///< ShowWavesMode
|
||||
int split_channels;
|
||||
void (*draw_sample)(uint8_t *buf, int height, int linesize,
|
||||
int16_t sample, int16_t *prev_y, int intensity);
|
||||
|
|
Loading…
Reference in New Issue