diff msmpeg4.c @ 6350:8e63d869a904 libavcodec

typo fix: inited --> initialized
author diego
date Wed, 13 Feb 2008 09:26:10 +0000
parents 809fd829a864
children 493dc59d469a
line wrap: on
line diff
--- a/msmpeg4.c	Wed Feb 13 08:05:51 2008 +0000
+++ b/msmpeg4.c	Wed Feb 13 09:26:10 2008 +0000
@@ -87,7 +87,7 @@
 
 static void common_init(MpegEncContext * s)
 {
-    static int inited=0;
+    static int initialized=0;
 
     switch(s->msmpeg4_version){
     case 1:
@@ -127,8 +127,8 @@
     }
     //Note the default tables are set in common_init in mpegvideo.c
 
-    if(!inited){
-        inited=1;
+    if(!initialized){
+        initialized=1;
 
         init_h263_dc_for_msmpeg4();
     }