]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/af_aiir: make it clear that transfer function is digital one
authorPaul B Mahol <onemda@gmail.com>
Fri, 29 May 2020 18:44:41 +0000 (20:44 +0200)
committerPaul B Mahol <onemda@gmail.com>
Sat, 30 May 2020 08:05:19 +0000 (10:05 +0200)
doc/filters.texi
libavfilter/af_aiir.c

index 5af4797b7ec6f0a57afd12bf908e87feba1b1525..869090c3f4068f1075cd9018b91c09e4e29c02df 100644 (file)
@@ -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
index 92ff348dd601f19f4ec334af76c06ff7fc16de46..b9a06bbb7b3625b742eaa9ed55078eb77dbfd510 100644 (file)
@@ -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" },