audiobasesink: Add explanation to the GAP event handling code

This commit is contained in:
Sebastian Dröge 2012-10-24 11:22:29 +02:00
parent 7b12afa4cb
commit 1813701ef2

View file

@ -1024,6 +1024,10 @@ gst_audio_base_sink_wait_event (GstBaseSink * bsink, GstEvent * event)
spec = &sink->ringbuffer->spec;
gst_event_parse_gap (event, &timestamp, &duration);
/* If the GAP event has a duration, handle it like a
* silence buffer of that duration. Otherwise at least
* start the ringbuffer to make sure the clock is running.
*/
if (duration != GST_CLOCK_TIME_NONE) {
n_samples =
gst_util_uint64_scale_ceil (duration, spec->info.rate, GST_SECOND);