]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/af_afir.h
avcodec/shorten: Fix undefined shift in fix_bitshift()
[ffmpeg] / libavfilter / af_afir.h
index aaeb66536fa4c053fbc0f883ffce6f285bc53527..2ae12cbc500cbfcfb580b2b22fd6aaf253e94bcf 100644 (file)
@@ -32,8 +32,6 @@
 #include "formats.h"
 #include "internal.h"
 
-#define MAX_IR_DURATION 30
-
 typedef struct AudioFIRContext {
     const AVClass *class;
 
@@ -41,6 +39,10 @@ typedef struct AudioFIRContext {
     float dry_gain;
     float length;
     int again;
+    float max_ir_len;
+    int response;
+    int w, h;
+    int ir_channel;
 
     float gain;
 
@@ -70,6 +72,7 @@ typedef struct AudioFIRContext {
     AVAudioFifo *fifo[2];
     AVFrame *in[2];
     AVFrame *buffer;
+    AVFrame *video;
     int64_t pts;
     int index;