[FFmpeg-soc] [soc]: r1916 - libavfilter/allfilters.c

vitor subversion at mplayerhq.hu
Fri Feb 15 22:16:14 CET 2008


Author: vitor
Date: Fri Feb 15 22:16:14 2008
New Revision: 1916

Log:
Nit: grammar and wording

Modified:
   libavfilter/allfilters.c

Modified: libavfilter/allfilters.c
==============================================================================
--- libavfilter/allfilters.c	(original)
+++ libavfilter/allfilters.c	Fri Feb 15 22:16:14 2008
@@ -1,5 +1,5 @@
 /*
- * Provides registration of all filters for libavfilter.
+ * filter registration
  * copyright (c) 2008 Vitor Sessak
  *
  * This file is part of FFmpeg.
@@ -32,11 +32,11 @@
 
 void avfilter_register_all(void)
 {
-    static int inited;
+    static int initialized;
 
-    if (inited)
+    if (initialized)
         return;
-    inited = 1;
+    initialized = 1;
 
     REGISTER_VF(CROP,crop);
     REGISTER_VF(FIFO,fifo);



More information about the FFmpeg-soc mailing list