[asterisk-commits] file: trunk r57769 - in /trunk: ./ main/rtp.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Mar 4 20:24:19 MST 2007
Author: file
Date: Sun Mar 4 21:24:18 2007
New Revision: 57769
URL: http://svn.digium.com/view/asterisk?view=rev&rev=57769
Log:
Merged revisions 57768 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r57768 | file | 2007-03-04 22:22:17 -0500 (Sun, 04 Mar 2007) | 2 lines
Preserve marker bit when P2P bridging. (issue #9198 reported by edgreenberg)
........
Modified:
trunk/ (props changed)
trunk/main/rtp.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/rtp.c
URL: http://svn.digium.com/view/asterisk/trunk/main/rtp.c?view=diff&rev=57769&r1=57768&r2=57769
==============================================================================
--- trunk/main/rtp.c (original)
+++ trunk/main/rtp.c Sun Mar 4 21:24:18 2007
@@ -1102,7 +1102,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