Initial release including wifi display based on gst-rtsp-server-1.4.1
[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 GType                    gst_rtsp_session_media_get_type       (void);
65
66 GstRTSPSessionMedia *    gst_rtsp_session_media_new            (const gchar *path,
67                                                                 GstRTSPMedia *media);
68
69 gboolean                 gst_rtsp_session_media_matches        (GstRTSPSessionMedia *media,
70                                                                 const gchar *path,
71                                                                 gint * matched);
72 GstRTSPMedia *           gst_rtsp_session_media_get_media      (GstRTSPSessionMedia *media);
73
74 GstClockTime             gst_rtsp_session_media_get_base_time  (GstRTSPSessionMedia *media);
75 /* control media */
76 gboolean                 gst_rtsp_session_media_set_state      (GstRTSPSessionMedia *media,
77                                                                 GstState state);
78
79 void                     gst_rtsp_session_media_set_rtsp_state (GstRTSPSessionMedia *media,
80                                                                 GstRTSPState state);
81 GstRTSPState             gst_rtsp_session_media_get_rtsp_state (GstRTSPSessionMedia *media);
82
83 /* get stream transport config */
84 GstRTSPStreamTransport * gst_rtsp_session_media_set_transport  (GstRTSPSessionMedia *media,
85                                                                 GstRTSPStream *stream,
86                                                                 GstRTSPTransport *tr);
87 GstRTSPStreamTransport * gst_rtsp_session_media_get_transport  (GstRTSPSessionMedia *media,
88                                                                 guint idx);
89
90 gboolean                 gst_rtsp_session_media_alloc_channels (GstRTSPSessionMedia *media,
91                                                                 GstRTSPRange *range);
92
93 gchar *                  gst_rtsp_session_media_get_rtpinfo    (GstRTSPSessionMedia * media);
94
95 G_END_DECLS
96
97 #endif /* __GST_RTSP_SESSION_MEDIA_H__ */