diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-03-13 13:11:17 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-03-13 13:36:33 +0000 |
commit | 333f636555f07c0f731892c68e7837e4ecb9e40d (patch) | |
tree | 38b335ed4c0bc74f73914b14b5a32afc885ea4ce /gst-libs/gst/webrtc/rtcsessiondescription.h | |
parent | bdbe83a88e923f4d1233a6298c588a8b77b625bc (diff) | |
download | gstreamer-plugins-bad-333f636555f07c0f731892c68e7837e4ecb9e40d.tar.gz |
webrtc: GST_EXPORT -> GST_WEBRTC_API
We need different export decorators for the different libs.
For now no actual change though, just rename before the release,
and add prelude headers to define the new decorator to GST_EXPORT.
Diffstat (limited to 'gst-libs/gst/webrtc/rtcsessiondescription.h')
-rw-r--r-- | gst-libs/gst/webrtc/rtcsessiondescription.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gst-libs/gst/webrtc/rtcsessiondescription.h b/gst-libs/gst/webrtc/rtcsessiondescription.h index 080d21c7e..3783dff39 100644 --- a/gst-libs/gst/webrtc/rtcsessiondescription.h +++ b/gst-libs/gst/webrtc/rtcsessiondescription.h @@ -26,11 +26,11 @@ G_BEGIN_DECLS -GST_EXPORT +GST_WEBRTC_API const gchar * gst_webrtc_sdp_type_to_string (GstWebRTCSDPType type); #define GST_TYPE_WEBRTC_SESSION_DESCRIPTION (gst_webrtc_session_description_get_type()) -GST_EXPORT +GST_WEBRTC_API GType gst_webrtc_session_description_get_type (void); /** @@ -46,11 +46,11 @@ struct _GstWebRTCSessionDescription GstSDPMessage *sdp; }; -GST_EXPORT +GST_WEBRTC_API GstWebRTCSessionDescription * gst_webrtc_session_description_new (GstWebRTCSDPType type, GstSDPMessage *sdp); -GST_EXPORT +GST_WEBRTC_API GstWebRTCSessionDescription * gst_webrtc_session_description_copy (const GstWebRTCSessionDescription * src); -GST_EXPORT +GST_WEBRTC_API void gst_webrtc_session_description_free (GstWebRTCSessionDescription * desc); G_END_DECLS |