diff --git a/gst/gstbin.c b/gst/gstbin.c index 770fb56f03..73758213e9 100644 --- a/gst/gstbin.c +++ b/gst/gstbin.c @@ -2376,11 +2376,8 @@ gst_bin_do_latency_func (GstBin * bin) GST_TIME_ARGS (min_latency)); } else { GST_WARNING_OBJECT (element, - "failed to configure latency of %" GST_TIME_FORMAT, + "did not really configure latency of %" GST_TIME_FORMAT, GST_TIME_ARGS (min_latency)); - GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL), - ("Failed to configure latency of %" GST_TIME_FORMAT, - GST_TIME_ARGS (min_latency))); } } else { /* this is not a real problem, we just don't configure any latency. */ diff --git a/libs/gst/base/gstbasesrc.c b/libs/gst/base/gstbasesrc.c index dc97580b27..fb1679bdd1 100644 --- a/libs/gst/base/gstbasesrc.c +++ b/libs/gst/base/gstbasesrc.c @@ -1737,7 +1737,7 @@ gst_base_src_default_event (GstBaseSrc * src, GstEvent * event) break; } default: - result = TRUE; + result = FALSE; break; } return result; @@ -2614,7 +2614,8 @@ gst_base_src_default_negotiate (GstBaseSrc * basesrc) GST_DEBUG_OBJECT (basesrc, "caps of peer: %" GST_PTR_FORMAT, peercaps); if (peercaps) { /* get intersection */ - caps = gst_caps_intersect_full (peercaps, thiscaps, GST_CAPS_INTERSECT_FIRST); + caps = + gst_caps_intersect_full (peercaps, thiscaps, GST_CAPS_INTERSECT_FIRST); GST_DEBUG_OBJECT (basesrc, "intersect: %" GST_PTR_FORMAT, caps); gst_caps_unref (peercaps); } else {