summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpsession.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-09-20 14:34:57 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-09-20 14:34:57 +0000
commit7067d01d2a9e46a52f347cfa777e5a50f1d41494 (patch)
tree856d72cdb99c9b4975dd97e8aac6a13715777ca6 /gst/rtpmanager/gstrtpsession.h
parentb5af210ba28305b3c8b313add88fc428b1ebea98 (diff)
downloadgst-plugins-bad-7067d01d2a9e46a52f347cfa777e5a50f1d41494.tar.gz
gst-plugins-bad-7067d01d2a9e46a52f347cfa777e5a50f1d41494.tar.bz2
gst-plugins-bad-7067d01d2a9e46a52f347cfa777e5a50f1d41494.zip
gst/rtpmanager/: Add notification of active SSRCs to various RTP elements. Fixes #478566.
Original commit message from CVS: * gst/rtpmanager/gstrtpbin.c: (on_ssrc_active), (create_session), (gst_rtp_bin_class_init): * gst/rtpmanager/gstrtpbin.h: * gst/rtpmanager/gstrtpsession.c: (on_ssrc_active), (gst_rtp_session_class_init), (gst_rtp_session_init), (gst_rtp_session_event_send_rtp_sink): * gst/rtpmanager/gstrtpsession.h: * gst/rtpmanager/rtpsession.c: (rtp_session_class_init), (on_ssrc_active), (rtp_session_process_rb): * gst/rtpmanager/rtpsession.h: Add notification of active SSRCs to various RTP elements. Fixes #478566.
Diffstat (limited to 'gst/rtpmanager/gstrtpsession.h')
-rw-r--r--gst/rtpmanager/gstrtpsession.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtpmanager/gstrtpsession.h b/gst/rtpmanager/gstrtpsession.h
index 3fffb067..b4c50b10 100644
--- a/gst/rtpmanager/gstrtpsession.h
+++ b/gst/rtpmanager/gstrtpsession.h
@@ -66,6 +66,7 @@ struct _GstRtpSessionClass {
void (*on_new_ssrc) (GstRtpSession *sess, guint32 ssrc);
void (*on_ssrc_collision) (GstRtpSession *sess, guint32 ssrc);
void (*on_ssrc_validated) (GstRtpSession *sess, guint32 ssrc);
+ void (*on_ssrc_active) (GstRtpSession *sess, guint32 ssrc);
void (*on_bye_ssrc) (GstRtpSession *sess, guint32 ssrc);
void (*on_bye_timeout) (GstRtpSession *sess, guint32 ssrc);
void (*on_timeout) (GstRtpSession *sess, guint32 ssrc);