Make the server handle arbitrary pipelines
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-session.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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/rtsp/gstrtsptransport.h>
23
24 #include "rtsp-media.h"
25 #include "rtsp-media-factory.h"
26
27 #ifndef __GST_RTSP_SESSION_H__
28 #define __GST_RTSP_SESSION_H__
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_RTSP_SESSION              (gst_rtsp_session_get_type ())
33 #define GST_IS_RTSP_SESSION(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SESSION))
34 #define GST_IS_RTSP_SESSION_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SESSION))
35 #define GST_RTSP_SESSION_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SESSION, GstRTSPSessionClass))
36 #define GST_RTSP_SESSION(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SESSION, GstRTSPSession))
37 #define GST_RTSP_SESSION_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SESSION, GstRTSPSessionClass))
38 #define GST_RTSP_SESSION_CAST(obj)         ((GstRTSPSession*)(obj))
39 #define GST_RTSP_SESSION_CLASS_CAST(klass) ((GstRTSPSessionClass*)(klass))
40
41 typedef struct _GstRTSPSession GstRTSPSession;
42 typedef struct _GstRTSPSessionClass GstRTSPSessionClass;
43
44 typedef struct _GstRTSPSessionStream GstRTSPSessionStream;
45 typedef struct _GstRTSPSessionMedia GstRTSPSessionMedia;
46
47 /**
48  * GstRTSPSessionStream:
49  *
50  * Configuration of a stream. A stream is an audio or video stream related to a
51  * media.
52  */
53 struct _GstRTSPSessionStream
54 {
55   guint idx;
56
57   /* the owner media */
58   GstRTSPSessionMedia *media;
59
60   GstRTSPMediaStream *media_stream;
61
62   /* client and server transports */
63   gchar *destination;
64   GstRTSPTransport *client_trans;
65   GstRTSPTransport *server_trans;
66
67   /* pads on the rtpbin */
68   GstPad       *recv_rtcp_sink;
69   GstPad       *send_rtp_sink;
70   GstPad       *send_rtp_src;
71   GstPad       *send_rtcp_src;
72
73   /* sinks used for sending and receiving RTP and RTCP, they share sockets */
74   GstElement   *udpsrc[2];
75   GstElement   *udpsink[2];
76 };
77
78 /**
79  * GstRTSPSessionMedia:
80  *
81  * State of a client session regarding a specific media. The media is identified
82  * with the media factory. The media is typically composed of multiple streams,
83  * such as an audio and video stream.
84  */
85 struct _GstRTSPSessionMedia
86 {
87   /* the owner session */
88   GstRTSPSession *session;
89
90   /* the media we are handling */
91   GstRTSPMediaFactory *factory;
92
93   /* the pipeline for the media */
94   GstElement   *pipeline;
95   GstRTSPMediaBin *mediabin;
96
97   /* RTP session manager */
98   GstElement   *rtpbin;
99
100   /* for TCP transport */
101   GstElement   *fdsink;
102
103   /* configuration for the different streams */
104   GList        *streams;
105 };
106
107 /**
108  * GstRTSPSession:
109  *
110  * Session information kept by the server for a specific client.
111  * One client session, identified with a session id, can handle multiple medias
112  * identified with the media factory.
113  */
114 struct _GstRTSPSession {
115   GObject       parent;
116
117   gchar        *sessionid;
118
119   GList        *medias;
120 };
121
122 struct _GstRTSPSessionClass {
123   GObjectClass  parent_class;
124 };
125
126 GType                  gst_rtsp_session_get_type             (void);
127
128 GstRTSPSession *       gst_rtsp_session_new                  (const gchar *sessionid);
129
130 GstRTSPSessionMedia *  gst_rtsp_session_get_media            (GstRTSPSession *sess, const gchar *location,
131                                                               GstRTSPMediaFactory *factory);
132
133 GstStateChangeReturn   gst_rtsp_session_media_play           (GstRTSPSessionMedia *media);
134 GstStateChangeReturn   gst_rtsp_session_media_pause          (GstRTSPSessionMedia *media);
135 GstStateChangeReturn   gst_rtsp_session_media_stop           (GstRTSPSessionMedia *media);
136
137 GstRTSPSessionStream * gst_rtsp_session_media_get_stream     (GstRTSPSessionMedia *media,
138                                                               guint idx);
139
140 GstRTSPTransport *     gst_rtsp_session_stream_set_transport (GstRTSPSessionStream *stream,
141                                                               const gchar *destination,
142                                                               GstRTSPTransport *ct);
143
144 G_END_DECLS
145
146 #endif /* __GST_RTSP_SESSION_H__ */