diff libmpdemux/stheader.h @ 25962:afa125da85cf

typo fix: inited --> initialized
author diego
date Thu, 14 Feb 2008 14:23:55 +0000
parents 6e25dda14b62
children 4129c8cfa742
line wrap: on
line diff
--- a/libmpdemux/stheader.h	Wed Feb 13 21:36:27 2008 +0000
+++ b/libmpdemux/stheader.h	Thu Feb 14 14:23:55 2008 +0000
@@ -11,7 +11,7 @@
   demux_stream_t *ds;
   struct codecs_st *codec;
   unsigned int format;
-  int inited;
+  int initialized;
   float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar)
   // output format:
   int sample_format;
@@ -56,7 +56,7 @@
   demux_stream_t *ds;
   struct codecs_st *codec;
   unsigned int format;
-  int inited;
+  int initialized;
   float timer;		  // absolute time in video stream, since last start/seek
   float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar)
   // frame counters:
@@ -79,7 +79,7 @@
   // output driver/filters: (set by libmpcodecs core)
   unsigned int outfmtidx;
   struct vf_instance_s *vfilter;          // the video filter chain, used for this video stream
-  int vf_inited;
+  int vf_initialized;
 #ifdef DYNAMIC_PLUGINS
   void *dec_handle;
 #endif