summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/pulse/pulsesrc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/pulse/pulsesrc.c b/ext/pulse/pulsesrc.c
index fa603454e..43ec91e9c 100644
--- a/ext/pulse/pulsesrc.c
+++ b/ext/pulse/pulsesrc.c
@@ -528,6 +528,11 @@ gst_pulsesrc_stream_latency_update_cb (pa_stream * s, void *userdata)
info = pa_stream_get_timing_info (s);
+ if (!info) {
+ GST_LOG_OBJECT (GST_PULSESRC_CAST (userdata),
+ "latency update (information unknown)");
+ return;
+ }
#if HAVE_PULSE_0_9_11
source_usec = info->configured_source_usec;
#else