mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
urisourcebin: Fix inverted check for an existing slot
CID 1363330
This commit is contained in:
parent
f41198db9d
commit
bd9fd89d61
1 changed files with 1 additions and 1 deletions
|
@ -1725,7 +1725,7 @@ analyse_source (GstURISourceBin * urisrc, gboolean * is_raw,
|
|||
GST_URI_SOURCE_BIN_LOCK (urisrc);
|
||||
if (use_queue) {
|
||||
OutputSlotInfo *slot = get_output_slot (urisrc, FALSE, FALSE, NULL);
|
||||
if (slot)
|
||||
if (!slot)
|
||||
goto no_slot;
|
||||
|
||||
gst_pad_link (pad, slot->sinkpad);
|
||||
|
|
Loading…
Reference in a new issue