From: surendrasignalwire <56929670+surendrasignalwire@users.noreply.github.com> Date: Mon, 4 Nov 2019 19:52:38 +0000 (+0530) Subject: [Core] Fix one way audio after executing the uuid_recv_dtmf with dtmf string ending... X-Git-Tag: v1.10.3^2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12f56e293d7b66aa788259535d12d7a5f47071e8;p=thirdparty%2Ffreeswitch.git [Core] Fix one way audio after executing the uuid_recv_dtmf with dtmf string ending with w or W. --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 8a90dca43e..6179d68448 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5382,7 +5382,8 @@ static void set_dtmf_delay(switch_rtp_t *rtp_session, uint32_t ms, uint32_t max_ upsamp = ms * (rtp_session->samples_per_second / 1000); max_upsamp = max_ms * (rtp_session->samples_per_second / 1000); - + + rtp_session->sending_dtmf = 0; rtp_session->queue_delay = upsamp; if (rtp_session->flags[SWITCH_RTP_FLAG_USE_TIMER]) {