aboutsummaryrefslogtreecommitdiffstats
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2013-03-30 15:13:08 -0400
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2013-03-31 18:22:08 -0400
commit9db706206d1e4a5b776f50acee591d0e066a21ef (patch)
treed6b74dccc67b31f93b25ff5636bb4dd07cacdc53 /doc/filters.texi
parent9249b28e799c88102ff218ec6cbb99c82d702b68 (diff)
downloadffmpeg-9db706206d1e4a5b776f50acee591d0e066a21ef.tar.gz
doc: Consistently use 'filtergraph'
We used to use 'filtergraph' or 'filter graph' randomly. 'filtergraph' was chosen due to having 57 occurrences in the documentation, whereas 'filter graph' had only 19. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 5424b85d31..2c82ac39cf 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -6,7 +6,7 @@ Filtering in FFmpeg is enabled through the libavfilter library.
In libavfilter, it is possible for filters to have multiple inputs and
multiple outputs.
To illustrate the sorts of things that are possible, we can
-use a complex filter graph. For example, the following one:
+use a complex filtergraph. For example, the following one:
@example
input --> split ---------------------> overlay --> output
@@ -49,7 +49,7 @@ output.
@c man begin GRAPH2DOT
The @file{graph2dot} program included in the FFmpeg @file{tools}
-directory can be used to parse a filter graph description and issue a
+directory can be used to parse a filtergraph description and issue a
corresponding textual representation in the dot language.
Invoke the command:
@@ -61,7 +61,7 @@ to see how to use @file{graph2dot}.
You can then pass the dot description to the @file{dot} program (from
the graphviz suite of programs) and obtain a graphical representation
-of the filter graph.
+of the filtergraph.
For example the sequence of commands:
@example
@@ -2865,7 +2865,7 @@ they should be escaped.
Note that they probably must also be escaped as the value for the
@option{text} option in the filter argument string and as the filter
-argument in the filter graph description, and possibly also for the shell,
+argument in the filtergraph description, and possibly also for the shell,
that makes up to four levels of escaping; using a text file avoids these
problems.