mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
gst-libs/gst/audio/gstbaseaudiosink.c
Original commit message from CVS: 2007-02-22 Andy Wingo <wingo@pobox.com> * gst-libs/gst/audio/gstbaseaudiosink.c (gst_base_audio_sink_init): Disable pull-mode activation until we figure out how to make audio sinks go to PLAYING.
This commit is contained in:
parent
00d7c52de8
commit
d9b6796d91
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-02-22 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst-libs/gst/audio/gstbaseaudiosink.c
|
||||
(gst_base_audio_sink_init): Disable pull-mode activation until we
|
||||
figure out how to make audio sinks go to PLAYING.
|
||||
|
||||
2007-02-22 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
|
||||
|
|
|
@ -178,7 +178,11 @@ gst_base_audio_sink_init (GstBaseAudioSink * baseaudiosink,
|
|||
(GstAudioClockGetTimeFunc) gst_base_audio_sink_get_time, baseaudiosink);
|
||||
|
||||
GST_BASE_SINK (baseaudiosink)->can_activate_push = TRUE;
|
||||
#if 0
|
||||
/* disabling until we fix state changes so that both READY_TO_PAUSED and
|
||||
PAUSED_TO_PLAYING return SUCCESS */
|
||||
GST_BASE_SINK (baseaudiosink)->can_activate_pull = TRUE;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue