libs: Add deprecation guard
authorEdward Hervey <edward@centricular.com>
Mon, 2 Apr 2018 06:42:01 +0000 (08:42 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 2 Apr 2018 06:53:28 +0000 (08:53 +0200)
Those functions have been marked as deprecated

gst-libs/gst/pbutils/gstdiscoverer-types.c
gst-libs/gst/pbutils/gstdiscoverer.h
gst-libs/gst/rtsp/gstrtsptransport.c
gst-libs/gst/rtsp/gstrtsptransport.h

index 8bd8c23c576b851869bf5fca796eec56647bbd2d..95d0c188bf2b2c95781fc5b8d6360596ac8e567b 100644 (file)
@@ -689,6 +689,7 @@ gst_discoverer_stream_info_get_stream_id (GstDiscovererStreamInfo * info)
   return info->stream_id;
 }
 
+#ifndef GST_DISABLE_DEPRECATED
 /**
  * gst_discoverer_stream_info_get_misc:
  * @info: a #GstDiscovererStreamInfo
@@ -707,6 +708,7 @@ gst_discoverer_stream_info_get_misc (GstDiscovererStreamInfo * info)
 
   return info->misc;
 }
+#endif
 
 /* GstDiscovererContainerInfo */
 
@@ -1039,6 +1041,7 @@ DISCOVERER_INFO_ACCESSOR_CODE (seekable, gboolean, FALSE);
 
 DISCOVERER_INFO_ACCESSOR_CODE (live, gboolean, FALSE);
 
+#ifndef GST_DISABLE_DEPRECATED
 /**
  * gst_discoverer_info_get_misc:
  * @info: a #GstDiscovererInfo
@@ -1052,6 +1055,7 @@ DISCOVERER_INFO_ACCESSOR_CODE (live, gboolean, FALSE);
  */
 
 DISCOVERER_INFO_ACCESSOR_CODE (misc, const GstStructure *, NULL);
+#endif
 
 /**
  * gst_discoverer_info_get_tags:
index b61d0ed9f636cf799f479a6ab4fe945696822412..ef5ea2feef98475517aa4553cac6ef6a7168235c 100644 (file)
@@ -78,9 +78,10 @@ const GstToc*            gst_discoverer_stream_info_get_toc(GstDiscovererStreamI
 GST_PBUTILS_API
 const gchar*             gst_discoverer_stream_info_get_stream_id(GstDiscovererStreamInfo* info);
 
+#ifndef GST_DISABLE_DEPRECATED
 GST_PBUTILS_API
 const GstStructure*      gst_discoverer_stream_info_get_misc(GstDiscovererStreamInfo* info);
-
+#endif
 GST_PBUTILS_API
 const gchar *            gst_discoverer_stream_info_get_stream_type_nick(GstDiscovererStreamInfo* info);
 
@@ -303,8 +304,10 @@ gboolean                  gst_discoverer_info_get_seekable(const GstDiscovererIn
 GST_PBUTILS_API
 gboolean                  gst_discoverer_info_get_live(const GstDiscovererInfo* info);
 
+#ifndef GST_DISABLE_DEPRECATED
 GST_PBUTILS_API
 const GstStructure*       gst_discoverer_info_get_misc(const GstDiscovererInfo* info);
+#endif
 
 GST_PBUTILS_API
 const GstTagList*         gst_discoverer_info_get_tags(const GstDiscovererInfo* info); 
index b5c45745e3f9820024e0c62305e5131452378dbd..4cf0b294f25396721a38ba9a1d8159a96bf2c88a 100644 (file)
@@ -198,6 +198,7 @@ gst_rtsp_transport_init (GstRTSPTransport * transport)
   return GST_RTSP_OK;
 }
 
+#ifndef GST_DISABLE_DEPRECATED
 /**
  * gst_rtsp_transport_get_mime:
  * @trans: a #GstRTSPTransMode
@@ -227,6 +228,7 @@ gst_rtsp_transport_get_mime (GstRTSPTransMode trans, const gchar ** mime)
 
   return GST_RTSP_OK;
 }
+#endif
 
 /**
  * gst_rtsp_transport_get_media_type:
index 2f3797f82f6aab2a774a3e41b57e4c4f21994025..902d9dcbf1e128107b8e43b3266c6e6472ec7049 100644 (file)
@@ -183,8 +183,10 @@ GstRTSPResult      gst_rtsp_transport_parse        (const gchar *str, GstRTSPTra
 GST_RTSP_API
 gchar*             gst_rtsp_transport_as_text      (GstRTSPTransport *transport);
 
+#ifndef GST_DISABLE_DEPRECATED
 GST_RTSP_API
 GstRTSPResult      gst_rtsp_transport_get_mime     (GstRTSPTransMode trans, const gchar **mime);
+#endif
 
 GST_RTSP_API
 GstRTSPResult      gst_rtsp_transport_get_manager  (GstRTSPTransMode trans, const gchar **manager, guint option);