summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-16 08:34:55 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-16 08:34:55 +0000
commitb1094275242c0455719ed33717d3e3e6209bb518 (patch)
tree60c17c2b43a13349a5ca5dd5b26d28cef0f3da17 /doc/filters.texi
parenteb6fb058f20745171d7866408c3299ca0ea1c996 (diff)
Prefer "X" over ``X'', looks more readable and more consistent with
the rest of FFmpeg docs. Originally committed as revision 25130 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 70047839a5..4b2ece1529 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -70,8 +70,8 @@ Convert the input video to one of the specified pixel formats.
Libavfilter will try to pick one that is supported for the input to
the next filter.
-The filter accepts a list of pixel format names, separated by ``:'',
-for example ``yuv420p:monow:rgb24''.
+The filter accepts a list of pixel format names, separated by ":",
+for example "yuv420p:monow:rgb24".
The following command:
@@ -79,7 +79,7 @@ The following command:
./ffmpeg -i in.avi -vf "format=yuv420p" out.avi
@end example
-will convert the input video to the format ``yuv420p''.
+will convert the input video to the format "yuv420p".
@section hflip
@@ -96,8 +96,8 @@ ffmpeg -i in.avi -vf "hflip" out.avi
Force libavfilter not to use any of the specified pixel formats for the
input to the next filter.
-The filter accepts a list of pixel format names, separated by ``:'',
-for example ``yuv420p:monow:rgb24''.
+The filter accepts a list of pixel format names, separated by ":",
+for example "yuv420p:monow:rgb24".
The following command:
@@ -105,7 +105,7 @@ The following command:
./ffmpeg -i in.avi -vf "noformat=yuv420p, vflip" out.avi
@end example
-will make libavfilter use a format different from ``yuv420p'' for the
+will make libavfilter use a format different from "yuv420p" for the
input to the vflip filter.
@section null
@@ -170,7 +170,7 @@ The default value of @var{x} and @var{y} is 0.
Specify the color of the padded area, it can be the name of a color
(case insensitive match) or a 0xRRGGBB[AA] sequence.
-The default value of @var{color} is ``black''.
+The default value of @var{color} is "black".
@end table