diff --git a/ChangeLog b/ChangeLog index def3d79bf3..f9d8279775 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-04 Tim-Philipp Müller + + * ext/esd/esdsink.c: (gst_esdsink_delay): + Don't return bogus values when esd_get_delay() fails for some + reason (#392189). + 2006-12-24 Tim-Philipp Müller * sys/ximage/gstximagesrc.c: (composite_pixel): diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c index 7fdfafcaa8..3946b301dd 100644 --- a/ext/esd/esdsink.c +++ b/ext/esd/esdsink.c @@ -424,6 +424,11 @@ gst_esdsink_delay (GstAudioSink * asink) latency = esd_get_latency (esdsink->ctrl_fd); + if (latency == (guint) - 1) { + GST_WARNING_OBJECT (asink, "couldn't get latency"); + return 0; + } + /* latency is measured in samples at a rate of 44100, this * cannot overflow. */ latency = latency * G_GINT64_CONSTANT (44100) / esdsink->rate;