[FFmpeg-cvslog] doc/filter_design: fix a few typos

Stefano Sabatini git at videolan.org
Sun Jul 22 12:20:55 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Jul 22 11:28:57 2012 +0200| [8c2ce16f93be0fc1362ab74846b46c9818da14be] | committer: Stefano Sabatini

doc/filter_design: fix a few typos

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8c2ce16f93be0fc1362ab74846b46c9818da14be
---

 doc/filter_design.txt |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/filter_design.txt b/doc/filter_design.txt
index 4157fd1..9e3eb3d 100644
--- a/doc/filter_design.txt
+++ b/doc/filter_design.txt
@@ -12,7 +12,7 @@ Format negotiation
 ==================
 
   The query_formats method should set, for each input and each output links,
-  the list supported formats.
+  the list of supported formats.
 
   For video links, that means pixel format. For audio links, that means
   channel layout, and sample format (the sample packing is implied by the
@@ -26,7 +26,7 @@ Format negotiation
   references to the list are updated.
 
   That means that if a filter requires that its input and output have the
-  same format amongst a supported list, all it have to do is use a reference
+  same format amongst a supported list, all it has to do is use a reference
   to the same list of formats.
 
 
@@ -70,7 +70,7 @@ Frame scheduling
     request_frame method or the application.
 
     If a filter has several inputs, the filter must be ready for frames
-    arriving randomly on any input. Therefore, any filter with several input
+    arriving randomly on any input. Therefore, any filter with several inputs
     will most likely require some kind of queuing mechanism. It is perfectly
     acceptable to have a limited queue and to drop frames when the inputs
     are too unbalanced.
@@ -85,7 +85,7 @@ Frame scheduling
 
     For a filter, if there are queued frames already ready, one of these
     frames should be pushed. If not, the filter should request a frame on
-    one of its input, repeatedly until at least one frame has been pushed.
+    one of its inputs, repeatedly until at least one frame has been pushed.
 
     Return values:
     if request_frame could produce a frame, it should return 0;



More information about the ffmpeg-cvslog mailing list