[FFmpeg-cvslog] avfilter/af_crossfeed: fix calculation of alpha parameter
Paul B Mahol
git at videolan.org
Thu Apr 30 13:24:13 EEST 2020
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Apr 30 11:44:48 2020 +0200| [0ec61fcff71d212b616660a6e93d856ef1849466] | committer: Paul B Mahol
avfilter/af_crossfeed: fix calculation of alpha parameter
Use A in calculation.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ec61fcff71d212b616660a6e93d856ef1849466
---
libavfilter/af_crossfeed.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_crossfeed.c b/libavfilter/af_crossfeed.c
index c819ca59a7..f1bbb357ba 100644
--- a/libavfilter/af_crossfeed.c
+++ b/libavfilter/af_crossfeed.c
@@ -62,7 +62,7 @@ static int config_input(AVFilterLink *inlink)
double w0 = 2 * M_PI * (1. - s->range) * 2100 / inlink->sample_rate;
double alpha;
- alpha = sin(w0) / 2 * sqrt(2 * (1 / 0.5 - 1) + 2);
+ alpha = sin(w0) / 2 * sqrt((A + 1 / A) * (1 / 0.5 - 1) + 2);
s->a0 = (A + 1) + (A - 1) * cos(w0) + 2 * sqrt(A) * alpha;
s->a1 = -2 * ((A - 1) + (A + 1) * cos(w0));
More information about the ffmpeg-cvslog
mailing list