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:03:08 +0200 |
commit | 335c31293baec6e6cf5907bd29840af3de8ff735 (patch) | |
tree | dde3c2827165063866db1ee59d419cb980b86b33 /doc | |
parent | 63e58c55c17d7f8b5eec9c082fe0f8edc305a24e (diff) | |
download | ffmpeg-335c31293baec6e6cf5907bd29840af3de8ff735.tar.gz |
vf_drawbox: switch to an AVOptions-based system.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 9f5eec6e67..99cf119494 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -811,10 +811,7 @@ delogo=x=0:y=0:w=100:h=77:band=10 Draw a colored box on the input image. -It accepts the syntax: -@example -drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color} -@end example +This filter accepts the following options: @table @option @@ -836,7 +833,7 @@ Follow some examples: drawbox # draw a box with color red and an opacity of 50% -drawbox=10:20:200:60:red@@0.5" +drawbox=x=10:y=20:width=200:height=60:color=red@@0.5" @end example @section drawtext |