Browse Source

avfilter/af_aphaser: Change type to int as its accessed as int via AVOptions

This fixes depending on implementation defined behavior

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
34b13dbadf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/af_aphaser.c

+ 1
- 1
libavfilter/af_aphaser.c View File

@@ -37,7 +37,7 @@ typedef struct AudioPhaserContext {
double decay; double decay;
double speed; double speed;


enum WaveType type;
int type;


int delay_buffer_length; int delay_buffer_length;
double *delay_buffer; double *delay_buffer;


Loading…
Cancel
Save