From: Julian Bouzas Date: Fri, 12 Apr 2019 12:38:03 +0000 (-0400) Subject: tracer: latency: Remove redundant if conditions X-Git-Tag: 1.16.2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e128c7310cfeae4f49e2d77c8a48baee7ca1adcb;p=platform%2Fupstream%2Fgstreamer.git tracer: latency: Remove redundant if conditions --- diff --git a/plugins/tracers/gstlatency.c b/plugins/tracers/gstlatency.c index 486f2c350f..24760471f3 100644 --- a/plugins/tracers/gstlatency.c +++ b/plugins/tracers/gstlatency.c @@ -411,11 +411,9 @@ do_push_event_pre (GstTracer * self, guint64 ts, GstPad * pad, GstEvent * ev) if (GST_OBJECT_FLAG_IS_SET (peer_parent, GST_ELEMENT_FLAG_SINK)) { /* store event so that we can calculate latency when the buffer that * follows has been processed */ - if (!g_object_get_qdata ((GObject *) pad, latency_probe_id)) { - GST_DEBUG ("%s_%s: Storing latency event", GST_DEBUG_PAD_NAME (pad)); - g_object_set_qdata ((GObject *) pad, latency_probe_id, - gst_event_ref (ev)); - } + GST_DEBUG ("%s_%s: Storing latency event", GST_DEBUG_PAD_NAME (pad)); + g_object_set_qdata ((GObject *) pad, latency_probe_id, + gst_event_ref (ev)); } } @@ -437,12 +435,10 @@ do_push_event_pre (GstTracer * self, guint64 ts, GstPad * pad, GstEvent * ev) if (!g_str_equal (value_element_id, element_id) || !g_str_equal (value_element_name, element_name) || !g_str_equal (value_pad_name, pad_name)) { - if (!g_object_get_qdata ((GObject *) pad, sub_latency_probe_id)) { - GST_DEBUG ("%s_%s: Storing sub-latency event", - GST_DEBUG_PAD_NAME (pad)); - g_object_set_qdata ((GObject *) pad, sub_latency_probe_id, - gst_event_ref (ev)); - } + GST_DEBUG ("%s_%s: Storing sub-latency event", + GST_DEBUG_PAD_NAME (pad)); + g_object_set_qdata ((GObject *) pad, sub_latency_probe_id, + gst_event_ref (ev)); } g_free (pad_name);