diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-04-24 17:31:18 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-04-24 22:30:55 +0200 |
commit | a0cb29261cddb2b62ee57fbeb689a0234f0cc735 (patch) | |
tree | 6259264d3d909556eac5d9b20297a0d6af0edf61 /libavfilter/af_afir.h | |
parent | 0b352e350e773673f11ea380f3507923c70e1175 (diff) | |
download | ffmpeg-a0cb29261cddb2b62ee57fbeb689a0234f0cc735.tar.gz |
avfilter/af_afir: cache xfade coefficients
Diffstat (limited to 'libavfilter/af_afir.h')
-rw-r--r-- | libavfilter/af_afir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_afir.h b/libavfilter/af_afir.h index 11564d5b12..5f2c68c5c6 100644 --- a/libavfilter/af_afir.h +++ b/libavfilter/af_afir.h @@ -90,6 +90,7 @@ typedef struct AudioFIRContext { AudioFIRSegment seg[MAX_IR_STREAMS][1024]; AVFrame *in; + AVFrame *xfade[2]; AVFrame *ir[MAX_IR_STREAMS]; AVFrame *norm_ir[MAX_IR_STREAMS]; AVFrame *video; |