]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
support echo cancellers that can handle 64ms or 128ms of echo cancellation
authorKevin P. Fleming <kpfleming@digium.com>
Thu, 18 Jan 2007 23:35:35 +0000 (23:35 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Thu, 18 Jan 2007 23:35:35 +0000 (23:35 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@51269 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_zap.c

index 73cc62741c6663d6b9e06d77136a390e634104e5..c671e659664aaeb51f8e7ba3f02195d587a03a8e 100644 (file)
@@ -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);