webrtc:ice: Add padding to structures

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2891>
This commit is contained in:
Thibault Saunier 2022-08-14 17:38:24 -04:00 committed by GStreamer Marge Bot
parent 75e8f80999
commit ff0d73be57

View File

@ -41,6 +41,8 @@ struct _GstWebRTCICE
GstWebRTCICEConnectionState ice_connection_state; GstWebRTCICEConnectionState ice_connection_state;
guint min_rtp_port; guint min_rtp_port;
guint max_rtp_port; guint max_rtp_port;
gpointer _gst_reserved[GST_PADDING];
}; };
struct _GstWebRTCICECandidateStats struct _GstWebRTCICECandidateStats
@ -53,6 +55,8 @@ struct _GstWebRTCICECandidateStats
const gchar *relay_proto; const gchar *relay_proto;
guint prio; guint prio;
gchar *url; gchar *url;
gpointer _gst_reserved[GST_PADDING_LARGE];
}; };
/** /**
@ -115,6 +119,7 @@ struct _GstWebRTCICEClass {
GstWebRTCICEStream * stream, GstWebRTCICEStream * stream,
GstWebRTCICECandidateStats ** local_stats, GstWebRTCICECandidateStats ** local_stats,
GstWebRTCICECandidateStats ** remote_stats); GstWebRTCICECandidateStats ** remote_stats);
gpointer _gst_reserved[GST_PADDING];
}; };
GST_WEBRTC_API GST_WEBRTC_API