gst/rtpmanager/gstrtpsession.c: Pass the running time to the session when processing...
[platform/upstream/gstreamer.git] / gst / rtpmanager / rtpsession.h
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@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 #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  * @eos: if an EOS event should be pushed
76  * @user_data: user data specified when registering
77  *
78  * This callback will be called when @sess has @buffer ready for sending to
79  * all listening participants in this session.
80  *
81  * Returns: a #GstFlowReturn.
82  */
83 typedef GstFlowReturn (*RTPSessionSendRTCP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, 
84     gboolean eos, gpointer user_data);
85
86 /**
87  * RTPSessionSyncRTCP:
88  * @sess: an #RTPSession
89  * @src: the #RTPSource
90  * @buffer: the RTCP buffer ready for synchronisation
91  * @user_data: user data specified when registering
92  *
93  * This callback will be called when @sess has an SR @buffer ready for doing
94  * synchronisation between streams.
95  *
96  * Returns: a #GstFlowReturn.
97  */
98 typedef GstFlowReturn (*RTPSessionSyncRTCP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
99
100 /**
101  * RTPSessionClockRate:
102  * @sess: an #RTPSession
103  * @payload: the payload
104  * @user_data: user data specified when registering
105  *
106  * This callback will be called when @sess needs the clock-rate of @payload.
107  *
108  * Returns: the clock-rate of @pt.
109  */
110 typedef gint (*RTPSessionClockRate) (RTPSession *sess, guint8 payload, gpointer user_data);
111
112 /**
113  * RTPSessionReconsider:
114  * @sess: an #RTPSession
115  * @user_data: user data specified when registering
116  *
117  * This callback will be called when @sess needs to cancel the current timeout. 
118  * The currently running timeout should be canceled and a new reporting interval
119  * should be requested from @sess.
120  */
121 typedef void (*RTPSessionReconsider) (RTPSession *sess, gpointer user_data);
122
123 /**
124  * RTPSessionCallbacks:
125  * @RTPSessionProcessRTP: callback to process RTP packets
126  * @RTPSessionSendRTP: callback for sending RTP packets
127  * @RTPSessionSendRTCP: callback for sending RTCP packets
128  * @RTPSessionSyncRTCP: callback for handling SR packets
129  * @RTPSessionReconsider: callback for reconsidering the timeout
130  *
131  * These callbacks can be installed on the session manager to get notification
132  * when RTP and RTCP packets are ready for further processing. These callbacks
133  * are not implemented with signals for performance reasons.
134  */
135 typedef struct {
136   RTPSessionProcessRTP  process_rtp;
137   RTPSessionSendRTP     send_rtp;
138   RTPSessionSyncRTCP    sync_rtcp;
139   RTPSessionSendRTCP    send_rtcp;
140   RTPSessionClockRate   clock_rate;
141   RTPSessionReconsider  reconsider;
142 } RTPSessionCallbacks;
143
144 /**
145  * RTPConflictingAddress:
146  * @address: #GstNetAddress which conflicted
147  * @last_conflict_time: time when the last conflict was seen
148  *
149  * This structure is used to account for addresses that have conflicted to find
150  * loops.
151  */
152 typedef struct {
153   GstNetAddress address;
154   GstClockTime time;
155 } RTPConflictingAddress;
156
157 /**
158  * RTPSession:
159  * @lock: lock to protect the session
160  * @source: the source of this session
161  * @ssrcs: Hashtable of sources indexed by SSRC
162  * @cnames: Hashtable of sources indexed by CNAME
163  * @num_sources: the number of sources
164  * @activecount: the number of active sources
165  * @callbacks: callbacks
166  * @user_data: user data passed in callbacks
167  * @stats: session statistics
168  * @conflicting_addresses: GList of conflicting addresses
169  *
170  * The RTP session manager object
171  */
172 struct _RTPSession {
173   GObject       object;
174
175   GMutex       *lock;
176
177   guint         header_len;
178   guint         mtu;
179
180   RTPSource    *source;
181
182   /* for sender/receiver counting */
183   guint32       key;
184   guint32       mask_idx;
185   guint32       mask;
186   GHashTable   *ssrcs[32];
187   GHashTable   *cnames;
188   guint         total_sources;
189
190   GstClockTime  next_rtcp_check_time;
191   GstClockTime  last_rtcp_send_time;
192   gboolean      first_rtcp;
193
194   gchar        *bye_reason;
195   gboolean      sent_bye;
196
197   RTPSessionCallbacks   callbacks;
198   gpointer              process_rtp_user_data;
199   gpointer              send_rtp_user_data;
200   gpointer              send_rtcp_user_data;
201   gpointer              sync_rtcp_user_data;
202   gpointer              clock_rate_user_data;
203   gpointer              reconsider_user_data;
204
205   RTPSessionStats stats;
206
207   GList         *conflicting_addresses;
208   gboolean      change_ssrc;
209 };
210
211 /**
212  * RTPSessionClass:
213  * @on_new_ssrc: emited when a new source is found
214  * @on_bye_ssrc: emited when a source is gone
215  *
216  * The session class.
217  */
218 struct _RTPSessionClass {
219   GObjectClass   parent_class;
220
221   /* action signals */
222   RTPSource* (*get_source_by_ssrc) (RTPSession *sess, guint32 ssrc);
223
224   /* signals */
225   void (*on_new_ssrc)       (RTPSession *sess, RTPSource *source);
226   void (*on_ssrc_collision) (RTPSession *sess, RTPSource *source);
227   void (*on_ssrc_validated) (RTPSession *sess, RTPSource *source);
228   void (*on_ssrc_active)    (RTPSession *sess, RTPSource *source);
229   void (*on_ssrc_sdes)      (RTPSession *sess, RTPSource *source);
230   void (*on_bye_ssrc)       (RTPSession *sess, RTPSource *source);
231   void (*on_bye_timeout)    (RTPSession *sess, RTPSource *source);
232   void (*on_timeout)        (RTPSession *sess, RTPSource *source);
233   void (*on_sender_timeout) (RTPSession *sess, RTPSource *source);
234 };
235
236 GType rtp_session_get_type (void);
237
238 /* create and configure */
239 RTPSession*     rtp_session_new           (void);
240 void            rtp_session_set_callbacks          (RTPSession *sess,
241                                                     RTPSessionCallbacks *callbacks,
242                                                     gpointer user_data);
243 void            rtp_session_set_process_rtp_callback   (RTPSession * sess,
244                                                     RTPSessionProcessRTP callback,
245                                                     gpointer user_data);
246 void            rtp_session_set_send_rtp_callback  (RTPSession * sess,
247                                                     RTPSessionSendRTP callback,
248                                                     gpointer user_data);
249 void            rtp_session_set_send_rtcp_callback   (RTPSession * sess,
250                                                     RTPSessionSendRTCP callback,
251                                                     gpointer user_data);
252 void            rtp_session_set_sync_rtcp_callback   (RTPSession * sess,
253                                                     RTPSessionSyncRTCP callback,
254                                                     gpointer user_data);
255 void            rtp_session_set_clock_rate_callback   (RTPSession * sess,
256                                                     RTPSessionClockRate callback,
257                                                     gpointer user_data);
258 void            rtp_session_set_reconsider_callback (RTPSession * sess,
259                                                     RTPSessionReconsider callback,
260                                                     gpointer user_data);
261 void            rtp_session_set_bandwidth          (RTPSession *sess, gdouble bandwidth);
262 gdouble         rtp_session_get_bandwidth          (RTPSession *sess);
263 void            rtp_session_set_rtcp_fraction      (RTPSession *sess, gdouble fraction);
264 gdouble         rtp_session_get_rtcp_fraction      (RTPSession *sess);
265
266 gboolean        rtp_session_set_sdes_string        (RTPSession *sess, GstRTCPSDESType type,
267                                                     const gchar *cname);
268 gchar*          rtp_session_get_sdes_string        (RTPSession *sess, GstRTCPSDESType type);
269
270 /* handling sources */
271 RTPSource*      rtp_session_get_internal_source    (RTPSession *sess);
272
273 void            rtp_session_set_internal_ssrc      (RTPSession *sess, guint32 ssrc);
274 guint32         rtp_session_get_internal_ssrc      (RTPSession *sess);
275
276 gboolean        rtp_session_add_source             (RTPSession *sess, RTPSource *src);
277 guint           rtp_session_get_num_sources        (RTPSession *sess);
278 guint           rtp_session_get_num_active_sources (RTPSession *sess);
279 RTPSource*      rtp_session_get_source_by_ssrc     (RTPSession *sess, guint32 ssrc);
280 RTPSource*      rtp_session_get_source_by_cname    (RTPSession *sess, const gchar *cname);
281 RTPSource*      rtp_session_create_source          (RTPSession *sess);
282
283 /* processing packets from receivers */
284 GstFlowReturn   rtp_session_process_rtp            (RTPSession *sess, GstBuffer *buffer,
285                                                     GstClockTime current_time,
286                                                     GstClockTime running_time, guint64 ntpnstime);
287 GstFlowReturn   rtp_session_process_rtcp           (RTPSession *sess, GstBuffer *buffer,
288                                                     GstClockTime current_time);
289
290 /* processing packets for sending */
291 GstFlowReturn   rtp_session_send_rtp               (RTPSession *sess, GstBuffer *buffer,
292                                                     GstClockTime current_time, guint64 ntpnstime);
293
294 /* stopping the session */
295 GstFlowReturn   rtp_session_send_bye               (RTPSession *sess, const gchar *reason,
296                                                     GstClockTime current_time);
297
298 /* get interval for next RTCP interval */
299 GstClockTime    rtp_session_next_timeout           (RTPSession *sess, GstClockTime current_time);
300 GstFlowReturn   rtp_session_on_timeout             (RTPSession *sess, GstClockTime current_time,
301                                                     guint64 ntpnstime);
302
303 #endif /* __RTP_SESSION_H__ */