summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2018-06-05 14:11:13 -0400
committerThibault Saunier <tsaunier@igalia.com>2018-06-05 14:11:24 -0400
commit4c97eb10bcc83c69ec4ac8179fedac830ab4c0f2 (patch)
treee15bf9f72c25af798c99f06fa46ac402f73ad310 /gst-libs
parent92576e7db83a548fcb54e80e35758a7c10e08cf2 (diff)
downloadgstreamer-plugins-bad-4c97eb10bcc83c69ec4ac8179fedac830ab4c0f2.tar.gz
webrtc: Fix wrong parent classes for DTLSTransport and ICETransport
Those are GObjects not GstBins
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/webrtc/dtlstransport.h2
-rw-r--r--gst-libs/gst/webrtc/icetransport.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/webrtc/dtlstransport.h b/gst-libs/gst/webrtc/dtlstransport.h
index b27e97790..207328e73 100644
--- a/gst-libs/gst/webrtc/dtlstransport.h
+++ b/gst-libs/gst/webrtc/dtlstransport.h
@@ -53,7 +53,7 @@ struct _GstWebRTCDTLSTransport
struct _GstWebRTCDTLSTransportClass
{
- GstBinClass parent_class;
+ GstObjectClass parent_class;
gpointer _padding[GST_PADDING];
};
diff --git a/gst-libs/gst/webrtc/icetransport.h b/gst-libs/gst/webrtc/icetransport.h
index 4dad627ef..86860a236 100644
--- a/gst-libs/gst/webrtc/icetransport.h
+++ b/gst-libs/gst/webrtc/icetransport.h
@@ -53,7 +53,7 @@ struct _GstWebRTCICETransport
struct _GstWebRTCICETransportClass
{
- GstBinClass parent_class;
+ GstObjectClass parent_class;
gboolean (*gather_candidates) (GstWebRTCICETransport * transport);