mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
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:
parent
d7e51be66f
commit
a2a8b1b8ce
2 changed files with 10 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue