diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-11-19 00:04:06 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-11-19 00:25:47 +0100 |
commit | 3bcec58535d395945a390bdc7af4048a7abc60eb (patch) | |
tree | 546bd261df502f7cc20de858a2e624974f9adaee /libavfilter/afir_template.c | |
parent | fced45fd9528e93fd71e792f3ddd9eb4667c2d31 (diff) | |
download | ffmpeg-3bcec58535d395945a390bdc7af4048a7abc60eb.tar.gz |
avfilter: fix av_tx_fn stride usage for complex inputs
Diffstat (limited to 'libavfilter/afir_template.c')
-rw-r--r-- | libavfilter/afir_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/afir_template.c b/libavfilter/afir_template.c index 6cb3eb2203..92795bb4f4 100644 --- a/libavfilter/afir_template.c +++ b/libavfilter/afir_template.c @@ -357,7 +357,7 @@ static int fn(fir_quantum)(AVFilterContext *ctx, AVFrame *out, int ch, int offse j--; } - seg->itx_fn(seg->itx[ch], sumout, sumin, sizeof(ftype)); + seg->itx_fn(seg->itx[ch], sumout, sumin, sizeof(ctype)); buf = (ftype *)seg->buffer->extended_data[ch]; fn(fir_fadd)(s, buf, sumout, seg->part_size); |