Start with timestamp of 0 when no timestamp was found
authorWim Taymans <wim.taymans@gmail.com>
Sat, 18 Jan 2003 17:09:22 +0000 (17:09 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sat, 18 Jan 2003 17:09:22 +0000 (17:09 +0000)
Original commit message from CVS:
Start with timestamp of 0 when no timestamp was found

ext/a52dec/gsta52dec.c

index 427e191..69248c5 100644 (file)
@@ -532,7 +532,7 @@ gst_a52dec_change_state (GstElement * element)
       a52dec->level = 1;
       a52dec->bias = 384;
       a52dec->last_ts = -1;
-      a52dec->current_ts = -1;
+      a52dec->current_ts = 0;
       break;
     case GST_STATE_PAUSED_TO_PLAYING:
       break;