From: Russell Bryant Date: Wed, 26 Dec 2007 17:07:12 +0000 (+0000) Subject: Merged revisions 94790 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~302 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=296e09f9aa7ecf1f153288181176030894645497;p=thirdparty%2Fasterisk.git Merged revisions 94790 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r94790 | russell | 2007-12-26 11:06:26 -0600 (Wed, 26 Dec 2007) | 5 lines Don't store DTMF BEGIN frames while a channel is in autoservice. It's just going to make ast_read() do a lot of extra work when the channel comes back out of autoservice. (closes issue #11628, patched by me) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@94791 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/autoservice.c b/main/autoservice.c index 7407586790..b21d1e7011 100644 --- a/main/autoservice.c +++ b/main/autoservice.c @@ -116,7 +116,6 @@ static void *autoservice_run(void *ign) * be queued up or not. */ switch (f->frametype) { /* Save these frames */ - case AST_FRAME_DTMF_BEGIN: case AST_FRAME_DTMF_END: case AST_FRAME_CONTROL: case AST_FRAME_TEXT: @@ -126,6 +125,7 @@ static void *autoservice_run(void *ign) break; /* Throw these frames away */ + case AST_FRAME_DTMF_BEGIN: case AST_FRAME_VOICE: case AST_FRAME_VIDEO: case AST_FRAME_NULL: