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>
This commit is contained in:
Michael Niedermayer 2015-02-02 23:10:02 +01:00
parent e8c1eb09c7
commit 34b13dbadf
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ typedef struct AudioPhaserContext {
double decay;
double speed;
enum WaveType type;
int type;
int delay_buffer_length;
double *delay_buffer;