From: Russell Bryant Date: Fri, 20 Apr 2007 20:43:05 +0000 (+0000) Subject: Merged revisions 61697 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2824 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c21f118a65d0140140c2ecdeb3daa765e7e9c941;p=thirdparty%2Fasterisk.git Merged revisions 61697 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r61697 | russell | 2007-04-20 15:42:02 -0500 (Fri, 20 Apr 2007) | 2 lines Remove a stray debug message introduced by a recent commit. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61698 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/rtp.c b/main/rtp.c index 00bb42855f..a4af4e01ce 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -1287,10 +1287,8 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp) /* 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;