gst: Remove dead assignments and resulting unused variables
Merged from gst-plugins-base, 8cd1b5209b68944e1be56ca8bb69e46d4abb7a34.
This commit is contained in:
parent
8ebd2e1be7
commit
aaba1b1d26
@ -1202,14 +1202,11 @@ gst_input_selector_getcaps (GstPad * pad)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* check if the pad is the active sinkpad */
|
/* check if the pad is the active sinkpad */
|
||||||
static gboolean
|
static inline gboolean
|
||||||
gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
|
gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
|
||||||
{
|
{
|
||||||
GstSelectorPad *selpad;
|
|
||||||
gboolean res;
|
gboolean res;
|
||||||
|
|
||||||
selpad = GST_SELECTOR_PAD_CAST (pad);
|
|
||||||
|
|
||||||
GST_INPUT_SELECTOR_LOCK (sel);
|
GST_INPUT_SELECTOR_LOCK (sel);
|
||||||
res = (pad == sel->active_sinkpad);
|
res = (pad == sel->active_sinkpad);
|
||||||
GST_INPUT_SELECTOR_UNLOCK (sel);
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user