diff libmpcodecs/vf_lavcdeint.c @ 25962:afa125da85cf

typo fix: inited --> initialized
author diego
date Thu, 14 Feb 2008 14:23:55 +0000
parents 00fff9a3b735
children 1318e956c092
line wrap: on
line diff
--- a/libmpcodecs/vf_lavcdeint.c	Wed Feb 13 21:36:27 2008 +0000
+++ b/libmpcodecs/vf_lavcdeint.c	Thu Feb 14 14:23:55 2008 +0000
@@ -17,7 +17,7 @@
 #include "libavcodec/avcodec.h"
 #endif
 
-extern int avcodec_inited;
+extern int avcodec_initialized;
 
 struct vf_priv_s 
 {
@@ -162,11 +162,11 @@
   /* This may not technically be necessary just for a deinterlace,
    * but it seems like a good idea.
    */
-  if(!avcodec_inited)
+  if(!avcodec_initialized)
     {
       avcodec_init();
       avcodec_register_all();
-      avcodec_inited=1;
+      avcodec_initialized=1;
     }
 
   return 1;