mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gst-libs/gst/audio/gstbaseaudiosink.c: Disable pull mode scheduling, we're not ready for it yet and it subtly breaks ...
Original commit message from CVS: * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_init): Disable pull mode scheduling, we're not ready for it yet and it subtly breaks a lot of things.
This commit is contained in:
parent
998c07972c
commit
4764e6044f
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-09-13 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
||||
(gst_base_audio_sink_init):
|
||||
Disable pull mode scheduling, we're not ready for it yet and it subtly
|
||||
breaks a lot of things.
|
||||
|
||||
2007-09-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tests/check/elements/libvisual.c:
|
||||
|
|
|
@ -225,9 +225,9 @@ gst_base_audio_sink_init (GstBaseAudioSink * baseaudiosink,
|
|||
(GstAudioClockGetTimeFunc) gst_base_audio_sink_get_time, baseaudiosink);
|
||||
|
||||
GST_BASE_SINK (baseaudiosink)->can_activate_push = TRUE;
|
||||
/* FIXME: fix state changes so that both READY_TO_PAUSED and
|
||||
PAUSED_TO_PLAYING return SUCCESS */
|
||||
GST_BASE_SINK (baseaudiosink)->can_activate_pull = TRUE;
|
||||
/* FIXME, enable pull mode when segments, latency, state changes, negotiation
|
||||
* and clock slaving are figured out */
|
||||
GST_BASE_SINK (baseaudiosink)->can_activate_pull = FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue