X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Faf_afir.h;h=2ae12cbc500cbfcfb580b2b22fd6aaf253e94bcf;hb=606c7148231404544005c0827b83c165dd6b39a8;hp=aaeb66536fa4c053fbc0f883ffce6f285bc53527;hpb=3c56d6734186336723150d3bcaf3405538710c53;p=ffmpeg diff --git a/libavfilter/af_afir.h b/libavfilter/af_afir.h index aaeb66536fa..2ae12cbc500 100644 --- a/libavfilter/af_afir.h +++ b/libavfilter/af_afir.h @@ -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;