diff --git a/main/channel.c b/main/channel.c index 94d7d2616055213d82403dea43f3cad4aafbc884..a80eeeec04377177d24688b2f63fa535d5271f03 100644 --- a/main/channel.c +++ b/main/channel.c @@ -3849,6 +3849,19 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio) ast_clear_flag(chan, AST_FLAG_IN_DTMF); if (!f->len) f->len = ast_tvdiff_ms(now, chan->dtmf_tv); + + /* detect tones that were received on + * the wire with durations shorter than + * AST_MIN_DTMF_DURATION and set f->len + * to the actual duration of the DTMF + * frames on the wire. This will cause + * dtmf emulation to be triggered later + * on. + */ + if (ast_tvdiff_ms(now, chan->dtmf_tv) < AST_MIN_DTMF_DURATION) { + f->len = ast_tvdiff_ms(now, chan->dtmf_tv); + ast_log(LOG_DTMF, "DTMF end '%c' detected to have actual duration %ld on the wire, emulation will be triggered on %s\n", f->subclass, f->len, chan->name); + } } else if (!f->len) { ast_log(LOG_DTMF, "DTMF end accepted without begin '%c' on %s\n", f->subclass.integer, chan->name); f->len = AST_MIN_DTMF_DURATION;