diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-07-15 23:13:44 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-07-15 23:41:09 +0200 |
commit | c183f840fa9aee6000ed90466ccbd9671f1ad7eb (patch) | |
tree | 9830b6bb88f3295f84f161188f2b0a7a170437d4 /doc | |
parent | f03223495385f64e11b29b5a51fcef2a93627184 (diff) | |
download | ffmpeg-c183f840fa9aee6000ed90466ccbd9671f1ad7eb.tar.gz |
avfilter/af_axcorrelate: add another algorithm for calculation
Rewrite EOF logic while here.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 770c5d0272..e5325c7410 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -3762,8 +3762,8 @@ Set size of segment over which cross-correlation is calculated. Default is 256. Allowed range is from 2 to 131072. @item algo -Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}. -Default is @code{slow}. Fast algorithm assumes mean values over any given segment +Set algorithm for cross-correlation. Can be @code{slow} or @code{fast} or @code{best}. +Default is @code{best}. Fast algorithm assumes mean values over any given segment are always zero and thus need much less calculations to make. This is generally not true, but is valid for typical audio streams. @end table |