Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Faiz <mfcc64@gmail.com>2016-06-13 09:12:05 +0300
committerMuhammad Faiz <mfcc64@gmail.com>2016-06-13 09:12:05 +0300
commit0b8dcb3349a235c069214f1b3afeba7634050f1a (patch)
treea7fff492c9c689af0c8fc85ccae4fbde91ca6cdf /doc/resampler.texi
parent241e250520025e525797d4f8d18acca9e8321c89 (diff)
doc/resampler: add exact_rational option
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
Diffstat (limited to 'doc/resampler.texi')
-rw-r--r--doc/resampler.texi9
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/resampler.texi b/doc/resampler.texi
index cb7d536cfb..d72677c915 100644
--- a/doc/resampler.texi
+++ b/doc/resampler.texi
@@ -120,8 +120,8 @@ select the native SW Resampler; filter options precision and cheby are not
applicable in this case.
@item soxr
select the SoX Resampler (where available); compensation, and filter options
-filter_size, phase_shift, filter_type & kaiser_beta, are not applicable in this
-case.
+filter_size, phase_shift, exact_rational, filter_type & kaiser_beta, are not
+applicable in this case.
@end table
@item filter_size
@@ -134,6 +134,11 @@ the interval [0,30].
@item linear_interp
Use linear interpolation if set to 1, default value is 0.
+@item exact_rational
+For swr only, when enabled, try to use exact phase_count based on input and
+output sample rate. However, if it is larger than @code{1 << phase_shift},
+the phase_count will be @code{1 << phase_shift} as fallback. Default is disabled.
+
@item cutoff
Set cutoff frequency (swr: 6dB point; soxr: 0dB point) ratio; must be a float
value between 0 and 1. Default value is 0.97 with swr, and 0.91 with soxr