gst: Remove dead assignments and resulting unused variables

Merged from gst-plugins-base, 8cd1b5209b.
This commit is contained in:
Edward Hervey 2009-11-03 18:14:12 +01:00 committed by Sebastian Dröge
parent 8ebd2e1be7
commit aaba1b1d26

View file

@ -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);