Don't increment RTP timestmap on sending of DTMF (bug #2928)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4328 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2004-11-24 04:12:23 +00:00
parent a56e3a0a9f
commit dff0090504
1 changed files with 0 additions and 5 deletions

5
rtp.c
View File

@ -1013,7 +1013,6 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
unsigned int *rtpheader;
int hdrlen = 12;
int res;
int ms;
int x;
int payload;
char data[256];
@ -1045,10 +1044,6 @@ int ast_rtp_senddigit(struct ast_rtp *rtp, char digit)
rtp->dtmfmute.tv_usec -= 1000000;
rtp->dtmfmute.tv_sec += 1;
}
ms = calc_txstamp(rtp, NULL);
/* Default prediction */
rtp->lastts = rtp->lastts + ms * 8;
/* Get a pointer to the header */
rtpheader = (unsigned int *)data;