Activate work around for processing fast sequences of CPN/DTMF/KEY events. Please see main/channel.c (call to tech->read or tech.read and processing of DTMF frames).

This commit is contained in:
MelwareDE 2011-04-29 09:44:26 +00:00
parent 4411cbc18c
commit 43e2232a0e
1 changed files with 2 additions and 2 deletions

View File

@ -1974,7 +1974,7 @@ static struct ast_frame *pbx_capi_read(struct ast_channel *c)
if ((f->datalen > 0) && (i->doDTMF > 0) && (i->vad != NULL)) {
f = ast_dsp_process(c, i->vad, f);
}
#if 0
#ifdef CC_AST_HAS_VERSION_1_4
} else if (f->frametype == AST_FRAME_DTMF) {
/* Work around problem with recognition of fast sequences of events,
* see main/channel.c for details
@ -1983,7 +1983,7 @@ static struct ast_frame *pbx_capi_read(struct ast_channel *c)
ast_test_flag(c, AST_FLAG_EMULATE_DTMF) ||
ast_test_flag(c, AST_FLAG_IN_DTMF))) {
ast_set_flag(c, AST_FLAG_IN_DTMF);
c->dtmf_tv = ast_tv(0,0);
c->dtmf_tv = ast_tvsub(ast_tvnow(),ast_tv(0,250*1000));
if (!f->len)
f->len = 100;
}