diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-03 20:01:06 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-03 20:01:06 +0000 |
commit | 143e3aa0310cdee7431fa01efbbeb6964f4a069f (patch) | |
tree | ff38bd2cb1182143fbd6ac4aeb5fc6e4d5c01b1f /doc/libavfilter.texi | |
parent | 42022e0362151a3cafa86a54be2f3187a1899398 (diff) | |
download | ffmpeg-143e3aa0310cdee7431fa01efbbeb6964f4a069f.tar.gz |
Fix grammar / clarify documentation for the format and noformat
filters.
Originally committed as revision 20440 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/libavfilter.texi')
-rw-r--r-- | doc/libavfilter.texi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/libavfilter.texi b/doc/libavfilter.texi index 4a4a953392..9efeba2f68 100644 --- a/doc/libavfilter.texi +++ b/doc/libavfilter.texi @@ -114,11 +114,11 @@ The default value of ``width'' and ``height'' is 0. @section format Convert the input video to one of the specified pixel formats. -Libavfilter will try to pick one that is supported as the input to +Libavfilter will try to pick one that is supported for the input to the next filter. -The filter takes as argument 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: @@ -130,11 +130,11 @@ will convert the input video to the format ``yuv420p''. @section noformat -Force libavfilter not to use any of the specified pixel formats as the +Force libavfilter not to use any of the specified pixel formats for the input to the next filter. -The filter takes as argument 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: @@ -142,7 +142,7 @@ The following command: ./ffmpeg -i in.avi -vfilters "noformat=yuv420p, vflip" out.avi @end example -will make libavfilter use a format different from ``yuv420p'' as the +will make libavfilter use a format different from ``yuv420p'' for the input to the vflip filter. @section null |