gst-libs/gst/audio/gstbaseaudiosink.c: If we receive EOS we can start playback of what we had.

Original commit message from CVS:
* gst-libs/gst/audio/gstbaseaudiosink.c:
(gst_base_audio_sink_event), (gst_base_audio_sink_render):
If we receive EOS we can start playback of what we had.
This commit is contained in:
Wim Taymans 2005-10-08 11:47:52 +00:00
parent bd17e7c611
commit bd80afd2d1
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-10-08 Wim Taymans <wim@fluendo.com>
* gst-libs/gst/audio/gstbaseaudiosink.c:
(gst_base_audio_sink_event), (gst_base_audio_sink_render):
If we receive EOS we can start playback of what we had.
2005-10-08 Wim Taymans <wim@fluendo.com>
* gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),

View file

@ -306,6 +306,7 @@ gst_base_audio_sink_event (GstBaseSink * bsink, GstEvent * event)
gst_ring_buffer_clear_all (sink->ringbuffer);
break;
case GST_EVENT_EOS:
gst_ring_buffer_start (sink->ringbuffer);
break;
default:
break;