From f2c8761a5041c2356acf95d0ac86631484f889a1 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Mon, 4 Jul 2011 12:58:38 -0700 Subject: [PATCH] goom: Don't answer lantency queries before negotiation --- gst/goom/gstgoom.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c index 30a6c8ce66..c8e13ed65d 100644 --- a/gst/goom/gstgoom.c +++ b/gst/goom/gstgoom.c @@ -400,7 +400,7 @@ gst_goom_sink_event (GstPad * pad, GstEvent * event) static gboolean gst_goom_src_query (GstPad * pad, GstQuery * query) { - gboolean res; + gboolean res = FALSE; GstGoom *goom; goom = GST_GOOM (gst_pad_get_parent (pad)); @@ -415,6 +415,9 @@ gst_goom_src_query (GstPad * pad, GstQuery * query) GstClockTime our_latency; guint max_samples; + if (goom->rate == 0) + break; + if ((res = gst_pad_peer_query (goom->sinkpad, query))) { gst_query_parse_latency (query, &us_live, &min_latency, &max_latency);