mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-01 05:39:51 +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
|
||||
gst_decklink_src_video_src_query (GstPad * pad, GstQuery * query)
|
||||
{
|
||||
gboolean ret;
|
||||
gboolean ret = FALSE;
|
||||
GstDecklinkSrc *decklinksrc;
|
||||
|
||||
decklinksrc = GST_DECKLINK_SRC (gst_pad_get_parent (pad));
|
||||
|
|
Loading…
Reference in a new issue