612173bdf202ffc9b74f36d9a130a6f3d3c4e954
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-session-media.h
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.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 #include <gst/gst.h>
21
22 #include <gst/rtsp/gstrtsptransport.h>
23
24 #ifndef __GST_RTSP_SESSION_MEDIA_H__
25 #define __GST_RTSP_SESSION_MEDIA_H__
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_RTSP_SESSION_MEDIA              (gst_rtsp_session_media_get_type ())
30 #define GST_IS_RTSP_SESSION_MEDIA(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SESSION_MEDIA))
31 #define GST_IS_RTSP_SESSION_MEDIA_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SESSION_MEDIA))
32 #define GST_RTSP_SESSION_MEDIA_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SESSION_MEDIA, GstRTSPSessionMediaClass))
33 #define GST_RTSP_SESSION_MEDIA(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SESSION_MEDIA, GstRTSPSessionMedia))
34 #define GST_RTSP_SESSION_MEDIA_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SESSION_MEDIA, GstRTSPSessionMediaClass))
35 #define GST_RTSP_SESSION_MEDIA_CAST(obj)         ((GstRTSPSessionMedia*)(obj))
36 #define GST_RTSP_SESSION_MEDIA_CLASS_CAST(klass) ((GstRTSPSessionMediaClass*)(klass))
37
38 typedef struct _GstRTSPSessionMedia GstRTSPSessionMedia;
39 typedef struct _GstRTSPSessionMediaClass GstRTSPSessionMediaClass;
40 typedef struct _GstRTSPSessionMediaPrivate GstRTSPSessionMediaPrivate;
41
42 /**
43  * GstRTSPSessionMedia:
44  *
45  * State of a client session regarding a specific media identified by path.
46  */
47 struct _GstRTSPSessionMedia
48 {
49   GObject  parent;
50
51   /*< private >*/
52   GstRTSPSessionMediaPrivate *priv;
53   gpointer _gst_reserved[GST_PADDING];
54 };
55
56 struct _GstRTSPSessionMediaClass
57 {
58   GObjectClass  parent_class;
59
60   /*< private >*/
61   gpointer _gst_reserved[GST_PADDING];
62 };
63
64 GST_EXPORT
65 GType                    gst_rtsp_session_media_get_type       (void);
66
67 GST_EXPORT
68 GstRTSPSessionMedia *    gst_rtsp_session_media_new            (const gchar *path,
69                                                                 GstRTSPMedia *media);
70
71 GST_EXPORT
72 gboolean                 gst_rtsp_session_media_matches        (GstRTSPSessionMedia *media,
73                                                                 const gchar *path,
74                                                                 gint * matched);
75
76 GST_EXPORT
77 GstRTSPMedia *           gst_rtsp_session_media_get_media      (GstRTSPSessionMedia *media);
78
79 GST_EXPORT
80 GstClockTime             gst_rtsp_session_media_get_base_time  (GstRTSPSessionMedia *media);
81 /* control media */
82
83 GST_EXPORT
84 gboolean                 gst_rtsp_session_media_set_state      (GstRTSPSessionMedia *media,
85                                                                 GstState state);
86
87 GST_EXPORT
88 void                     gst_rtsp_session_media_set_rtsp_state (GstRTSPSessionMedia *media,
89                                                                 GstRTSPState state);
90
91 GST_EXPORT
92 GstRTSPState             gst_rtsp_session_media_get_rtsp_state (GstRTSPSessionMedia *media);
93
94 /* get stream transport config */
95
96 GST_EXPORT
97 GstRTSPStreamTransport * gst_rtsp_session_media_set_transport  (GstRTSPSessionMedia *media,
98                                                                 GstRTSPStream *stream,
99                                                                 GstRTSPTransport *tr);
100
101 GST_EXPORT
102 GstRTSPStreamTransport * gst_rtsp_session_media_get_transport  (GstRTSPSessionMedia *media,
103                                                                 guint idx);
104
105 GST_EXPORT
106 gboolean                 gst_rtsp_session_media_alloc_channels (GstRTSPSessionMedia *media,
107                                                                 GstRTSPRange *range);
108
109 GST_EXPORT
110 gchar *                  gst_rtsp_session_media_get_rtpinfo    (GstRTSPSessionMedia * media);
111
112 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
113 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstRTSPSessionMedia, gst_object_unref)
114 #endif
115
116 G_END_DECLS
117
118 #endif /* __GST_RTSP_SESSION_MEDIA_H__ */