mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
decklinkvideosrc: add missing break in set_property-code
This commit is contained in:
parent
c41617b9a2
commit
58b5d5e10d
2 changed files with 4 additions and 1 deletions
|
@ -1570,8 +1570,10 @@ gst_decklink_configure_duplex_mode (Device * device, BMDDuplexMode duplex_mode)
|
||||||
GST_DEBUG ("Device does not support Half-Duplex-Mode");
|
GST_DEBUG ("Device does not support Half-Duplex-Mode");
|
||||||
return DUPLEX_MODE_SET_SUCCESS;
|
return DUPLEX_MODE_SET_SUCCESS;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
|
GST_ERROR ("duplex_mode=%d", duplex_mode);
|
||||||
g_assert_not_reached ();
|
g_assert_not_reached ();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
GST_DEBUG ("Setting duplex-mode of Device");
|
GST_DEBUG ("Setting duplex-mode of Device");
|
||||||
result = input->config->SetInt (bmdDeckLinkConfigDuplexMode, duplex_mode);
|
result = input->config->SetInt (bmdDeckLinkConfigDuplexMode, duplex_mode);
|
||||||
|
|
|
@ -447,6 +447,7 @@ gst_decklink_video_src_set_property (GObject * object, guint property_id,
|
||||||
("Format %d not supported", self->video_format), (NULL));
|
("Format %d not supported", self->video_format), (NULL));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case PROP_DUPLEX_MODE:
|
case PROP_DUPLEX_MODE:
|
||||||
self->duplex_mode =
|
self->duplex_mode =
|
||||||
gst_decklink_duplex_mode_from_enum ((GstDecklinkDuplexMode)
|
gst_decklink_duplex_mode_from_enum ((GstDecklinkDuplexMode)
|
||||||
|
|
Loading…
Reference in a new issue