Add support for live streams
[platform/upstream/gst-rtsp-server.git] / gst / rtsp-server / rtsp-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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/gst.h>
21 #include <gst/rtsp/gstrtsprange.h>
22 #include <gst/rtsp/gstrtspurl.h>
23
24 #ifndef __GST_RTSP_MEDIA_H__
25 #define __GST_RTSP_MEDIA_H__
26
27 G_BEGIN_DECLS
28
29 /* types for the media */
30 #define GST_TYPE_RTSP_MEDIA              (gst_rtsp_media_get_type ())
31 #define GST_IS_RTSP_MEDIA(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA))
32 #define GST_IS_RTSP_MEDIA_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA))
33 #define GST_RTSP_MEDIA_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA, GstRTSPMediaClass))
34 #define GST_RTSP_MEDIA(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA, GstRTSPMedia))
35 #define GST_RTSP_MEDIA_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA, GstRTSPMediaClass))
36 #define GST_RTSP_MEDIA_CAST(obj)         ((GstRTSPMedia*)(obj))
37 #define GST_RTSP_MEDIA_CLASS_CAST(klass) ((GstRTSPMediaClass*)(klass))
38
39 typedef struct _GstRTSPMediaStream GstRTSPMediaStream;
40 typedef struct _GstRTSPMedia GstRTSPMedia;
41 typedef struct _GstRTSPMediaClass GstRTSPMediaClass;
42 typedef struct _GstRTSPMediaTrans GstRTSPMediaTrans;
43
44 /**
45  * GstRTSPMediaTrans:
46  * @idx: a stream index
47  * @transport: a transport description
48  *
49  * A Transport description for stream @idx
50  */
51 struct _GstRTSPMediaTrans {
52   guint idx;
53
54   GstRTSPTransport *transport;
55 };
56
57 /**
58  * GstRTSPMediaStream:
59  *
60  * @media: the owner #GstRTSPMedia
61  * @srcpad: the srcpad of the stream
62  * @payloader: the payloader of the format
63  * @prepared: if the stream is prepared for streaming
64  * @server_port: the server udp ports
65  * @recv_rtp_sink: sinkpad for RTP buffers
66  * @recv_rtcp_sink: sinkpad for RTCP buffers
67  * @recv_rtp_src: srcpad for RTP buffers
68  * @recv_rtcp_src: srcpad for RTCP buffers
69  * @udpsrc: the udp source elements for RTP/RTCP
70  * @udpsink: the udp sink elements for RTP/RTCP
71  * @caps_sig: the signal id for detecting caps
72  * @caps: the caps of the stream
73  *
74  * The definition of a media stream. The streams are identified by @id.
75  */
76 struct _GstRTSPMediaStream {
77   GstPad       *srcpad;
78   GstElement   *payloader;
79   gboolean      prepared;
80
81   /* pads on the rtpbin */
82   GstPad       *recv_rtcp_sink;
83   GstPad       *send_rtp_sink;
84   GstPad       *send_rtp_src;
85   GstPad       *send_rtcp_src;
86
87   /* the RTPSession object */
88   GObject      *session;
89
90   /* sinks used for sending and receiving RTP and RTCP, they share
91    * sockets */
92   GstElement   *udpsrc[2];
93   GstElement   *udpsink[2];
94   GstElement   *appsrc[2];
95
96   /* server ports for sending/receiving */
97   GstRTSPRange  server_port;
98
99   /* the caps of the stream */
100   gulong        caps_sig;
101   GstCaps      *caps;
102 };
103
104 /**
105  * GstRTSPMedia:
106  * @shared: if this media can be shared between clients
107  * @element: the data providing element
108  * @stream: the different streams provided by @element
109  * @prepared: if the media is prepared for streaming
110  * @pipeline: the toplevel pipeline
111  * @rtpbin: the rtpbin
112  * @multifdsink: multifdsink element for TCP transport
113  *
114  * A class that contains the GStreamer element along with a list of
115  * #GstRTSPediaStream objects that can produce data.
116  *
117  * This object is usually created from a #GstRTSPMediaFactory.
118  */
119 struct _GstRTSPMedia {
120   GObject       parent;
121
122   gboolean      shared;
123   gboolean      complete;
124
125   GstElement   *element;
126   GArray       *streams;
127   gboolean      prepared;
128
129   /* the pipeline for the media */
130   GstElement   *pipeline;
131   GSource      *source;
132   guint         id;
133
134   gboolean      is_live;
135   gboolean      buffering;
136   GstState      target_state;
137
138   /* RTP session manager */
139   GstElement   *rtpbin;
140
141   /* for TCP transport */
142   GstElement   *multifdsink;
143
144   /* the range of media */
145   GstRTSPTimeRange range;
146 };
147
148 /**
149  * GstRTSPMediaClass:
150  * @context: the main context for dispatching messages
151  * @loop: the mainloop for message.
152  * @thread: the thread dispatching messages.
153  * @handle_message: handle a message
154  *
155  * The RTSP media class
156  */
157 struct _GstRTSPMediaClass {
158   GObjectClass  parent_class;
159
160   /* thread for the mainloop */
161   GMainContext *context;
162   GMainLoop    *loop;
163   GThread      *thread;
164
165   gboolean     (*handle_message)  (GstRTSPMedia *media, GstMessage *message);
166 };
167
168 GType                 gst_rtsp_media_get_type         (void);
169
170 /* creating the media */
171 GstRTSPMedia *        gst_rtsp_media_new              (void);
172
173 void                  gst_rtsp_media_set_shared       (GstRTSPMedia *media, gboolean shared);
174 gboolean              gst_rtsp_media_is_shared        (GstRTSPMedia *media);
175
176 /* prepare the media for playback */
177 gboolean              gst_rtsp_media_prepare          (GstRTSPMedia *media);
178
179 /* dealing with the media */
180 guint                 gst_rtsp_media_n_streams        (GstRTSPMedia *media);
181 GstRTSPMediaStream *  gst_rtsp_media_get_stream       (GstRTSPMedia *media, guint idx);
182
183 gboolean              gst_rtsp_media_play             (GstRTSPMedia *media, GArray *trans);
184 gboolean              gst_rtsp_media_pause            (GstRTSPMedia *media, GArray *trans);
185 gboolean              gst_rtsp_media_stop             (GstRTSPMedia *media, GArray *trans);
186
187 G_END_DECLS
188
189 #endif /* __GST_RTSP_MEDIA_H__ */