mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
decklinksrc: disable pull mode
decklink device doesn't support any pull mode related functionality. it's more like a live source, you see. Fixes: #667720.
This commit is contained in:
parent
86eeca91de
commit
409e8dcc90
1 changed files with 2 additions and 3 deletions
|
@ -901,9 +901,8 @@ gst_decklink_src_audio_src_activatepull (GstPad * pad, gboolean active)
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (decklinksrc, "activatepull");
|
GST_DEBUG_OBJECT (decklinksrc, "activatepull");
|
||||||
|
|
||||||
|
|
||||||
gst_object_unref (decklinksrc);
|
gst_object_unref (decklinksrc);
|
||||||
return TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadLinkReturn
|
static GstPadLinkReturn
|
||||||
|
@ -1096,7 +1095,7 @@ gst_decklink_src_video_src_activatepull (GstPad * pad, gboolean active)
|
||||||
|
|
||||||
|
|
||||||
gst_object_unref (decklinksrc);
|
gst_object_unref (decklinksrc);
|
||||||
return TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadLinkReturn
|
static GstPadLinkReturn
|
||||||
|
|
Loading…
Reference in a new issue