[FFmpeg-cvslog] avfilter/af_aphaser: Change type to int as its accessed as int via AVOptions

Michael Niedermayer git at videolan.org
Mon Mar 2 04:29:11 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Feb  2 23:10:02 2015 +0100| [34b13dbadff97b858b9bee41b79d02f5f9e868f0] | committer: Michael Niedermayer

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 at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=34b13dbadff97b858b9bee41b79d02f5f9e868f0
---

 libavfilter/af_aphaser.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_aphaser.c b/libavfilter/af_aphaser.c
index 9d8f696..708b568 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;



More information about the ffmpeg-cvslog mailing list