diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-08-28 20:30:16 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-08-28 20:30:16 +0000 |
commit | c0a64d008a0b8cc4416039935e4fbc4a7da3931d (patch) | |
tree | c4ec574dee72de29f5c2b34560301853d0e92692 /gst/rtpmanager/rtpsession.c | |
parent | 3db14a2b604d8161b2794c49d100e79393a149c0 (diff) | |
download | gst-plugins-bad-c0a64d008a0b8cc4416039935e4fbc4a7da3931d.tar.gz gst-plugins-bad-c0a64d008a0b8cc4416039935e4fbc4a7da3931d.tar.bz2 gst-plugins-bad-c0a64d008a0b8cc4416039935e4fbc4a7da3931d.zip |
gst/rtpmanager/gstrtpbin.c: Add some more advanced example pipelines.
Original commit message from CVS:
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map):
Add some more advanced example pipelines.
* gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
(stop_rtcp_thread), (gst_rtp_session_send_rtcp):
Add some debug and FIXME.
Release LOCK when performing session cleanup.
* gst/rtpmanager/rtpsession.c: (session_report_blocks):
Add some debug.
* gst/rtpmanager/rtpsource.c: (calculate_jitter),
(rtp_source_send_rtp):
Make sure we always send RTP packets with the session SSRC.
Diffstat (limited to 'gst/rtpmanager/rtpsession.c')
-rw-r--r-- | gst/rtpmanager/rtpsession.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c index 9ab3b4a0..6fa478c8 100644 --- a/gst/rtpmanager/rtpsession.c +++ b/gst/rtpmanager/rtpsession.c @@ -1659,6 +1659,7 @@ session_report_blocks (const gchar * key, RTPSource * source, ReportData * data) DLSR = gst_util_uint64_scale_int (diff, 65536, GST_SECOND); } else { /* No valid SR received, LSR/DLSR are set to 0 then */ + GST_DEBUG ("no valid SR received"); LSR = 0; DLSR = 0; } |