diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 00:50:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 01:02:07 +0200 |
commit | c2696dabbbc6674e31b16d4e06b81e647e907d11 (patch) | |
tree | 2f2cf884ac2bb2d6b27b76e191cb41ec1dcea89d /doc/filters.texi | |
parent | b4ffc35e76fc7106902323831248393f33f94c55 (diff) | |
parent | b83e9efc53e5491716625aa31c69006b1119b280 (diff) | |
download | ffmpeg-c2696dabbbc6674e31b16d4e06b81e647e907d11.tar.gz |
Merge commit 'b83e9efc53e5491716625aa31c69006b1119b280'
* commit 'b83e9efc53e5491716625aa31c69006b1119b280':
vf_unsharp: switch to an AVOptions-based system.
Conflicts:
doc/filters.texi
libavfilter/vf_unsharp.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 07cfeaae28..72bfce66ff 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -5615,14 +5615,7 @@ transpose=1:portrait Sharpen or blur the input video. -This filter accepts parameters as a list of @var{key}=@var{value} pairs, -separated by ":". - -If the key of the first options is omitted, the arguments are -interpreted according to the syntax: -@var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount} - -A description of the accepted options follows. +It accepts the following parameters: @table @option @item luma_msize_x, lx @@ -5647,13 +5640,16 @@ Default value is 1.0 for @option{luma_amount}, 0.0 for @option{chroma_amount}. @end table +All parameters are optional and default to the +equivalent of the string '5:5:1.0:5:5:0.0'. + @subsection Examples @itemize @item Apply strong luma sharpen effect: @example -unsharp=7:7:2.5 +unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5 @end example @item |