diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-25 21:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 19:08:42 +0200 |
commit | b83e9efc53e5491716625aa31c69006b1119b280 (patch) | |
tree | 438aa611d3299e694c3cbbe4239253d58f0fef50 /doc/filters.texi | |
parent | 0c2466dec719b933d161f5d680a57fde38aa5daa (diff) | |
download | ffmpeg-b83e9efc53e5491716625aa31c69006b1119b280.tar.gz |
vf_unsharp: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c6a50670a4..e19ea15ff5 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2157,11 +2157,6 @@ l.r l.L Sharpen or blur the input video. It accepts the following parameters: -@var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount} - -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:5:5:0.0'. @table @option @@ -2191,9 +2186,13 @@ and 5.0, default value is 0.0. @end table +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:5:5:0.0'. + @example # Strong luma sharpen effect parameters -unsharp=7:7:2.5 +unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5 # Strong blur of both luma and chroma parameters unsharp=7:7:-2:7:7:-2 |