mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
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:
parent
10eaae1243
commit
3bdf3455a0
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ struct _GstWebRTCICECandidateStats
|
||||||
typedef void (*GstWebRTCICEOnCandidateFunc) (GstWebRTCICE * ice, guint stream_id, gchar * candidate, gpointer user_data);
|
typedef void (*GstWebRTCICEOnCandidateFunc) (GstWebRTCICE * ice, guint stream_id, gchar * candidate, gpointer user_data);
|
||||||
|
|
||||||
struct _GstWebRTCICEClass {
|
struct _GstWebRTCICEClass {
|
||||||
GObjectClass parent_class;
|
GstObjectClass parent_class;
|
||||||
GstWebRTCICEStream * (*add_stream) (GstWebRTCICE * ice,
|
GstWebRTCICEStream * (*add_stream) (GstWebRTCICE * ice,
|
||||||
guint session_id);
|
guint session_id);
|
||||||
GstWebRTCICETransport * (*find_transport) (GstWebRTCICE * ice,
|
GstWebRTCICETransport * (*find_transport) (GstWebRTCICE * ice,
|
||||||
|
|
Loading…
Reference in a new issue