rtpsession: Override the SSRC from the packets' SSRC if none was given via caps or...
[platform/upstream/gst-plugins-good.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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __RTP_SESSION_H__
21 #define __RTP_SESSION_H__
22
23 #include <gst/gst.h>
24
25 #include "rtpsource.h"
26
27 typedef struct _RTPSession RTPSession;
28 typedef struct _RTPSessionClass RTPSessionClass;
29
30 #define RTP_TYPE_SESSION             (rtp_session_get_type())
31 #define RTP_SESSION(sess)            (G_TYPE_CHECK_INSTANCE_CAST((sess),RTP_TYPE_SESSION,RTPSession))
32 #define RTP_SESSION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),RTP_TYPE_SESSION,RTPSessionClass))
33 #define RTP_IS_SESSION(sess)         (G_TYPE_CHECK_INSTANCE_TYPE((sess),RTP_TYPE_SESSION))
34 #define RTP_IS_SESSION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),RTP_TYPE_SESSION))
35 #define RTP_SESSION_CAST(sess)       ((RTPSession *)(sess))
36
37 #define RTP_SESSION_LOCK(sess)     (g_mutex_lock (&(sess)->lock))
38 #define RTP_SESSION_UNLOCK(sess)   (g_mutex_unlock (&(sess)->lock))
39
40 /**
41  * RTPSessionProcessRTP:
42  * @sess: an #RTPSession
43  * @src: the #RTPSource
44  * @buffer: the RTP buffer ready for processing
45  * @user_data: user data specified when registering
46  *
47  * This callback will be called when @sess has @buffer ready for further
48  * processing. Processing the buffer typically includes decoding and displaying
49  * the buffer.
50  *
51  * Returns: a #GstFlowReturn.
52  */
53 typedef GstFlowReturn (*RTPSessionProcessRTP) (RTPSession *sess, RTPSource *src, GstBuffer *buffer, gpointer user_data);
54
55 /**
56  * RTPSessionSendRTP:
57  * @sess: an #RTPSession
58  * @src: the #RTPSource
59  * @buffer: the RTP buffer ready for sending
60  * @user_data: user data specified when registering
61  *
62  * This callback will be called when @sess has @buffer ready for sending to
63  * all listening participants in this session.
64  *
65  * Returns: a #GstFlowReturn.
66  */
67 typedef GstFlowReturn (*RTPSessionSendRTP) (RTPSession *sess, RTPSource *src, gpointer data, gpointer user_data);
68
69 /**
70  * RTPSessionSendRTCP:
71  * @sess: an #RTPSession
72  * @src: the #RTPSource
73  * @buffer: the RTCP buffer ready for sending
74  * @eos: if an EOS event should be pushed
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,
83     gboolean eos, gpointer user_data);
84
85 /**
86  * RTPSessionSyncRTCP:
87  * @sess: an #RTPSession
88  * @buffer: the RTCP buffer ready for synchronisation
89  * @user_data: user data specified when registering
90  *
91  * This callback will be called when @sess has an SR @buffer ready for doing
92  * synchronisation between streams.
93  *
94  * Returns: a #GstFlowReturn.
95  */
96 typedef GstFlowReturn (*RTPSessionSyncRTCP) (RTPSession *sess, 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  * RTPSessionRequestKeyUnit:
123  * @sess: an #RTPSession
124  * @all_headers: %TRUE if "all-headers" property should be set on the key unit
125  *  request
126  * @user_data: user data specified when registering
127  *
128  * Asks the encoder to produce a key unit as soon as possibly within the
129  * bandwidth constraints
130  */
131 typedef void (*RTPSessionRequestKeyUnit) (RTPSession *sess,
132     gboolean all_headers, gpointer user_data);
133
134 /**
135  * RTPSessionRequestTime:
136  * @sess: an #RTPSession
137  * @user_data: user data specified when registering
138  *
139  * This callback will be called when @sess needs the current time. The time
140  * should be returned as a #GstClockTime
141  */
142 typedef GstClockTime (*RTPSessionRequestTime) (RTPSession *sess,
143     gpointer user_data);
144
145 /**
146  * RTPSessionNotifyNACK:
147  * @sess: an #RTPSession
148  * @seqnum: the missing seqnum
149  * @blp: other missing seqnums
150  * @ssrc: SSRC of requested stream
151  * @user_data: user data specified when registering
152  *
153  * Notifies of NACKed frames.
154  */
155 typedef void (*RTPSessionNotifyNACK) (RTPSession *sess,
156     guint16 seqnum, guint16 blp, guint32 ssrc, gpointer user_data);
157
158 /**
159  * RTPSessionReconfigure:
160  * @sess: an #RTPSession
161  * @user_data: user data specified when registering
162  *
163  * This callback will be called when @sess wants to reconfigure the
164  * negotiated parameters.
165  */
166 typedef void (*RTPSessionReconfigure) (RTPSession *sess, gpointer user_data);
167
168 /**
169  * RTPSessionCallbacks:
170  * @RTPSessionProcessRTP: callback to process RTP packets
171  * @RTPSessionSendRTP: callback for sending RTP packets
172  * @RTPSessionSendRTCP: callback for sending RTCP packets
173  * @RTPSessionSyncRTCP: callback for handling SR packets
174  * @RTPSessionReconsider: callback for reconsidering the timeout
175  * @RTPSessionRequestKeyUnit: callback for requesting a new key unit
176  * @RTPSessionRequestTime: callback for requesting the current time
177  * @RTPSessionNotifyNACK: callback for notifying NACK
178  * @RTPSessionReconfigure: callback for requesting reconfiguration
179  *
180  * These callbacks can be installed on the session manager to get notification
181  * when RTP and RTCP packets are ready for further processing. These callbacks
182  * are not implemented with signals for performance reasons.
183  */
184 typedef struct {
185   RTPSessionProcessRTP  process_rtp;
186   RTPSessionSendRTP     send_rtp;
187   RTPSessionSyncRTCP    sync_rtcp;
188   RTPSessionSendRTCP    send_rtcp;
189   RTPSessionClockRate   clock_rate;
190   RTPSessionReconsider  reconsider;
191   RTPSessionRequestKeyUnit request_key_unit;
192   RTPSessionRequestTime request_time;
193   RTPSessionNotifyNACK  notify_nack;
194   RTPSessionReconfigure reconfigure;
195 } RTPSessionCallbacks;
196
197 /**
198  * RTPSession:
199  * @lock: lock to protect the session
200  * @source: the source of this session
201  * @ssrcs: Hashtable of sources indexed by SSRC
202  * @num_sources: the number of sources
203  * @activecount: the number of active sources
204  * @callbacks: callbacks
205  * @user_data: user data passed in callbacks
206  * @stats: session statistics
207  * @conflicting_addresses: GList of conflicting addresses
208  *
209  * The RTP session manager object
210  */
211 struct _RTPSession {
212   GObject       object;
213
214   GMutex        lock;
215
216   guint         header_len;
217   guint         mtu;
218
219   GstStructure *sdes;
220
221   guint         probation;
222
223   GstRTPProfile rtp_profile;
224
225   /* bandwidths */
226   gboolean     recalc_bandwidth;
227   guint        bandwidth;
228   gdouble      rtcp_bandwidth;
229   guint        rtcp_rr_bandwidth;
230   guint        rtcp_rs_bandwidth;
231
232   guint32       suggested_ssrc;
233   gboolean      internal_ssrc_set;
234   gboolean      internal_ssrc_from_caps_or_property;
235
236   /* for sender/receiver counting */
237   guint32       key;
238   guint32       mask_idx;
239   guint32       mask;
240   GHashTable   *ssrcs[32];
241   guint         total_sources;
242
243   guint16       generation;
244   GstClockTime  next_rtcp_check_time; /* tn */
245   GstClockTime  last_rtcp_check_time; /* tp */
246   GstClockTime  last_rtcp_send_time;  /* t_rr_last */
247   GstClockTime  last_rtcp_interval;   /* T_rr */
248   GstClockTime  start_time;
249   gboolean      first_rtcp;
250   gboolean      allow_early;
251
252   GstClockTime  next_early_rtcp_time;
253
254   gboolean      scheduled_bye;
255
256   RTPSessionCallbacks   callbacks;
257   gpointer              process_rtp_user_data;
258   gpointer              send_rtp_user_data;
259   gpointer              send_rtcp_user_data;
260   gpointer              sync_rtcp_user_data;
261   gpointer              clock_rate_user_data;
262   gpointer              reconsider_user_data;
263   gpointer              request_key_unit_user_data;
264   gpointer              request_time_user_data;
265   gpointer              notify_nack_user_data;
266   gpointer              reconfigure_user_data;
267
268   RTPSessionStats stats;
269   RTPSessionStats bye_stats;
270
271   gboolean      favor_new;
272   GstClockTime  rtcp_feedback_retention_window;
273   guint         rtcp_immediate_feedback_threshold;
274
275   GstClockTime last_keyframe_request;
276   gboolean     last_keyframe_all_headers;
277
278   gboolean      is_doing_ptp;
279
280   GList         *conflicting_addresses;
281 };
282
283 /**
284  * RTPSessionClass:
285  * @on_new_ssrc: emited when a new source is found
286  * @on_bye_ssrc: emited when a source is gone
287  *
288  * The session class.
289  */
290 struct _RTPSessionClass {
291   GObjectClass   parent_class;
292
293   /* action signals */
294   RTPSource* (*get_source_by_ssrc) (RTPSession *sess, guint32 ssrc);
295
296   /* signals */
297   void (*on_new_ssrc)       (RTPSession *sess, RTPSource *source);
298   void (*on_ssrc_collision) (RTPSession *sess, RTPSource *source);
299   void (*on_ssrc_validated) (RTPSession *sess, RTPSource *source);
300   void (*on_ssrc_active)    (RTPSession *sess, RTPSource *source);
301   void (*on_ssrc_sdes)      (RTPSession *sess, RTPSource *source);
302   void (*on_bye_ssrc)       (RTPSession *sess, RTPSource *source);
303   void (*on_bye_timeout)    (RTPSession *sess, RTPSource *source);
304   void (*on_timeout)        (RTPSession *sess, RTPSource *source);
305   void (*on_sender_timeout) (RTPSession *sess, RTPSource *source);
306   gboolean (*on_sending_rtcp) (RTPSession *sess, GstBuffer *buffer,
307       gboolean early);
308   void (*on_feedback_rtcp)  (RTPSession *sess, guint type, guint fbtype,
309       guint sender_ssrc, guint media_ssrc, GstBuffer *fci);
310   gboolean (*send_rtcp)     (RTPSession *sess, GstClockTime max_delay);
311   void (*on_receiving_rtcp) (RTPSession *sess, GstBuffer *buffer);
312 };
313
314 GType rtp_session_get_type (void);
315
316 /* create and configure */
317 RTPSession*     rtp_session_new           (void);
318 void            rtp_session_set_callbacks          (RTPSession *sess,
319                                                     RTPSessionCallbacks *callbacks,
320                                                     gpointer user_data);
321 void            rtp_session_set_process_rtp_callback   (RTPSession * sess,
322                                                     RTPSessionProcessRTP callback,
323                                                     gpointer user_data);
324 void            rtp_session_set_send_rtp_callback  (RTPSession * sess,
325                                                     RTPSessionSendRTP callback,
326                                                     gpointer user_data);
327 void            rtp_session_set_send_rtcp_callback   (RTPSession * sess,
328                                                     RTPSessionSendRTCP callback,
329                                                     gpointer user_data);
330 void            rtp_session_set_sync_rtcp_callback   (RTPSession * sess,
331                                                     RTPSessionSyncRTCP callback,
332                                                     gpointer user_data);
333 void            rtp_session_set_clock_rate_callback   (RTPSession * sess,
334                                                     RTPSessionClockRate callback,
335                                                     gpointer user_data);
336 void            rtp_session_set_reconsider_callback (RTPSession * sess,
337                                                     RTPSessionReconsider callback,
338                                                     gpointer user_data);
339 void            rtp_session_set_request_time_callback (RTPSession * sess,
340                                                     RTPSessionRequestTime callback,
341                                                     gpointer user_data);
342
343 void            rtp_session_set_bandwidth          (RTPSession *sess, gdouble bandwidth);
344 gdouble         rtp_session_get_bandwidth          (RTPSession *sess);
345 void            rtp_session_set_rtcp_fraction      (RTPSession *sess, gdouble fraction);
346 gdouble         rtp_session_get_rtcp_fraction      (RTPSession *sess);
347
348 GstStructure *  rtp_session_get_sdes_struct        (RTPSession *sess);
349 void            rtp_session_set_sdes_struct        (RTPSession *sess, const GstStructure *sdes);
350
351 /* handling sources */
352 guint32         rtp_session_suggest_ssrc           (RTPSession *sess, gboolean *is_random);
353
354 gboolean        rtp_session_add_source             (RTPSession *sess, RTPSource *src);
355 guint           rtp_session_get_num_sources        (RTPSession *sess);
356 guint           rtp_session_get_num_active_sources (RTPSession *sess);
357 RTPSource*      rtp_session_get_source_by_ssrc     (RTPSession *sess, guint32 ssrc);
358 RTPSource*      rtp_session_create_source          (RTPSession *sess);
359
360 /* processing packets from receivers */
361 GstFlowReturn   rtp_session_process_rtp            (RTPSession *sess, GstBuffer *buffer,
362                                                     GstClockTime current_time,
363                                                     GstClockTime running_time,
364                                                     guint64 ntpnstime);
365 GstFlowReturn   rtp_session_process_rtcp           (RTPSession *sess, GstBuffer *buffer,
366                                                     GstClockTime current_time,
367                                                     guint64 ntpnstime);
368
369 /* processing packets for sending */
370 void            rtp_session_update_send_caps       (RTPSession *sess, GstCaps *caps);
371 GstFlowReturn   rtp_session_send_rtp               (RTPSession *sess, gpointer data, gboolean is_list,
372                                                     GstClockTime current_time, GstClockTime running_time);
373
374 /* scheduling bye */
375 void            rtp_session_mark_all_bye           (RTPSession *sess, const gchar *reason);
376 GstFlowReturn   rtp_session_schedule_bye           (RTPSession *sess, GstClockTime current_time);
377
378 /* get interval for next RTCP interval */
379 GstClockTime    rtp_session_next_timeout           (RTPSession *sess, GstClockTime current_time);
380 GstFlowReturn   rtp_session_on_timeout             (RTPSession *sess, GstClockTime current_time,
381                                                     guint64 ntpnstime, GstClockTime running_time);
382
383 /* request the transmittion of an early RTCP packet */
384 gboolean        rtp_session_request_early_rtcp     (RTPSession * sess, GstClockTime current_time,
385                                                     GstClockTime max_delay);
386
387 /* Notify session of a request for a new key unit */
388 gboolean        rtp_session_request_key_unit       (RTPSession * sess,
389                                                     guint32 ssrc,
390                                                     gboolean fir,
391                                                     gint count);
392 gboolean        rtp_session_request_nack           (RTPSession * sess,
393                                                     guint32 ssrc,
394                                                     guint16 seqnum,
395                                                     GstClockTime max_delay);
396
397
398 #endif /* __RTP_SESSION_H__ */