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:00:39 +0200 |
commit | 51def31dbe5b6e857536de8fa428f263d64f3ae5 (patch) | |
tree | c77f677e1d82bc65b450eeb6d9387977e3f32e96 /doc/filters.texi | |
parent | 62dcdb028cc84845fd263bb09304c4c6500bda7a (diff) | |
download | ffmpeg-51def31dbe5b6e857536de8fa428f263d64f3ae5.tar.gz |
vf_boxblur: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c878472c83..bdde8f5380 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -550,8 +550,18 @@ Threshold below which a pixel value is considered black, defaults to 32. Apply boxblur algorithm to the input video. -This filter accepts the parameters: -@var{luma_power}:@var{luma_radius}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power} +This filter accepts the following options: + +@table @option + +@item luma_radius +@item luma_power +@item chroma_radius +@item chroma_power +@item alpha_radius +@item alpha_power + +@end table Chroma and alpha parameters are optional, if not specified they default to the corresponding values set for @var{luma_radius} and @@ -589,7 +599,7 @@ Some examples follow: Apply a boxblur filter with luma, chroma, and alpha radius set to 2: @example -boxblur=2:1 +boxblur=luma_radius=2:luma_power=1 @end example @item @@ -601,7 +611,7 @@ boxblur=2:1:0:0:0:0 @item Set luma and chroma radius to a fraction of the video dimension @example -boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1 +boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1 @end example @end itemize |