ffmpeg | branch: master | Paul B Mahol <[email protected]> | Wed Feb 16 20:20:53 
2022 +0100| [7ad645eb7e3e181d0230c42ae03185ccb1296a0f] | committer: Paul B Mahol

avfilter/af_surround: fix oversight with inverse rdft initialization

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ad645eb7e3e181d0230c42ae03185ccb1296a0f
---

 libavfilter/af_surround.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_surround.c b/libavfilter/af_surround.c
index 56c29548eb..c5657e405d 100644
--- a/libavfilter/af_surround.c
+++ b/libavfilter/af_surround.c
@@ -277,7 +277,7 @@ static int config_output(AVFilterLink *outlink)
     for (ch = 0; ch < outlink->channels; ch++) {
         float iscale = 1.f;
 
-        av_tx_init(&s->irdft[ch], &s->itx_fn, AV_TX_FLOAT_RDFT, 0, 
s->buf_size, &iscale, 0);
+        av_tx_init(&s->irdft[ch], &s->itx_fn, AV_TX_FLOAT_RDFT, 1, 
s->buf_size, &iscale, 0);
         if (!s->irdft[ch])
             return AVERROR(ENOMEM);
     }

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to