diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2020-07-09 13:45:20 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2020-10-30 16:23:10 -0400 |
commit | e172ca5be11d8e8c1b35b218f1018c6c8fe5e769 (patch) | |
tree | bdb0a587ca425ebd813c49f27fb7095449c5c237 /ext/webrtc | |
parent | 78c687da3e351493fad017d93bfc2a1c0b47425d (diff) | |
download | gstreamer-plugins-bad-e172ca5be11d8e8c1b35b218f1018c6c8fe5e769.tar.gz |
webrtcbin: Remove unused function
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1707>
Diffstat (limited to 'ext/webrtc')
-rw-r--r-- | ext/webrtc/gstwebrtcbin.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ext/webrtc/gstwebrtcbin.c b/ext/webrtc/gstwebrtcbin.c index 67d1d55e7..a62c444d3 100644 --- a/ext/webrtc/gstwebrtcbin.c +++ b/ext/webrtc/gstwebrtcbin.c @@ -200,17 +200,6 @@ _have_dtls_elements (GstWebRTCBin * webrtc) G_DEFINE_TYPE (GstWebRTCBinPad, gst_webrtc_bin_pad, GST_TYPE_GHOST_PAD); static void -gst_webrtc_bin_pad_set_property (GObject * object, guint prop_id, - const GValue * value, GParamSpec * pspec) -{ - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void gst_webrtc_bin_pad_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec) { @@ -248,7 +237,6 @@ gst_webrtc_bin_pad_class_init (GstWebRTCBinPadClass * klass) GObjectClass *gobject_class = (GObjectClass *) klass; gobject_class->get_property = gst_webrtc_bin_pad_get_property; - gobject_class->set_property = gst_webrtc_bin_pad_set_property; gobject_class->finalize = gst_webrtc_bin_pad_finalize; g_object_class_install_property (gobject_class, |