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

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2077 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 22 years ago
parent 39f0e4b207
commit e7f46a4251

@ -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);

Loading…
Cancel
Save