diff options
author | Vicente Jimenez Aguilar <googuy@gmail.com> | 2013-02-20 02:35:00 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-24 19:50:31 +0100 |
commit | c10582e703c514aa5446b75d71ee9f0460767e2b (patch) | |
tree | c536fe7136c9e383d5fe1ee64bc6cab7bb643993 | |
parent | db5b454c3d20f0e2e7fff8f0091e776ae9757725 (diff) | |
download | ffmpeg-c10582e703c514aa5446b75d71ee9f0460767e2b.tar.gz |
doc: filters: Correct BNF FILTER description
Signed-off-by: Diego Biurrun <diego@biurrun.de>
(cherry picked from commit b5ad422bf4e671a8b30ce73ad236cd6b49940af9)
-rw-r--r-- | doc/filters.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c1cf0084f8..e907b776a4 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -82,7 +82,7 @@ Follows a BNF description for the filtergraph syntax: @var{LINKLABEL} ::= "[" @var{NAME} "]" @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}] @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted) -@var{FILTER} ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}] +@var{FILTER} ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}] @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}] @var{FILTERGRAPH} ::= @var{FILTERCHAIN} [;@var{FILTERGRAPH}] @end example |