dect
/
asterisk
Archived
13
0
Fork 0

Seriously fix echo cancellation on inbound calls with FXO interfaces (and enable echo training on them)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2077 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-01-26 16:39:34 +00:00
parent c05747de89
commit 05a81a1668
1 changed files with 4 additions and 1 deletions

View File

@ -2011,6 +2011,10 @@ static int zt_answer(struct ast_channel *ast)
p->owner = p->subs[SUB_REAL].owner;
}
}
if (p->sig & __ZT_SIG_FXS) {
zt_enable_ec(p);
zt_train_ec(p);
}
break;
#ifdef ZAPATA_PRI
case SIG_PRI:
@ -4673,7 +4677,6 @@ static void *ss_thread(void *data)
ast_setstate(chan, AST_STATE_RING);
chan->rings = 1;
p->ringt = RINGT;
zt_enable_ec(p);
res = ast_pbx_run(chan);
if (res) {
ast_hangup(chan);