[xiph-commits] r2972 - liboggplay/trunk/plugin

shans at svn.annodex.net shans at svn.annodex.net
Sun Jun 17 18:55:29 PDT 2007


Author: shans
Date: 2007-06-17 18:55:28 -0700 (Sun, 17 Jun 2007)
New Revision: 2972

Modified:
   liboggplay/trunk/plugin/plugin_oggplay.c
Log:
initialisation of rate variables to 0



Modified: liboggplay/trunk/plugin/plugin_oggplay.c
===================================================================
--- liboggplay/trunk/plugin/plugin_oggplay.c	2007-06-18 01:52:58 UTC (rev 2971)
+++ liboggplay/trunk/plugin/plugin_oggplay.c	2007-06-18 01:55:28 UTC (rev 2972)
@@ -254,6 +254,10 @@
   pointers->player = NULL;
   pointers->location = strdup(location);
   pointers->last_displayed_frame_time = 0;
+  pointers->video_rate = 0;
+  pointers->audio_rate = 0;
+  pointers->audio_channels = 0;
+  pointers->callback_period = 0;
 
   SEM_CREATE(pointers->start_stop_sem, 1);
   SEM_WAIT(pointers->start_stop_sem);



More information about the commits mailing list