]> git.sesse.net Git - vlc/commitdiff
- fix a discontinuity bug in input_ClockManageRef()
authorArnaud de Bossoreille de Ribou <bozo@videolan.org>
Tue, 8 May 2001 14:38:30 +0000 (14:38 +0000)
committerArnaud de Bossoreille de Ribou <bozo@videolan.org>
Tue, 8 May 2001 14:38:30 +0000 (14:38 +0000)
src/input/input_clock.c

index 31b7cf8bbd909ee44dff3b8bed8ae90e57aaaf9e..3989f1d54380443d2b5ab7ec17fdf14128c969d0 100644 (file)
@@ -2,7 +2,7 @@
  * input_clock.c: Clock/System date convertions, stream management
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_clock.c,v 1.14 2001/05/07 03:14:09 stef Exp $
+ * $Id: input_clock.c,v 1.15 2001/05/08 14:38:30 bozo Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -157,6 +157,11 @@ void input_ClockManageRef( input_thread_t * p_input,
             p_pgrm->last_cr = i_clock;
             mwait( ClockToSysdate( p_input, p_pgrm, i_clock ) );
         }
+        else
+        {
+            p_pgrm->delta_cr = 0;
+            p_pgrm->c_average_count = 0;
+        }
     }
     else
     {