summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2019-11-18 19:32:07 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2019-11-18 19:32:07 +0530
commitf897d8c863c54acbe15f3149ca0d6b774fab2cf5 (patch)
tree922b41eccda383b1978488ae76e30d0ad158ba9f /doc
parentd831edc387c17c25372ff317715b6d6bce235c13 (diff)
doc/filters: improve libvmaf section
Added default values, correct strings for default model path and pool method.
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi12
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index e48f9c99e5..c04421b758 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -12380,7 +12380,7 @@ The filter has following options:
@table @option
@item model_path
Set the model path which is to be used for SVM.
-Default value: @code{"vmaf_v0.6.1.pkl"}
+Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
@item log_path
Set the file path to be used to store logs.
@@ -12396,27 +12396,35 @@ Default value: @code{false}
@item phone_model
Invokes the phone model which will generate VMAF scores higher than in the
regular model, which is more suitable for laptop, TV, etc. viewing conditions.
+Default value: @code{false}
@item psnr
Enables computing psnr along with vmaf.
+Default value: @code{false}
@item ssim
Enables computing ssim along with vmaf.
+Default value: @code{false}
@item ms_ssim
Enables computing ms_ssim along with vmaf.
+Default value: @code{false}
@item pool
-Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
+Set the pool method to be used for computing vmaf.
+Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
@item n_threads
Set number of threads to be used when computing vmaf.
+Default value: @code{0}, which makes use of all available logical processors.
@item n_subsample
Set interval for frame subsampling used when computing vmaf.
+Default value: @code{1}
@item enable_conf_interval
Enables confidence interval.
+Default value: @code{false}
@end table
This filter also supports the @ref{framesync} options.