From 59c77fe14b1b7a0a89147f7f82b58ab0265098f5 Mon Sep 17 00:00:00 2001 From: russell Date: Fri, 20 Apr 2007 20:43:05 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@61698 f38db490-d61c-443f-a65b-d21fe96a405b --- main/rtp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'main/rtp.c') diff --git a/main/rtp.c b/main/rtp.c index 00bb42855..a4af4e01c 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; -- cgit v1.2.3