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>
pull/124/merge
Michael Niedermayer 10 years ago
parent 665d47f435
commit 2a34b5099b
  1. 2
      libavfilter/avf_showwaves.c

@ -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…
Cancel
Save