diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:39:24 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:51:48 +0200 |
commit | 9ceb7bdf6f88fb2ee7449401db2ebd4ee4c37597 (patch) | |
tree | ae83feb63163824770467bd1c1bd35cc681ca18b /doc | |
parent | c85f56bb4fd8051a2e365ed71bdf3e4a3f0d9faa (diff) | |
download | ffmpeg-9ceb7bdf6f88fb2ee7449401db2ebd4ee4c37597.tar.gz |
lavfi/deshake: switch to an AVOptions-based system.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index d9a3599882..1e236143df 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2529,16 +2529,14 @@ Attempt to fix small changes in horizontal and/or vertical shift. This filter helps remove camera shake from hand-holding a camera, bumping a tripod, moving on a vehicle, etc. -The 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{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}:@var{opencl}. - -A description of the accepted parameters follows. +The filter accepts the following options: @table @option -@item x, y, w, h +@item x +@item y +@item w +@item h Specify a rectangular area where to limit the search for motion vectors. If desired the search for motion vectors can be limited to a @@ -2556,7 +2554,8 @@ without specifying the bounding box for the motion vector search. Default - search the whole frame. -@item rx, ry +@item rx +@item ry Specify the maximum extent of movement in x and y directions in the range 0-64 pixels. Default 16. |