summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpbin.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-08-10 17:16:53 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-08-10 17:16:53 +0000
commit9e50d836d4173f127adc56446fa74f1e103fa673 (patch)
treecdde2fad6fe1ea9945bdcc179438c94d6e425805 /gst/rtpmanager/gstrtpbin.h
parenta9090746e58e9a994d7f07f61452602b31461e1e (diff)
downloadgst-plugins-bad-9e50d836d4173f127adc56446fa74f1e103fa673.tar.gz
gst-plugins-bad-9e50d836d4173f127adc56446fa74f1e103fa673.tar.bz2
gst-plugins-bad-9e50d836d4173f127adc56446fa74f1e103fa673.zip
gst/rtpmanager/: Remove complicated async queue and replace with more simple jitterbuffer code while also fixing some...
Original commit message from CVS: * gst/rtpmanager/Makefile.am: * gst/rtpmanager/async_jitter_queue.c: * gst/rtpmanager/async_jitter_queue.h: * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_class_init), (rtp_jitter_buffer_init), (rtp_jitter_buffer_finalize), (rtp_jitter_buffer_new), (compare_seqnum), (rtp_jitter_buffer_insert), (rtp_jitter_buffer_pop), (rtp_jitter_buffer_flush), (rtp_jitter_buffer_num_packets), (rtp_jitter_buffer_get_ts_diff): * gst/rtpmanager/rtpjitterbuffer.h: Remove complicated async queue and replace with more simple jitterbuffer code while also fixing some bugs. * gst/rtpmanager/gstrtpbin-marshal.list: * gst/rtpmanager/gstrtpbin.c: (on_new_ssrc), (on_ssrc_collision), (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout), (create_session), (gst_rtp_bin_class_init), (create_recv_rtp), (create_send_rtp): * gst/rtpmanager/gstrtpbin.h: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_dispose), (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_flush_start), (gst_rtp_jitter_buffer_flush_stop), (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property): * gst/rtpmanager/gstrtpsession.c: (on_new_ssrc), (on_ssrc_collision), (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout), (gst_rtp_session_class_init), (gst_rtp_session_init): * gst/rtpmanager/gstrtpsession.h: * gst/rtpmanager/rtpsession.c: (on_bye_ssrc), (session_cleanup): Use new jitterbuffer code. Expose some new signals in preparation for handling EOS.
Diffstat (limited to 'gst/rtpmanager/gstrtpbin.h')
-rw-r--r--gst/rtpmanager/gstrtpbin.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpbin.h b/gst/rtpmanager/gstrtpbin.h
index ffbdd62c..99cb2815 100644
--- a/gst/rtpmanager/gstrtpbin.h
+++ b/gst/rtpmanager/gstrtpbin.h
@@ -57,8 +57,14 @@ struct _GstRTPBinClass {
/* get the caps for pt */
GstCaps* (*request_pt_map) (GstRTPBin *rtpbin, guint session, guint pt);
-
void (*clear_pt_map) (GstRTPBin *rtpbin);
+
+ void (*on_new_ssrc) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
+ void (*on_ssrc_collision) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
+ void (*on_ssrc_validated) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
+ void (*on_bye_ssrc) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
+ void (*on_bye_timeout) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
+ void (*on_timeout) (GstRTPBin *rtpbin, guint session, guint32 ssrc);
};
GType gst_rtp_bin_get_type (void);