[FFmpeg-soc] [soc]: r4181 - libavfilter/doc/vfilters.texi

victor subversion at mplayerhq.hu
Sun Mar 22 17:24:02 CET 2009


Author: victor
Date: Sun Mar 22 17:24:02 2009
New Revision: 4181

Log:
Forgot to escape the equal sign. Added a warning as penitence.

Modified:
   libavfilter/doc/vfilters.texi

Modified: libavfilter/doc/vfilters.texi
==============================================================================
--- libavfilter/doc/vfilters.texi	Sun Mar 22 17:15:05 2009	(r4180)
+++ libavfilter/doc/vfilters.texi	Sun Mar 22 17:24:02 2009	(r4181)
@@ -156,12 +156,13 @@ Rotate video by a chosen amount in degre
 @section scale
 
 @example
-./ffmpeg -i in.avi -vfilters "scale=200:100:sws_flags=bicubic" out.avi
+./ffmpeg -i in.avi -vfilters "scale=200:100:sws_flags\=bicubic" out.avi
 @end example
 
 Scale to new width/height and/or convert pixel format.
 The two first parameter are the desired width and height.
 If the third parameter @var{sws_flags} is absent, then @var{bilinear} is assumed.
+Be aware that the equal sign after @var{sws_flags} must be escaped, as in example.
 
 @section setpts
 


More information about the FFmpeg-soc mailing list