summaryrefslogtreecommitdiff
path: root/doc/indevs.texi
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-08-08 10:18:38 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-08-08 23:43:37 +0200
commitf09a06908edf5631bee6093120d6f06cfe1fc15d (patch)
treecc890b4b17d3b7a2b5eda45ada03922ba5096fdc /doc/indevs.texi
parent083754f2be4443c340cf912bdef5d26239ffb42e (diff)
downloadffmpeg-f09a06908edf5631bee6093120d6f06cfe1fc15d.tar.gz
doc/indevs: use separate @example blocks for separate examples
Improve rendering.
Diffstat (limited to 'doc/indevs.texi')
-rw-r--r--doc/indevs.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi
index 8c7615e69b..a9f2fe4b50 100644
--- a/doc/indevs.texi
+++ b/doc/indevs.texi
@@ -630,8 +630,10 @@ properties of your X11 display (e.g. grep for "name" or "dimensions").
For example to grab from @file{:0.0} using @command{ffmpeg}:
@example
ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpg
+@end example
-# Grab at position 10,20.
+Grab at position @code{10,20}:
+@example
ffmpeg -f x11grab -r 25 -s cif -i :0.0+10,20 out.mpg
@end example