summaryrefslogtreecommitdiff
path: root/main/rtp.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-10-06 18:47:49 +0000
committerJoshua Colp <jcolp@digium.com>2006-10-06 18:47:49 +0000
commit85625f350563ca7209001df4bd538627748725f9 (patch)
tree14043a34c10c82bfc1852906cb5713480cf77dda /main/rtp.c
parent13ece8cc39e76303d8227d6bbba1befbeddd2b27 (diff)
Merged revisions 44605 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44605 | file | 2006-10-06 14:46:28 -0400 (Fri, 06 Oct 2006) | 2 lines When the sequence number rolls over then reset the recorded sequence number for DTMF (issue #8106 reported by bungalow) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44606 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/rtp.c')
-rw-r--r--main/rtp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/rtp.c b/main/rtp.c
index e45f5bc27..e13f4c302 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -1234,6 +1234,10 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
ast_verbose("Got RTP packet from %s:%d (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6u)\n",
ast_inet_ntoa(sin.sin_addr), ntohs(sin.sin_port), payloadtype, seqno, timestamp,res - hdrlen);
+ /* When the seqno starts over we need to reset the seqno for DTMF */
+ if (seqno == 0)
+ rtp->lasteventseqn = 0;
+
rtpPT = ast_rtp_lookup_pt(rtp, payloadtype);
if (!rtpPT.isAstFormat) {
struct ast_frame *f = NULL;