gst/rtpmanager/: Update comment.
[platform/upstream/gst-plugins-good.git] / gst / rtpmanager / rtpsession.h
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim@fluendo.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 #ifndef __RTP_SESSION_H__
21 #define __RTP_SESSION_H__
22
23 #include <gst/gst.h>
24 #include <gst/netbuffer/gstnetbuffer.h>
25
26 #include "rtpsource.h"
27
28 typedef struct _RTPSession RTPSession;
29 typedef struct _RTPSessionClass RTPSessionClass;
30
31 #define RTP_TYPE_SESSION             (rtp_session_get_type())
32 #define RTP_SESSION(sess)            (G_TYPE_CHECK_INSTANCE_CAST((sess),RTP_TYPE_SESSION,RTPSession))
33 #define RTP_SESSION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),RTP_TYPE_SESSION,RTPSessionClass))
34 #define RTP_IS_SESSION(sess)         (G_TYPE_CHECK_INSTANCE_TYPE((sess),RTP_TYPE_SESSION))
35 #define RTP_IS_SESSION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),RTP_TYPE_SESSION))
36 #define RTP_SESSION_CAST(sess)       ((RTPSession *)(sess))
37
38 #define RTP_SESSION_LOCK(sess)     (g_mutex_lock ((sess)->lock))
39 #define RTP_SESSION_UNLOCK(sess)   (g_mutex_unlock ((sess)->lock))
40
41 /**
42  * RTPSessionProcessRTP:
43  * @sess: an #RTPSession
44  * @src: the #RTPSource
45  * @buffer: the RTP buffer ready for processing
46  * @user_data: user data specified when registering
47  *
48  * This callback will be called when @sess has @buffer ready for further
49  * processing. Processing the buffer typically includes decoding and displaying
50  * the buffer.
51  *
52  * Returns: a #GstFlowReturn.
53  */
54 typedef GstFlowReturn (*RTPSessionProcessRTP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
55
56 /**
57  * RTPSessionSendRTP:
58  * @sess: an #RTPSession
59  * @src: the #RTPSource
60  * @buffer: the RTP buffer ready for sending
61  * @user_data: user data specified when registering
62  *
63  * This callback will be called when @sess has @buffer ready for sending to
64  * all listening participants in this session.
65  *
66  * Returns: a #GstFlowReturn.
67  */
68 typedef GstFlowReturn (*RTPSessionSendRTP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
69
70 /**
71  * RTPSessionSendRTCP:
72  * @sess: an #RTPSession
73  * @src: the #RTPSource
74  * @buffer: the RTCP buffer ready for sending
75  * @user_data: user data specified when registering
76  *
77  * This callback will be called when @sess has @buffer ready for sending to
78  * all listening participants in this session.
79  *
80  * Returns: a #GstFlowReturn.
81  */
82 typedef GstFlowReturn (*RTPSessionSendRTCP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
83
84 /**
85  * RTPSessionSyncRTCP:
86  * @sess: an #RTPSession
87  * @src: the #RTPSource
88  * @buffer: the RTCP buffer ready for sending
89  * @user_data: user data specified when registering
90  *
91  * This callback will be called when @sess has and SR @buffer ready for doing
92  * synchronisation between streams.
93  *
94  * Returns: a #GstFlowReturn.
95  */
96 typedef GstFlowReturn (*RTPSessionSyncRTCP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
97
98 /**
99  * RTPSessionClockRate:
100  * @sess: an #RTPSession
101  * @payload: the payload
102  * @user_data: user data specified when registering
103  *
104  * This callback will be called when @sess needs the clock-rate of @payload.
105  *
106  * Returns: the clock-rate of @pt.
107  */
108 typedef gint (*RTPSessionClockRate) (RTPSession *sess, guint8 payload, gpointer user_data);
109
110 /**
111  * RTPSessionReconsider:
112  * @sess: an #RTPSession
113  * @user_data: user data specified when registering
114  *
115  * This callback will be called when @sess needs to cancel the current timeout. 
116  * The currently running timeout should be canceled and a new reporting interval
117  * should be requested from @sess.
118  */
119 typedef void (*RTPSessionReconsider) (RTPSession *sess, gpointer user_data);
120
121 /**
122  * RTPSessionCallbacks:
123  * @RTPSessionProcessRTP: callback to process RTP packets
124  * @RTPSessionSendRTP: callback for sending RTP packets
125  * @RTPSessionSendRTCP: callback for sending RTCP packets
126  * @RTPSessionSyncRTCP: callback for handling SR packets
127  * @RTPSessionReconsider: callback for reconsidering the timeout
128  *
129  * These callbacks can be installed on the session manager to get notification
130  * when RTP and RTCP packets are ready for further processing. These callbacks
131  * are not implemented with signals for performance reasons.
132  */
133 typedef struct {
134   RTPSessionProcessRTP  process_rtp;
135   RTPSessionSendRTP     send_rtp;
136   RTPSessionSendRTCP    send_rtcp;
137   RTPSessionSyncRTCP    sync_rtcp;
138   RTPSessionClockRate   clock_rate;
139   RTPSessionReconsider  reconsider;
140 } RTPSessionCallbacks;
141
142 /**
143  * RTPSession:
144  * @lock: lock to protect the session
145  * @source: the source of this session
146  * @ssrcs: Hashtable of sources indexed by SSRC
147  * @cnames: Hashtable of sources indexed by CNAME
148  * @num_sources: the number of sources
149  * @activecount: the number of active sources
150  * @callbacks: callbacks
151  * @user_data: user data passed in callbacks
152  *
153  * The RTP session manager object
154  */
155 struct _RTPSession {
156   GObject       object;
157
158   GMutex       *lock;
159
160   guint         header_len;
161   guint         mtu;
162
163   RTPSource    *source;
164
165   /* for sender/receiver counting */
166   guint32       key;
167   guint32       mask_idx;
168   guint32       mask;
169   GHashTable   *ssrcs[32];
170   GHashTable   *cnames;
171   guint         total_sources;
172
173   GstClockTime  next_rtcp_check_time;
174   GstClockTime  last_rtcp_send_time;
175   gboolean      first_rtcp;
176
177   gchar        *bye_reason;
178   gboolean      sent_bye;
179
180   RTPSessionCallbacks callbacks;
181   gpointer            user_data;
182
183   RTPSessionStats stats;
184
185   /* for mapping clock time to NTP time */
186   GstClockTime  base_time;
187 };
188
189 /**
190  * RTPSessionClass:
191  * @on_new_ssrc: emited when a new source is found
192  * @on_bye_ssrc: emited when a source is gone
193  *
194  * The session class.
195  */
196 struct _RTPSessionClass {
197   GObjectClass   parent_class;
198
199   /* signals */
200   void (*on_new_ssrc)       (RTPSession *sess, RTPSource *source);
201   void (*on_ssrc_collision) (RTPSession *sess, RTPSource *source);
202   void (*on_ssrc_validated) (RTPSession *sess, RTPSource *source);
203   void (*on_ssrc_active)    (RTPSession *sess, RTPSource *source);
204   void (*on_ssrc_sdes)      (RTPSession *sess, RTPSource *source);
205   void (*on_bye_ssrc)       (RTPSession *sess, RTPSource *source);
206   void (*on_bye_timeout)    (RTPSession *sess, RTPSource *source);
207   void (*on_timeout)        (RTPSession *sess, RTPSource *source);
208 };
209
210 GType rtp_session_get_type (void);
211
212 /* create and configure */
213 RTPSession*     rtp_session_new           (void);
214 void            rtp_session_set_callbacks          (RTPSession *sess, 
215                                                     RTPSessionCallbacks *callbacks,
216                                                     gpointer user_data);
217 void            rtp_session_set_bandwidth          (RTPSession *sess, gdouble bandwidth);
218 gdouble         rtp_session_get_bandwidth          (RTPSession *sess);
219 void            rtp_session_set_rtcp_fraction      (RTPSession *sess, gdouble fraction);
220 gdouble         rtp_session_get_rtcp_fraction      (RTPSession *sess);
221
222 gboolean        rtp_session_set_sdes_string        (RTPSession *sess, GstRTCPSDESType type,
223                                                     const gchar *cname);
224 gchar*          rtp_session_get_sdes_string        (RTPSession *sess, GstRTCPSDESType type);
225
226 /* handling sources */
227 RTPSource*      rtp_session_get_internal_source    (RTPSession *sess);
228 gboolean        rtp_session_add_source             (RTPSession *sess, RTPSource *src);
229 guint           rtp_session_get_num_sources        (RTPSession *sess);
230 guint           rtp_session_get_num_active_sources (RTPSession *sess);
231 RTPSource*      rtp_session_get_source_by_ssrc     (RTPSession *sess, guint32 ssrc);
232 RTPSource*      rtp_session_get_source_by_cname    (RTPSession *sess, const gchar *cname);
233 RTPSource*      rtp_session_create_source          (RTPSession *sess);
234
235 /* processing packets from receivers */
236 GstFlowReturn   rtp_session_process_rtp            (RTPSession *sess, GstBuffer *buffer, guint64 ntpnstime);
237 GstFlowReturn   rtp_session_process_rtcp           (RTPSession *sess, GstBuffer *buffer);
238
239 /* processing packets for sending */
240 GstFlowReturn   rtp_session_send_rtp               (RTPSession *sess, GstBuffer *buffer, guint64 ntpnstime);
241
242 /* stopping the session */
243 GstFlowReturn   rtp_session_send_bye               (RTPSession *sess, const gchar *reason);
244
245 /* get interval for next RTCP interval */
246 GstClockTime    rtp_session_next_timeout           (RTPSession *sess, GstClockTime time);
247 GstFlowReturn   rtp_session_on_timeout             (RTPSession *sess, GstClockTime time, guint64 ntpnstime);
248
249 #endif /* __RTP_SESSION_H__ */