summaryrefslogtreecommitdiff
path: root/libavfilter/af_aphaser.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-02 23:10:02 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-02 04:08:32 +0100
commit34b13dbadff97b858b9bee41b79d02f5f9e868f0 (patch)
tree800edb7e0397b483e8508180cbb6c99d4da2a59e /libavfilter/af_aphaser.c
parente8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d (diff)
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>
Diffstat (limited to 'libavfilter/af_aphaser.c')
-rw-r--r--libavfilter/af_aphaser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_aphaser.c b/libavfilter/af_aphaser.c
index 9d8f696bd5..708b568c74 100644
--- a/libavfilter/af_aphaser.c
+++ b/libavfilter/af_aphaser.c
@@ -37,7 +37,7 @@ typedef struct AudioPhaserContext {
double decay;
double speed;
- enum WaveType type;
+ int type;
int delay_buffer_length;
double *delay_buffer;