Start with timestamp of 0 when no timestamp was found

Original commit message from CVS:
Start with timestamp of 0 when no timestamp was found
This commit is contained in:
Wim Taymans 2003-01-18 17:09:22 +00:00
parent 2ab382b196
commit 75713b2171

View 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;