diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 18:49:46 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 18:49:46 +0200 |
commit | c1907bd732c026ad5b9464d3fd41ae7ebad0ee59 (patch) | |
tree | 534cea3c9cbaeb7f73616b6ebe6f27a80da958fd /doc/filters.texi | |
parent | 7f09b888e88dcf063810378d411fa92ebbd7c36a (diff) | |
download | ffmpeg-c1907bd732c026ad5b9464d3fd41ae7ebad0ee59.tar.gz |
lavfi/removelogo: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 097d3bce4c..34383083e2 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -4800,10 +4800,14 @@ Suppress a TV station logo, using an image file to determine which pixels comprise the logo. It works by filling in the pixels that comprise the logo with neighboring pixels. -This filter requires one argument which specifies the filter bitmap -file, which can be any image format supported by libavformat. The -width and height of the image file must match those of the video -stream being processed. +The filters accept the following options: + +@table @option +@item filename, f +Set the filter bitmap file, which can be any image format supported by +libavformat. The width and height of the image file must match those of the +video stream being processed. +@end table Pixels in the provided bitmap image with a value of zero are not considered part of the logo, non-zero pixels are considered part of |