diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-09 10:28:41 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-09 10:28:41 +0000 |
commit | e6dba1d881c5a677820e491a93b397deeb8c8d40 (patch) | |
tree | 205ee953311844cea222738289e6cf19c227196c /doc/filters.texi | |
parent | 2bd02e2f0ed44e32ae8c501c03fdd953f8951403 (diff) | |
download | ffmpeg-e6dba1d881c5a677820e491a93b397deeb8c8d40.tar.gz |
Fix typos in the crop filter documentation.
Originally committed as revision 26284 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 0039044a28..a66900e160 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -266,7 +266,7 @@ crop=in_h # corner of the input image. crop=in_w-100:in_h-100:100:100 -# crop 10 pixels from the lefth and right borders, and 20 pixels from +# crop 10 pixels from the left and right borders, and 20 pixels from # the top and bottom borders "crop=in_w-2*10:in_h-2*20" @@ -279,7 +279,7 @@ crop=in_w-100:in_h-100:100:100 # trembling effect "crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(n/7)" -# erratic camera effect depending on timestamp and position +# erratic camera effect depending on timestamp "crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)" # set x depending on the value of y |