Browse code

Nits: more punctuation and capitalization Commited in SoC by Vitor Sessak on 2008-02-09 20:02:29

Originally committed as revision 12719 to svn://svn.ffmpeg.org/ffmpeg/trunk

Vitor Sessak authored on 2008/04/05 05:08:05
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 /*
2
- * Filter graphs
2
+ * filter graphs
3 3
  * copyright (c) 2007 Bobby Bingham
4 4
  *
5 5
  * This file is part of FFmpeg.
... ...
@@ -51,7 +51,7 @@ static int link_init(AVFilterContext *ctx, const char *args, void *opaque)
51 51
 /**
52 52
  * Given the link between the dummy filter and an internal filter whose input
53 53
  * is being exported outside the graph, this returns the externally visible
54
- * link
54
+ * link.
55 55
  */
56 56
 static inline AVFilterLink *get_extern_input_link(AVFilterLink *link)
57 57
 {
... ...
@@ -99,7 +99,7 @@ static int link_in_config_props(AVFilterLink *link)
99 99
 /**
100 100
  * Given the link between the dummy filter and an internal filter whose input
101 101
  * is being exported outside the graph, this returns the externally visible
102
- * link
102
+ * link.
103 103
  */
104 104
 static inline AVFilterLink *get_extern_output_link(AVFilterLink *link)
105 105
 {
... ...
@@ -485,7 +485,7 @@ int avfilter_graph_config_formats(AVFilterContext *graphctx)
485 485
 {
486 486
     GraphContext *graph = graphctx->priv;
487 487
 
488
-    /* Find supported formats from sub-filters, and merge along links */
488
+    /* find supported formats from sub-filters, and merge along links */
489 489
     if(query_formats(graphctx))
490 490
         return -1;
491 491