diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-11-18 00:36:18 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-11-18 17:04:53 +0100 |
commit | 5452cbdc150f0fcff736cd3897a2c41fec77fb79 (patch) | |
tree | 1c418acfd3073adbeefcf67c364ebfb3a067f1f0 /libavfilter/af_afir.h | |
parent | 07c303b70856f3d060af1342825b6a4f2d5a9701 (diff) | |
download | ffmpeg-5452cbdc150f0fcff736cd3897a2c41fec77fb79.tar.gz |
avfilter/af_afir: add irnorm and irlink options
Deprecate gtype option.
Diffstat (limited to 'libavfilter/af_afir.h')
-rw-r--r-- | libavfilter/af_afir.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/af_afir.h b/libavfilter/af_afir.h index 7c9a3b3e31..5c39aa10b9 100644 --- a/libavfilter/af_afir.h +++ b/libavfilter/af_afir.h @@ -63,6 +63,8 @@ typedef struct AudioFIRContext { float dry_gain; float length; int gtype; + float ir_norm; + float ir_link; float ir_gain; int ir_format; int ir_load; @@ -87,6 +89,7 @@ typedef struct AudioFIRContext { int nb_channels; int one2many; int *loading; + double *ch_gain; AudioFIRSegment seg[MAX_IR_STREAMS][1024]; |