changeset 6399:dda201b8a6f6 libavformat

Do not use the server SSRC as client SSRC in the RTP demuxer
author lucabe
date Mon, 23 Aug 2010 11:53:27 +0000
parents 8775d4c0e991
children 6928d93146e6
files rtpdec.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rtpdec.c	Mon Aug 23 11:52:34 2010 +0000
+++ b/rtpdec.c	Mon Aug 23 11:53:27 2010 +0000
@@ -211,8 +211,9 @@
     put_byte(pb, (RTP_VERSION << 6) + 1); /* 1 report block */
     put_byte(pb, 201);
     put_be16(pb, 7); /* length in words - 1 */
-    put_be32(pb, s->ssrc); // our own SSRC
-    put_be32(pb, s->ssrc); // XXX: should be the server's here!
+    // our own SSRC: we use the server's SSRC + 1 to avoid conflicts
+    put_be32(pb, s->ssrc + 1);
+    put_be32(pb, s->ssrc); // server SSRC
     // some placeholders we should really fill...
     // RFC 1889/p64
     extended_max= stats->cycles + stats->max_seq;