mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-02 18:23:56 +00:00
decklink: Fix unitialized variable
This commit is contained in:
parent
c00bdd866b
commit
a6be944da9
1 changed files with 1 additions and 1 deletions
|
@ -1153,7 +1153,7 @@ gst_decklink_src_video_src_event (GstPad * pad, GstEvent * event)
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_decklink_src_video_src_query (GstPad * pad, GstQuery * query)
|
gst_decklink_src_video_src_query (GstPad * pad, GstQuery * query)
|
||||||
{
|
{
|
||||||
gboolean ret;
|
gboolean ret = FALSE;
|
||||||
GstDecklinkSrc *decklinksrc;
|
GstDecklinkSrc *decklinksrc;
|
||||||
|
|
||||||
decklinksrc = GST_DECKLINK_SRC (gst_pad_get_parent (pad));
|
decklinksrc = GST_DECKLINK_SRC (gst_pad_get_parent (pad));
|
||||||
|
|
Loading…
Reference in a new issue