rtsp-server: GST_EXPORT -> GST_RTSP_SERVER_API
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-onvif-media-factory.h
1 /* GStreamer
2  * Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __GST_RTSP_ONVIF_MEDIA_FACTORY_H__
21 #define __GST_RTSP_ONVIF_MEDIA_FACTORY_H__
22
23 #include <gst/gst.h>
24 #include "rtsp-media-factory.h"
25
26 #define GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY              (gst_rtsp_onvif_media_factory_get_type ())
27 #define GST_IS_RTSP_ONVIF_MEDIA_FACTORY(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY))
28 #define GST_IS_RTSP_ONVIF_MEDIA_FACTORY_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY))
29 #define GST_RTSP_ONVIF_MEDIA_FACTORY_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY, GstRTSPOnvifMediaFactoryClass))
30 #define GST_RTSP_ONVIF_MEDIA_FACTORY(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY, GstRTSPOnvifMediaFactory))
31 #define GST_RTSP_ONVIF_MEDIA_FACTORY_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_ONVIF_MEDIA_FACTORY, GstRTSPOnvifMediaFactoryClass))
32 #define GST_RTSP_ONVIF_MEDIA_FACTORY_CAST(obj)         ((GstRTSPOnvifMediaFactory*)(obj))
33 #define GST_RTSP_ONVIF_MEDIA_FACTORY_CLASS_CAST(klass) ((GstRTSPOnvifMediaFactoryClass*)(klass))
34
35 typedef struct GstRTSPOnvifMediaFactoryClass GstRTSPOnvifMediaFactoryClass;
36 typedef struct GstRTSPOnvifMediaFactory GstRTSPOnvifMediaFactory;
37 typedef struct GstRTSPOnvifMediaFactoryPrivate GstRTSPOnvifMediaFactoryPrivate;
38
39 struct GstRTSPOnvifMediaFactoryClass
40 {
41   GstRTSPMediaFactoryClass parent;
42   gboolean (*has_backchannel_support) (GstRTSPOnvifMediaFactory * factory);
43
44   /*< private >*/
45   gpointer _gst_reserved[GST_PADDING_LARGE];
46 };
47
48 struct GstRTSPOnvifMediaFactory
49 {
50   GstRTSPMediaFactory parent;
51   GstRTSPOnvifMediaFactoryPrivate *priv;
52
53   /*< private >*/
54   gpointer _gst_reserved[GST_PADDING];
55 };
56
57 GST_RTSP_SERVER_API
58 GType gst_rtsp_onvif_media_factory_get_type (void);
59
60 GST_RTSP_SERVER_API
61 GstRTSPMediaFactory *gst_rtsp_onvif_media_factory_new (void);
62
63 GST_RTSP_SERVER_API
64 void gst_rtsp_onvif_media_factory_set_backchannel_launch (GstRTSPOnvifMediaFactory *
65     factory, const gchar * launch);
66 GST_RTSP_SERVER_API
67 gchar * gst_rtsp_onvif_media_factory_get_backchannel_launch (GstRTSPOnvifMediaFactory * factory);
68
69 GST_RTSP_SERVER_API
70 gboolean gst_rtsp_onvif_media_factory_has_backchannel_support (GstRTSPOnvifMediaFactory * factory);
71
72 GST_RTSP_SERVER_API
73 void gst_rtsp_onvif_media_factory_set_backchannel_bandwidth (GstRTSPOnvifMediaFactory * factory, guint bandwidth);
74 GST_RTSP_SERVER_API
75 guint gst_rtsp_onvif_media_factory_get_backchannel_bandwidth (GstRTSPOnvifMediaFactory * factory);
76
77 gboolean gst_rtsp_onvif_media_factory_requires_backchannel (GstRTSPMediaFactory * factory, GstRTSPContext * ctx);
78
79 #endif /* __GST_RTSP_ONVIF_MEDIA_FACTORY_H__ */