media: add property to configure kernel buffer sizes
[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 typedef gboolean (*GstRTSPSendFunc)      (GstBuffer *buffer, guint8 channel, gpointer user_data);
45 typedef gboolean (*GstRTSPSendListFunc)  (GstBufferList *blist, guint8 channel, gpointer user_data);
46 typedef void     (*GstRTSPKeepAliveFunc) (gpointer user_data);
47
48 /**
49  * GstRTSPMediaTrans:
50  * @idx: a stream index
51  * @send_rtp: callback for sending RTP messages
52  * @send_rtcp: callback for sending RTCP messages
53  * @send_rtp_list: callback for sending RTP messages
54  * @send_rtcp_list: callback for sending RTCP messages
55  * @user_data: user data passed in the callbacks
56  * @notify: free function for the user_data.
57  * @keep_alive: keep alive callback
58  * @ka_user_data: data passed to @keep_alive
59  * @ka_notify: called when @ka_user_data is freed
60  * @active: if we are actively sending
61  * @timeout: if we timed out
62  * @transport: a transport description
63  * @rtpsource: the receiver rtp source object
64  *
65  * A Transport description for stream @idx
66  */
67 struct _GstRTSPMediaTrans {
68   guint idx;
69
70   GstRTSPSendFunc      send_rtp;
71   GstRTSPSendFunc      send_rtcp;
72   GstRTSPSendListFunc  send_rtp_list;
73   GstRTSPSendListFunc  send_rtcp_list;
74   gpointer             user_data;
75   GDestroyNotify       notify;
76
77   GstRTSPKeepAliveFunc keep_alive;
78   gpointer             ka_user_data;
79   GDestroyNotify       ka_notify;
80   gboolean             active;
81   gboolean             timeout;
82
83   GstRTSPTransport    *transport;
84
85   GObject             *rtpsource;
86 };
87
88 #include "rtsp-auth.h"
89
90 /**
91  * GstRTSPMediaStream:
92  * @srcpad: the srcpad of the stream
93  * @payloader: the payloader of the format
94  * @prepared: if the stream is prepared for streaming
95  * @recv_rtp_sink: sinkpad for RTP buffers
96  * @recv_rtcp_sink: sinkpad for RTCP buffers
97  * @send_rtp_src: srcpad for RTP buffers
98  * @send_rtcp_src: srcpad for RTCP buffers
99  * @udpsrc: the udp source elements for RTP/RTCP
100  * @udpsink: the udp sink elements for RTP/RTCP
101  * @appsrc: the app source elements for RTP/RTCP
102  * @appsink: the app sink elements for RTP/RTCP
103  * @server_port: the server ports for this stream
104  * @caps_sig: the signal id for detecting caps
105  * @caps: the caps of the stream
106  * @tranports: the current transports being streamed
107  *
108  * The definition of a media stream. The streams are identified by @id.
109  */
110 struct _GstRTSPMediaStream {
111   GstPad       *srcpad;
112   GstElement   *payloader;
113   gboolean      prepared;
114
115   /* pads on the rtpbin */
116   GstPad       *recv_rtcp_sink;
117   GstPad       *recv_rtp_sink;
118   GstPad       *send_rtp_sink;
119   GstPad       *send_rtp_src;
120   GstPad       *send_rtcp_src;
121
122   /* the RTPSession object */
123   GObject      *session;
124
125   /* sinks used for sending and receiving RTP and RTCP, they share
126    * sockets */
127   GstElement   *udpsrc[2];
128   GstElement   *udpsink[2];
129   /* for TCP transport */
130   GstElement   *appsrc[2];
131   GstElement   *appsink[2];
132
133   GstElement   *tee[2];
134   GstElement   *selector[2];
135
136   /* server ports for sending/receiving */
137   GstRTSPRange  server_port;
138
139   /* the caps of the stream */
140   gulong        caps_sig;
141   GstCaps      *caps;
142
143   /* transports we stream to */
144   GList        *transports;
145
146   /* to filter out duplicate destinations in case multiudpsink is too old to do
147    * this for us */
148   gboolean      filter_duplicates;
149   GList        *destinations;
150 };
151
152 /**
153  * GstRTSPMediaStatus:
154  * @GST_RTSP_MEDIA_STATUS_UNPREPARED: media pipeline not prerolled
155  * @GST_RTSP_MEDIA_STATUS_PREPARING: media pipeline is prerolling
156  * @GST_RTSP_MEDIA_STATUS_PREPARED: media pipeline is prerolled
157  * @GST_RTSP_MEDIA_STATUS_ERROR: media pipeline is in error
158  *
159  * The state of the media pipeline.
160  */
161 typedef enum {
162   GST_RTSP_MEDIA_STATUS_UNPREPARED = 0,
163   GST_RTSP_MEDIA_STATUS_PREPARING  = 1,
164   GST_RTSP_MEDIA_STATUS_PREPARED   = 2,
165   GST_RTSP_MEDIA_STATUS_ERROR      = 3
166 } GstRTSPMediaStatus;
167
168 /**
169  * GstRTSPMedia:
170  * @lock: for protecting the object
171  * @cond: for signaling the object
172  * @shared: if this media can be shared between clients
173  * @reusable: if this media can be reused after an unprepare
174  * @protocols: the allowed lower transport for this stream
175  * @reused: if this media has been reused
176  * @is_ipv6: if this media is using ipv6
177  * @element: the data providing element
178  * @streams: the different streams provided by @element
179  * @dynamic: list of dynamic elements managed by @element
180  * @status: the status of the media pipeline
181  * @active: the number of active connections
182  * @pipeline: the toplevel pipeline
183  * @fakesink: for making state changes async
184  * @source: the bus watch for pipeline messages.
185  * @id: the id of the watch
186  * @is_live: if the pipeline is live
187  * @buffering: if the pipeline is buffering
188  * @target_state: the desired target state of the pipeline
189  * @rtpbin: the rtpbin
190  * @range: the range of the media being streamed
191  *
192  * A class that contains the GStreamer element along with a list of
193  * #GstRTSPMediaStream objects that can produce data.
194  *
195  * This object is usually created from a #GstRTSPMediaFactory.
196  */
197 struct _GstRTSPMedia {
198   GObject            parent;
199
200   GMutex            *lock;
201   GCond             *cond;
202
203   gboolean           shared;
204   gboolean           reusable;
205   GstRTSPLowerTrans  protocols;
206   gboolean           reused;
207   gboolean           is_ipv6;
208   gboolean           eos_shutdown;
209   guint              buffer_size;
210   GstRTSPAuth       *auth;
211
212   GstElement        *element;
213   GArray            *streams;
214   GList             *dynamic;
215   GstRTSPMediaStatus status;
216   gint               active;
217   gboolean           eos_pending;
218   gboolean           adding;
219
220   /* the pipeline for the media */
221   GstElement        *pipeline;
222   GstElement        *fakesink;
223   GSource           *source;
224   guint              id;
225
226   gboolean           is_live;
227   gboolean           buffering;
228   GstState           target_state;
229
230   /* RTP session manager */
231   GstElement        *rtpbin;
232
233   /* the range of media */
234   GstRTSPTimeRange   range;
235 };
236
237 /**
238  * GstRTSPMediaClass:
239  * @context: the main context for dispatching messages
240  * @loop: the mainloop for message.
241  * @thread: the thread dispatching messages.
242  * @handle_message: handle a message
243  * @unprepare: the default implementation sets the pipeline's state
244  *             to GST_STATE_NULL.
245  *
246  * The RTSP media class
247  */
248 struct _GstRTSPMediaClass {
249   GObjectClass  parent_class;
250
251   /* thread for the mainloop */
252   GMainContext *context;
253   GMainLoop    *loop;
254   GThread      *thread;
255
256   /* vmethods */
257   gboolean     (*handle_message)  (GstRTSPMedia *media, GstMessage *message);
258   gboolean     (*unprepare)       (GstRTSPMedia *media);
259
260   /* signals */
261   gboolean     (*prepared)        (GstRTSPMedia *media);
262   gboolean     (*unprepared)      (GstRTSPMedia *media);
263
264   gboolean     (*new_state)       (GstRTSPMedia *media, GstState state);
265 };
266
267 GType                 gst_rtsp_media_get_type         (void);
268
269 /* creating the media */
270 GstRTSPMedia *        gst_rtsp_media_new              (void);
271
272 void                  gst_rtsp_media_set_shared       (GstRTSPMedia *media, gboolean shared);
273 gboolean              gst_rtsp_media_is_shared        (GstRTSPMedia *media);
274
275 void                  gst_rtsp_media_set_reusable     (GstRTSPMedia *media, gboolean reusable);
276 gboolean              gst_rtsp_media_is_reusable      (GstRTSPMedia *media);
277
278 void                  gst_rtsp_media_set_protocols    (GstRTSPMedia *media, GstRTSPLowerTrans protocols);
279 GstRTSPLowerTrans     gst_rtsp_media_get_protocols    (GstRTSPMedia *media);
280
281 void                  gst_rtsp_media_set_eos_shutdown (GstRTSPMedia *media, gboolean eos_shutdown);
282 gboolean              gst_rtsp_media_is_eos_shutdown  (GstRTSPMedia *media);
283
284 void                  gst_rtsp_media_set_auth         (GstRTSPMedia *media, GstRTSPAuth *auth);
285 GstRTSPAuth *         gst_rtsp_media_get_auth         (GstRTSPMedia *media);
286
287 void                  gst_rtsp_media_set_buffer_size  (GstRTSPMedia *media, guint size);
288 guint                 gst_rtsp_media_get_buffer_size  (GstRTSPMedia *media);
289
290 /* prepare the media for playback */
291 gboolean              gst_rtsp_media_prepare          (GstRTSPMedia *media);
292 gboolean              gst_rtsp_media_is_prepared      (GstRTSPMedia *media);
293 gboolean              gst_rtsp_media_unprepare        (GstRTSPMedia *media);
294
295 /* dealing with the media */
296 guint                 gst_rtsp_media_n_streams        (GstRTSPMedia *media);
297 GstRTSPMediaStream *  gst_rtsp_media_get_stream       (GstRTSPMedia *media, guint idx);
298
299 gboolean              gst_rtsp_media_seek             (GstRTSPMedia *media, GstRTSPTimeRange *range);
300 gchar *               gst_rtsp_media_get_range_string (GstRTSPMedia *media, gboolean play);
301
302 GstFlowReturn         gst_rtsp_media_stream_rtp       (GstRTSPMediaStream *stream, GstBuffer *buffer);
303 GstFlowReturn         gst_rtsp_media_stream_rtcp      (GstRTSPMediaStream *stream, GstBuffer *buffer);
304
305 gboolean              gst_rtsp_media_set_state        (GstRTSPMedia *media, GstState state, GArray *transports);
306
307 void                  gst_rtsp_media_remove_elements  (GstRTSPMedia *media);
308
309 void                  gst_rtsp_media_trans_cleanup    (GstRTSPMediaTrans *trans);
310
311 G_END_DECLS
312
313 #endif /* __GST_RTSP_MEDIA_H__ */