gst-libs/gst/audio/gstbaseaudiosink.c: Fix regression that made GStreamer skip the first samples of audio.

Original commit message from CVS:
* gst-libs/gst/audio/gstbaseaudiosink.c:
(gst_base_audio_sink_async_play):
Fix regression that made GStreamer skip the first samples of audio.
Fixes #414684.
This commit is contained in:
Wim Taymans 2007-03-06 12:10:08 +00:00
parent d7e51be66f
commit a2a8b1b8ce
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2007-03-06 Wim Taymans <wim@fluendo.com>
* gst-libs/gst/audio/gstbaseaudiosink.c:
(gst_base_audio_sink_async_play):
Fix regression that made GStreamer skip the first samples of audio.
Fixes #414684.
2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:

View file

@ -1071,11 +1071,11 @@ gst_base_audio_sink_async_play (GstBaseSink * basesink)
rate_num, rate_denom);
gst_clock_set_master (sink->provided_clock, clock);
/* start ringbuffer so we can start slaving right away */
gst_ring_buffer_start (sink->ringbuffer);
}
no_clock:
gst_ring_buffer_start (sink->ringbuffer);
return GST_STATE_CHANGE_SUCCESS;
}