summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2023-01-08 13:53:39 +0100
committerPaul B Mahol <onemda@gmail.com>2023-01-16 09:59:31 +0100
commitac7d21284bd3c2b7f7c6d15db450e4c58e93fef8 (patch)
treea1e448e970921b329db9124ee56021db0db5bb66 /doc
parent1ab0f83b0a243c635d77f8b116646bb7594988d4 (diff)
avfilter: add fractional delay IR source filter
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 57088ccc6c..be70a2396b 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -7519,6 +7519,33 @@ aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
@end itemize
+@section afdelaysrc
+
+Generate a fractional delay FIR coefficients.
+
+The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
+
+The filter accepts the following options:
+
+@table @option
+@item delay, d
+Set the fractional delay. Default is 0.
+
+@item sample_rate, r
+Set the sample rate, default is 44100.
+
+@item nb_samples, n
+Set the number of samples per each frame. Default is 1024.
+
+@item taps, t
+Set the number of filter coefficents in output audio stream.
+Default value is 0.
+
+@item channel_layout, c
+Specifies the channel layout, and can be a string representing a channel layout.
+The default value of @var{channel_layout} is "stereo".
+@end table
+
@section afirsrc
Generate a FIR coefficients using frequency sampling method.