mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
webrtc: Fix wrong parent classes for DTLSTransport and ICETransport
Those are GObjects not GstBins
This commit is contained in:
parent
92576e7db8
commit
4c97eb10bc
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ struct _GstWebRTCDTLSTransport
|
|||
|
||||
struct _GstWebRTCDTLSTransportClass
|
||||
{
|
||||
GstBinClass parent_class;
|
||||
GstObjectClass parent_class;
|
||||
|
||||
gpointer _padding[GST_PADDING];
|
||||
};
|
||||
|
|
|
@ -53,7 +53,7 @@ struct _GstWebRTCICETransport
|
|||
|
||||
struct _GstWebRTCICETransportClass
|
||||
{
|
||||
GstBinClass parent_class;
|
||||
GstObjectClass parent_class;
|
||||
|
||||
gboolean (*gather_candidates) (GstWebRTCICETransport * transport);
|
||||
|
||||
|
|
Loading…
Reference in a new issue