2 * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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.
21 #include <gst/rtsp/gstrtsprange.h>
22 #include <gst/rtsp/gstrtspurl.h>
24 #ifndef __GST_RTSP_MEDIA_H__
25 #define __GST_RTSP_MEDIA_H__
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))
39 typedef struct _GstRTSPMediaStream GstRTSPMediaStream;
40 typedef struct _GstRTSPMedia GstRTSPMedia;
41 typedef struct _GstRTSPMediaClass GstRTSPMediaClass;
42 typedef struct _GstRTSPMediaTrans GstRTSPMediaTrans;
44 typedef gboolean (*GstRTSPSendFunc) (GstBuffer *buffer, guint8 channel, gpointer user_data);
45 typedef void (*GstRTSPKeepAliveFunc) (gpointer user_data);
49 * @idx: a stream index
50 * @send_rtp: callback for sending RTP messages
51 * @send_rtcp: callback for sending RTCP messages
52 * @send_rtp_list: callback for sending RTP messages
53 * @send_rtcp_list: callback for sending RTCP messages
54 * @user_data: user data passed in the callbacks
55 * @notify: free function for the user_data.
56 * @keep_alive: keep alive callback
57 * @ka_user_data: data passed to @keep_alive
58 * @ka_notify: called when @ka_user_data is freed
59 * @active: if we are actively sending
60 * @timeout: if we timed out
61 * @transport: a transport description
62 * @rtpsource: the receiver rtp source object
64 * A Transport description for stream @idx
66 struct _GstRTSPMediaTrans {
69 GstRTSPSendFunc send_rtp;
70 GstRTSPSendFunc send_rtcp;
72 GDestroyNotify notify;
74 GstRTSPKeepAliveFunc keep_alive;
75 gpointer ka_user_data;
76 GDestroyNotify ka_notify;
80 GstRTSPTransport *transport;
85 #include "rtsp-auth.h"
89 * @srcpad: the srcpad of the stream
90 * @payloader: the payloader of the format
91 * @prepared: if the stream is prepared for streaming
92 * @recv_rtp_sink: sinkpad for RTP buffers
93 * @recv_rtcp_sink: sinkpad for RTCP buffers
94 * @send_rtp_src: srcpad for RTP buffers
95 * @send_rtcp_src: srcpad for RTCP buffers
96 * @udpsrc: the udp source elements for RTP/RTCP
97 * @udpsink: the udp sink elements for RTP/RTCP
98 * @appsrc: the app source elements for RTP/RTCP
99 * @appsink: the app sink elements for RTP/RTCP
100 * @server_port: the server ports for this stream
101 * @caps_sig: the signal id for detecting caps
102 * @caps: the caps of the stream
103 * @tranports: the current transports being streamed
105 * The definition of a media stream. The streams are identified by @id.
107 struct _GstRTSPMediaStream {
109 GstElement *payloader;
112 /* pads on the rtpbin */
113 GstPad *recv_rtcp_sink;
114 GstPad *recv_rtp_sink;
115 GstPad *send_rtp_sink;
116 GstPad *send_rtp_src;
117 GstPad *send_rtcp_src;
119 /* the RTPSession object */
122 /* sinks used for sending and receiving RTP and RTCP, they share
124 GstElement *udpsrc[2];
125 GstElement *udpsink[2];
126 /* for TCP transport */
127 GstElement *appsrc[2];
128 GstElement *appqueue[2];
129 GstElement *appsink[2];
132 GstElement *selector[2];
134 /* server ports for sending/receiving */
135 GstRTSPRange server_port;
137 /* the caps of the stream */
141 /* transports we stream to */
146 * GstRTSPMediaStatus:
147 * @GST_RTSP_MEDIA_STATUS_UNPREPARED: media pipeline not prerolled
148 * @GST_RTSP_MEDIA_STATUS_PREPARING: media pipeline is prerolling
149 * @GST_RTSP_MEDIA_STATUS_PREPARED: media pipeline is prerolled
150 * @GST_RTSP_MEDIA_STATUS_ERROR: media pipeline is in error
152 * The state of the media pipeline.
155 GST_RTSP_MEDIA_STATUS_UNPREPARED = 0,
156 GST_RTSP_MEDIA_STATUS_PREPARING = 1,
157 GST_RTSP_MEDIA_STATUS_PREPARED = 2,
158 GST_RTSP_MEDIA_STATUS_ERROR = 3
159 } GstRTSPMediaStatus;
163 * @lock: for protecting the object
164 * @cond: for signaling the object
165 * @shared: if this media can be shared between clients
166 * @reusable: if this media can be reused after an unprepare
167 * @protocols: the allowed lower transport for this stream
168 * @reused: if this media has been reused
169 * @is_ipv6: if this media is using ipv6
170 * @element: the data providing element
171 * @streams: the different streams provided by @element
172 * @dynamic: list of dynamic elements managed by @element
173 * @status: the status of the media pipeline
174 * @active: the number of active connections
175 * @pipeline: the toplevel pipeline
176 * @fakesink: for making state changes async
177 * @source: the bus watch for pipeline messages.
178 * @id: the id of the watch
179 * @is_live: if the pipeline is live
180 * @seekable: if the pipeline can perform a seek
181 * @buffering: if the pipeline is buffering
182 * @target_state: the desired target state of the pipeline
183 * @rtpbin: the rtpbin
184 * @range: the range of the media being streamed
186 * A class that contains the GStreamer element along with a list of
187 * #GstRTSPMediaStream objects that can produce data.
189 * This object is usually created from a #GstRTSPMediaFactory.
191 struct _GstRTSPMedia {
199 GstRTSPLowerTrans protocols;
202 gboolean eos_shutdown;
205 gchar *multicast_group;
210 GstRTSPMediaStatus status;
212 gboolean eos_pending;
215 /* the pipeline for the media */
216 GstElement *pipeline;
217 GstElement *fakesink;
224 GstState target_state;
226 /* RTP session manager */
229 /* the range of media */
230 GstRTSPTimeRange range;
235 * @context: the main context for dispatching messages
236 * @loop: the mainloop for message.
237 * @thread: the thread dispatching messages.
238 * @handle_message: handle a message
239 * @unprepare: the default implementation sets the pipeline's state
241 * @handle_mtu: handle a mtu
243 * The RTSP media class
245 struct _GstRTSPMediaClass {
246 GObjectClass parent_class;
248 /* thread for the mainloop */
249 GMainContext *context;
254 gboolean (*handle_message) (GstRTSPMedia *media, GstMessage *message);
255 gboolean (*unprepare) (GstRTSPMedia *media);
256 void (*handle_mtu) (GstRTSPMedia *media, guint mtu);
259 gboolean (*prepared) (GstRTSPMedia *media);
260 gboolean (*unprepared) (GstRTSPMedia *media);
262 gboolean (*new_state) (GstRTSPMedia *media, GstState state);
265 GType gst_rtsp_media_get_type (void);
267 /* creating the media */
268 GstRTSPMedia * gst_rtsp_media_new (void);
270 void gst_rtsp_media_set_shared (GstRTSPMedia *media, gboolean shared);
271 gboolean gst_rtsp_media_is_shared (GstRTSPMedia *media);
273 void gst_rtsp_media_set_reusable (GstRTSPMedia *media, gboolean reusable);
274 gboolean gst_rtsp_media_is_reusable (GstRTSPMedia *media);
276 void gst_rtsp_media_set_protocols (GstRTSPMedia *media, GstRTSPLowerTrans protocols);
277 GstRTSPLowerTrans gst_rtsp_media_get_protocols (GstRTSPMedia *media);
279 void gst_rtsp_media_set_eos_shutdown (GstRTSPMedia *media, gboolean eos_shutdown);
280 gboolean gst_rtsp_media_is_eos_shutdown (GstRTSPMedia *media);
282 void gst_rtsp_media_set_auth (GstRTSPMedia *media, GstRTSPAuth *auth);
283 GstRTSPAuth * gst_rtsp_media_get_auth (GstRTSPMedia *media);
285 void gst_rtsp_media_set_buffer_size (GstRTSPMedia *media, guint size);
286 guint gst_rtsp_media_get_buffer_size (GstRTSPMedia *media);
288 void gst_rtsp_media_set_multicast_group (GstRTSPMedia *media, const gchar * mc);
289 gchar * gst_rtsp_media_get_multicast_group (GstRTSPMedia *media);
292 /* prepare the media for playback */
293 gboolean gst_rtsp_media_prepare (GstRTSPMedia *media);
294 gboolean gst_rtsp_media_is_prepared (GstRTSPMedia *media);
295 gboolean gst_rtsp_media_unprepare (GstRTSPMedia *media);
297 /* dealing with the media */
298 guint gst_rtsp_media_n_streams (GstRTSPMedia *media);
299 GstRTSPMediaStream * gst_rtsp_media_get_stream (GstRTSPMedia *media, guint idx);
301 gboolean gst_rtsp_media_seek (GstRTSPMedia *media, GstRTSPTimeRange *range);
302 gchar * gst_rtsp_media_get_range_string (GstRTSPMedia *media, gboolean play);
304 GstFlowReturn gst_rtsp_media_stream_rtp (GstRTSPMediaStream *stream, GstBuffer *buffer);
305 GstFlowReturn gst_rtsp_media_stream_rtcp (GstRTSPMediaStream *stream, GstBuffer *buffer);
307 gboolean gst_rtsp_media_set_state (GstRTSPMedia *media, GstState state, GArray *transports);
309 void gst_rtsp_media_remove_elements (GstRTSPMedia *media);
311 void gst_rtsp_media_handle_mtu (GstRTSPMedia *media, guint mtu);
313 void gst_rtsp_media_trans_cleanup (GstRTSPMediaTrans *trans);
317 #endif /* __GST_RTSP_MEDIA_H__ */