summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2018-09-10 23:30:56 +1000
committerMatthew Waters <matthew@centricular.com>2018-09-21 19:36:52 +1000
commitcf46d49b1e94587b15093dfdf12431c1ab00ba57 (patch)
treee04cc13635cc45a2d22423ab9ef3f3613f34b774
parentf0a47139325cae76a5cc0ece1c2533c7a1d39084 (diff)
webrtcbin: functionify dependent element checks
-rw-r--r--ext/webrtc/gstwebrtcbin.c93
1 files changed, 54 insertions, 39 deletions
diff --git a/ext/webrtc/gstwebrtcbin.c b/ext/webrtc/gstwebrtcbin.c
index c75b1caaa..268432caa 100644
--- a/ext/webrtc/gstwebrtcbin.c
+++ b/ext/webrtc/gstwebrtcbin.c
@@ -81,6 +81,58 @@ static void _update_need_negotiation (GstWebRTCBin * webrtc);
#define GST_CAT_DEFAULT gst_webrtc_bin_debug
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
+static gboolean
+_have_nice_elements (GstWebRTCBin * webrtc)
+{
+ GstPluginFeature *feature;
+
+ feature = gst_registry_lookup_feature (gst_registry_get (), "nicesrc");
+ if (feature) {
+ gst_object_unref (feature);
+ } else {
+ GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, NULL,
+ ("%s", "libnice elements are not available"));
+ return FALSE;
+ }
+
+ feature = gst_registry_lookup_feature (gst_registry_get (), "nicesink");
+ if (feature) {
+ gst_object_unref (feature);
+ } else {
+ GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, NULL,
+ ("%s", "libnice elements are not available"));
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+static gboolean
+_have_dtls_elements (GstWebRTCBin * webrtc)
+{
+ GstPluginFeature *feature;
+
+ feature = gst_registry_lookup_feature (gst_registry_get (), "dtlsdec");
+ if (feature) {
+ gst_object_unref (feature);
+ } else {
+ GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, NULL,
+ ("%s", "dtls elements are not available"));
+ return FALSE;
+ }
+
+ feature = gst_registry_lookup_feature (gst_registry_get (), "dtlsenc");
+ if (feature) {
+ gst_object_unref (feature);
+ } else {
+ GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, NULL,
+ ("%s", "dtls elements are not available"));
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
GQuark
gst_webrtc_bin_error_quark (void)
{
@@ -3750,29 +3802,8 @@ gst_webrtc_bin_change_state (GstElement * element, GstStateChange transition)
switch (transition) {
case GST_STATE_CHANGE_NULL_TO_READY:{
- GstElement *nice;
- if (!webrtc->rtpbin) {
- /* FIXME: is this the right thing for a missing plugin? */
- GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, (NULL),
- ("%s", "rtpbin element is not available"));
- return GST_STATE_CHANGE_FAILURE;
- }
- nice = gst_element_factory_make ("nicesrc", NULL);
- if (!nice) {
- /* FIXME: is this the right thing for a missing plugin? */
- GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, (NULL),
- ("%s", "libnice elements are not available"));
- return GST_STATE_CHANGE_FAILURE;
- }
- gst_object_unref (nice);
- nice = gst_element_factory_make ("nicesink", NULL);
- if (!nice) {
- /* FIXME: is this the right thing for a missing plugin? */
- GST_ELEMENT_ERROR (webrtc, CORE, MISSING_PLUGIN, (NULL),
- ("%s", "libnice elements are not available"));
+ if (!_have_nice_elements (webrtc) || !_have_dtls_elements (webrtc))
return GST_STATE_CHANGE_FAILURE;
- }
- gst_object_unref (nice);
_update_need_negotiation (webrtc);
break;
}
@@ -3819,26 +3850,10 @@ gst_webrtc_bin_request_new_pad (GstElement * element, GstPadTemplate * templ,
{
GstWebRTCBin *webrtc = GST_WEBRTC_BIN (element);
GstWebRTCBinPad *pad = NULL;
- GstPluginFeature *feature;
guint serial;
- feature = gst_registry_lookup_feature (gst_registry_get (), "nicesrc");
- if (feature) {
- gst_object_unref (feature);
- } else {
- GST_ELEMENT_ERROR (element, CORE, MISSING_PLUGIN, NULL,
- ("%s", "libnice elements are not available"));
+ if (!_have_nice_elements (webrtc) || !_have_dtls_elements (webrtc))
return NULL;
- }
-
- feature = gst_registry_lookup_feature (gst_registry_get (), "nicesink");
- if (feature) {
- gst_object_unref (feature);
- } else {
- GST_ELEMENT_ERROR (element, CORE, MISSING_PLUGIN, NULL,
- ("%s", "libnice elements are not available"));
- return NULL;
- }
if (templ->direction == GST_PAD_SINK ||
g_strcmp0 (templ->name_template, "sink_%u") == 0) {