diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-13 16:30:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-29 07:20:05 +0200 |
commit | 1ee20141900c98f9dc25eca121c66c3ff468c1e4 (patch) | |
tree | 0a5a0945ed314e6761edaa9726cc6576647708cb /doc | |
parent | 998e8519efbc772994c5ba19c0d39573998be9db (diff) | |
download | ffmpeg-1ee20141900c98f9dc25eca121c66c3ff468c1e4.tar.gz |
vf_unsharp: set default chroma size value to 5x5
The previous default value 0x0 was not good, since it is not even
valid.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 228c1f087f..13a66d4e0e 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1453,7 +1453,7 @@ It accepts the following parameters: Negative values for the amount will blur the input video, while positive values will sharpen. All parameters are optional and default to the -equivalent of the string '5:5:1.0:0:0:0.0'. +equivalent of the string '5:5:1.0:5:5:0.0'. @table @option @@ -1471,11 +1471,11 @@ and 5.0, default value is 1.0. @item chroma_msize_x Set the chroma matrix horizontal size. It can be an integer between 3 -and 13, default value is 0. +and 13, default value is 5. @item chroma_msize_y Set the chroma matrix vertical size. It can be an integer between 3 -and 13, default value is 0. +and 13, default value is 5. @item luma_amount Set the chroma effect strength. It can be a float number between -2.0 |