Fix FSF address
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-stream.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 #include <gst/rtsp/gstrtsprange.h>
22 #include <gst/rtsp/gstrtspurl.h>
23
24 #ifndef __GST_RTSP_STREAM_H__
25 #define __GST_RTSP_STREAM_H__
26
27 G_BEGIN_DECLS
28
29 /* types for the media stream */
30 #define GST_TYPE_RTSP_STREAM              (gst_rtsp_stream_get_type ())
31 #define GST_IS_RTSP_STREAM(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_STREAM))
32 #define GST_IS_RTSP_STREAM_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_STREAM))
33 #define GST_RTSP_STREAM_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_STREAM, GstRTSPStreamClass))
34 #define GST_RTSP_STREAM(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_STREAM, GstRTSPStream))
35 #define GST_RTSP_STREAM_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_STREAM, GstRTSPStreamClass))
36 #define GST_RTSP_STREAM_CAST(obj)         ((GstRTSPStream*)(obj))
37 #define GST_RTSP_STREAM_CLASS_CAST(klass) ((GstRTSPStreamClass*)(klass))
38
39 typedef struct _GstRTSPStream GstRTSPStream;
40 typedef struct _GstRTSPStreamClass GstRTSPStreamClass;
41
42 #include "rtsp-stream-transport.h"
43
44 /**
45  * GstRTSPStream:
46  * @parent: the parent instance
47  * @idx: the stream index
48  * @srcpad: the srcpad of the stream
49  * @payloader: the payloader of the format
50  * @is_ipv6: should this stream be IPv6
51  * @buffer_size: the UDP buffer size
52  * @is_joined: if the stream is joined in a bin
53  * @send_rtp_sink: sinkpad for sending RTP buffers
54  * @recv_sink: sinkpad for receiving RTP/RTCP buffers
55  * @send_src: srcpad for sending RTP/RTCP buffers
56  * @session: the RTP session object
57  * @udpsrc: the udp source elements for RTP/RTCP
58  * @udpsink: the udp sink elements for RTP/RTCP
59  * @appsrc: the app source elements for RTP/RTCP
60  * @appqueue: the app queue elements for RTP/RTCP
61  * @appsink: the app sink elements for RTP/RTCP
62  * @tee: tee for the sending to udpsink and appsink
63  * @funnel: tee for the receiving from udpsrc and appsrc
64  * @server_port: the server ports for this stream
65  * @caps_sig: the signal id for detecting caps
66  * @caps: the caps of the stream
67  * @n_active: the number of active transports in @transports
68  * @transports: list of #GstStreamTransport being streamed to
69  *
70  * The definition of a media stream. The streams are identified by @idx.
71  */
72 struct _GstRTSPStream {
73   GObject       parent;
74
75   guint         idx;
76   GstPad       *srcpad;
77   GstElement   *payloader;
78   gboolean      is_ipv6;
79   guint         buffer_size;
80   gboolean      is_joined;
81
82   /* pads on the rtpbin */
83   GstPad       *send_rtp_sink;
84   GstPad       *recv_sink[2];
85   GstPad       *send_src[2];
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   /* for TCP transport */
95   GstElement   *appsrc[2];
96   GstElement   *appqueue[2];
97   GstElement   *appsink[2];
98
99   GstElement   *tee[2];
100   GstElement   *funnel[2];
101
102   /* server ports for sending/receiving */
103   GstRTSPRange  server_port;
104
105   /* the caps of the stream */
106   gulong        caps_sig;
107   GstCaps      *caps;
108
109   /* transports we stream to */
110   guint         n_active;
111   GList        *transports;
112 };
113
114 struct _GstRTSPStreamClass {
115   GObjectClass parent_class;
116 };
117
118 GType             gst_rtsp_stream_get_type         (void);
119
120 GstRTSPStream *   gst_rtsp_stream_new              (guint idx, GstElement *payloader,
121                                                     GstPad *srcpad);
122
123 void              gst_rtsp_stream_set_mtu          (GstRTSPStream * stream, guint mtu);
124 guint             gst_rtsp_stream_get_mtu          (GstRTSPStream * stream);
125
126 gboolean          gst_rtsp_stream_join_bin         (GstRTSPStream * stream,
127                                                     GstBin *bin, GstElement *rtpbin,
128                                                     GstState state);
129 gboolean          gst_rtsp_stream_leave_bin        (GstRTSPStream * stream,
130                                                     GstBin *bin, GstElement *rtpbin);
131
132 gboolean          gst_rtsp_stream_get_rtpinfo      (GstRTSPStream * stream,
133                                                     guint *rtptime, guint * seq);
134
135 GstFlowReturn     gst_rtsp_stream_recv_rtp         (GstRTSPStream *stream,
136                                                     GstBuffer *buffer);
137 GstFlowReturn     gst_rtsp_stream_recv_rtcp        (GstRTSPStream *stream,
138                                                     GstBuffer *buffer);
139
140 gboolean          gst_rtsp_stream_add_transport    (GstRTSPStream *stream,
141                                                     GstRTSPStreamTransport *trans);
142 gboolean          gst_rtsp_stream_remove_transport (GstRTSPStream *stream,
143                                                     GstRTSPStreamTransport *trans);
144
145 G_END_DECLS
146
147 #endif /* __GST_RTSP_STREAM_H__ */