diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-09 10:23:58 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-09 15:27:41 +0200 |
commit | af52e6b6dd3486fea04c73c404ed2764d8e012fb (patch) | |
tree | 792c572ad1f215bc2c688539ee0542be195a2154 /doc/filters.texi | |
parent | 18a97b030c923579c694353f8529f05701b481e8 (diff) | |
download | ffmpeg-af52e6b6dd3486fea04c73c404ed2764d8e012fb.tar.gz |
doc: avoid "@table has text but no @item" warning.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c643c06c3e..54c14174ea 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1159,10 +1159,14 @@ corresponding pixel component values. The @var{lut} filter requires either YUV or RGB pixel formats in input, and accepts the options: @table @option -@var{c0} (first pixel component) -@var{c1} (second pixel component) -@var{c2} (third pixel component) -@var{c3} (fourth pixel component, corresponds to the alpha component) +@item c0 +first pixel component +@item c1 +second pixel component +@item c2 +third pixel component +@item c3 +fourth pixel component, corresponds to the alpha component @end table The exact component associated to each option depends on the format in @@ -1171,19 +1175,27 @@ input. The @var{lutrgb} filter requires RGB pixel formats in input, and accepts the options: @table @option -@var{r} (red component) -@var{g} (green component) -@var{b} (blue component) -@var{a} (alpha component) +@item r +red component +@item g +green component +@item b +blue component +@item a +alpha component @end table The @var{lutyuv} filter requires YUV pixel formats in input, and accepts the options: @table @option -@var{y} (Y/luminance component) -@var{u} (U/Cb component) -@var{v} (V/Cr component) -@var{a} (alpha component) +@item y +Y/luminance component +@item u +U/Cb component +@item v +V/Cr component +@item a +alpha component @end table The expressions can contain the following constants and functions: |