webrtc: ice: Fix GstWebRTCICE parent class

It is a GstObject, not a GObject.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2819>
This commit is contained in:
Philippe Normand 2022-07-30 17:19:42 +01:00 committed by GStreamer Marge Bot
parent 10eaae1243
commit 3bdf3455a0

View file

@ -68,7 +68,7 @@ struct _GstWebRTCICECandidateStats
typedef void (*GstWebRTCICEOnCandidateFunc) (GstWebRTCICE * ice, guint stream_id, gchar * candidate, gpointer user_data);
struct _GstWebRTCICEClass {
GObjectClass parent_class;
GstObjectClass parent_class;
GstWebRTCICEStream * (*add_stream) (GstWebRTCICE * ice,
guint session_id);
GstWebRTCICETransport * (*find_transport) (GstWebRTCICE * ice,