[asterisk-commits] file: branch 1.4 r57768 - /branches/1.4/main/rtp.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Mar 4 20:22:18 MST 2007


Author: file
Date: Sun Mar  4 21:22:17 2007
New Revision: 57768

URL: http://svn.digium.com/view/asterisk?view=rev&rev=57768
Log:
Preserve marker bit when P2P bridging. (issue #9198 reported by edgreenberg)

Modified:
    branches/1.4/main/rtp.c

Modified: branches/1.4/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/rtp.c?view=diff&rev=57768&r1=57767&r2=57768
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Sun Mar  4 21:22:17 2007
@@ -1032,7 +1032,7 @@
 	version = (seqno & 0xC0000000) >> 30;
 	payload = (seqno & 0x7f0000) >> 16;
 	padding = seqno & (1 << 29);
-	mark = seqno & (1 << 23);
+	mark = (seqno & 0x800000) >> 23;
 	ext = seqno & (1 << 28);
 	seqno &= 0xffff;
 



More information about the asterisk-commits mailing list