[asterisk-commits] russell: branch 1.4 r61697 -
/branches/1.4/main/rtp.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Apr 20 13:42:02 MST 2007
Author: russell
Date: Fri Apr 20 15:42:02 2007
New Revision: 61697
URL: http://svn.digium.com/view/asterisk?view=rev&rev=61697
Log:
Remove a stray debug message introduced by a recent commit.
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=61697&r1=61696&r2=61697
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Fri Apr 20 15:42:02 2007
@@ -1208,10 +1208,8 @@
/* Schedule transmission of Receiver Report */
rtp->rtcp->schedid = ast_sched_add(rtp->sched, ast_rtcp_calc_interval(rtp), ast_rtcp_write, rtp);
}
- if ( rtp->lastrxseqno - seqno > 100) { /* if so it would indicate that the sender cycled; allow for misordering */
+ if ( rtp->lastrxseqno - seqno > 100) /* if so it would indicate that the sender cycled; allow for misordering */
rtp->cycles += RTP_SEQ_MOD;
- ast_verbose("SEQNO cycled: %u\t%d\n", rtp->cycles, seqno);
- }
rtp->lastrxseqno = seqno;
More information about the asterisk-commits
mailing list