[FFmpeg-cvslog] avfilter/af_aiir: make it clear that transfer function is digital one
Paul B Mahol
git at videolan.org
Sat May 30 11:07:28 EEST 2020
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri May 29 20:44:41 2020 +0200| [327b52412dc63b5b699dc9ff9fb41e49010d643c] | committer: Paul B Mahol
avfilter/af_aiir: make it clear that transfer function is digital one
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=327b52412dc63b5b699dc9ff9fb41e49010d643c
---
doc/filters.texi | 2 +-
libavfilter/af_aiir.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/filters.texi b/doc/filters.texi
index 5af4797b7e..869090c3f4 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1409,7 +1409,7 @@ Set coefficients format.
@table @samp
@item tf
-transfer function
+digital transfer function
@item zp
Z-plane zeros/poles, cartesian (default)
@item pr
diff --git a/libavfilter/af_aiir.c b/libavfilter/af_aiir.c
index 92ff348dd6..b9a06bbb7b 100644
--- a/libavfilter/af_aiir.c
+++ b/libavfilter/af_aiir.c
@@ -1223,7 +1223,7 @@ static const AVOption aiir_options[] = {
{ "wet", "set wet gain", OFFSET(wet_gain), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, AF },
{ "format", "set coefficients format", OFFSET(format), AV_OPT_TYPE_INT, {.i64=1}, 0, 3, AF, "format" },
{ "f", "set coefficients format", OFFSET(format), AV_OPT_TYPE_INT, {.i64=1}, 0, 3, AF, "format" },
- { "tf", "transfer function", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, AF, "format" },
+ { "tf", "digital transfer function", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, AF, "format" },
{ "zp", "Z-plane zeros/poles", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, AF, "format" },
{ "pr", "Z-plane zeros/poles (polar radians)", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, AF, "format" },
{ "pd", "Z-plane zeros/poles (polar degrees)", 0, AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, AF, "format" },
More information about the ffmpeg-cvslog
mailing list