From: Edward Hervey Date: Tue, 3 Nov 2009 17:14:12 +0000 (+0100) Subject: gst: Remove dead assignments and resulting unused variables X-Git-Tag: 1.19.3~507^2~17844 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aaba1b1d2617511347e33bebc66af0c5961b02e5;p=platform%2Fupstream%2Fgstreamer.git gst: Remove dead assignments and resulting unused variables Merged from gst-plugins-base, 8cd1b5209b68944e1be56ca8bb69e46d4abb7a34. --- diff --git a/gst/selector/gstinputselector.c b/gst/selector/gstinputselector.c index e5918bb..b829f4f 100644 --- a/gst/selector/gstinputselector.c +++ b/gst/selector/gstinputselector.c @@ -1202,14 +1202,11 @@ gst_input_selector_getcaps (GstPad * pad) } /* check if the pad is the active sinkpad */ -static gboolean +static inline gboolean gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad) { - GstSelectorPad *selpad; gboolean res; - selpad = GST_SELECTOR_PAD_CAST (pad); - GST_INPUT_SELECTOR_LOCK (sel); res = (pad == sel->active_sinkpad); GST_INPUT_SELECTOR_UNLOCK (sel);