From 4c97eb10bcc83c69ec4ac8179fedac830ab4c0f2 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 5 Jun 2018 14:11:13 -0400 Subject: [PATCH] webrtc: Fix wrong parent classes for DTLSTransport and ICETransport Those are GObjects not GstBins --- gst-libs/gst/webrtc/dtlstransport.h | 2 +- gst-libs/gst/webrtc/icetransport.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/webrtc/dtlstransport.h b/gst-libs/gst/webrtc/dtlstransport.h index b27e977..207328e 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 4dad627..86860a2 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); -- 2.7.4