From: Kevin P. Fleming Date: Thu, 18 Jan 2007 23:35:35 +0000 (+0000) Subject: support echo cancellers that can handle 64ms or 128ms of echo cancellation X-Git-Tag: 1.2.15~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6926dd0fbeb1249553a78cd786205565eac89568;p=thirdparty%2Fasterisk.git support echo cancellers that can handle 64ms or 128ms of echo cancellation git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@51269 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 73cc62741c..c671e65966 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -10397,7 +10397,7 @@ static int setup_zap(int reload) y = atoi(v->value); } else y = 0; - if ((y == 32) || (y == 64) || (y == 128) || (y == 256)) + if ((y == 32) || (y == 64) || (y == 128) || (y == 256) || (y == 512) || (y == 1024)) echocancel = y; else { echocancel = ast_true(v->value);