]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove a stray debug message introduced by a recent commit.
authorRussell Bryant <russell@russellbryant.com>
Fri, 20 Apr 2007 20:42:02 +0000 (20:42 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 20 Apr 2007 20:42:02 +0000 (20:42 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@61697 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/rtp.c

index cd094685ed89e019f9bef298e57b28375d29330b..a4a98a5e89cf19abe2dc3bba12b5fd21f827acb0 100644 (file)
@@ -1208,10 +1208,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;