aboutsummaryrefslogtreecommitdiffstats
path: root/main/rtp.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-20 20:42:02 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-20 20:42:02 +0000
commit46a4df7f160f347ca16caea27e8c2da0a34ad14f (patch)
tree1182d373376d693aeece42acbed11886ea354778 /main/rtp.c
parent06056a28908f1404e5be5a9f7f91ee9280e89d0c (diff)
Remove a stray debug message introduced by a recent commit.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@61697 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/rtp.c')
-rw-r--r--main/rtp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/rtp.c b/main/rtp.c
index cd094685e..a4a98a5e8 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -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;