summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-10-06 21:10:42 +0000
committerJoshua Colp <jcolp@digium.com>2006-10-06 21:10:42 +0000
commit62e6417b2171f7cbe6c6c4cb7d9fdb714958d25d (patch)
tree94517ca9ef8c79563598ba63a0ecd2f4525d5be6 /main
parent684d1f169827e4b9e7a7f61e6dc6dc2d7fbc0175 (diff)
Merged revisions 44628 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44628 | file | 2006-10-06 17:08:54 -0400 (Fri, 06 Oct 2006) | 2 lines Remove the seqno check for RFC2833, the handler is smart enough to not need it. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44630 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/rtp.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/main/rtp.c b/main/rtp.c
index e13f4c302..9c17b32bf 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -1234,10 +1234,6 @@ 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;
@@ -1260,10 +1256,7 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
duration &= 0xFFFF;
ast_verbose("Got RTP RFC2833 from %s:%d (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6u, mark %d, event %08x, end %d, duration %-5.5d) \n", ast_inet_ntoa(sin.sin_addr), ntohs(sin.sin_port), payloadtype, seqno, timestamp, res - hdrlen, (mark?1:0), event, ((event_end & 0x80)?1:0), duration);
}
- if (rtp->lasteventseqn <= seqno || (rtp->lasteventseqn >= 65530 && seqno <= 6)) {
- f = process_rfc2833(rtp, rtp->rawdata + AST_FRIENDLY_OFFSET + hdrlen, res - hdrlen, seqno);
- rtp->lasteventseqn = seqno;
- }
+ f = process_rfc2833(rtp, rtp->rawdata + AST_FRIENDLY_OFFSET + hdrlen, res - hdrlen, seqno);
} else if (rtpPT.code == AST_RTP_CISCO_DTMF) {
/* It's really special -- process it the Cisco way */
if (rtp->lasteventseqn <= seqno || (rtp->lasteventseqn >= 65530 && seqno <= 6)) {