[asterisk-commits] mnicholson: branch 1.4 r264334 - /branches/1.4/apps/app_speech_utils.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 19 15:01:43 CDT 2010
Author: mnicholson
Date: Wed May 19 15:01:38 2010
New Revision: 264334
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=264334
Log:
Set quieted flag when receiving a dtmf tone during playback in speechbackground.
(closes issue #16966)
Reported by: asackheim
Modified:
branches/1.4/apps/app_speech_utils.c
Modified: branches/1.4/apps/app_speech_utils.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_speech_utils.c?view=diff&rev=264334&r1=264333&r2=264334
==============================================================================
--- branches/1.4/apps/app_speech_utils.c (original)
+++ branches/1.4/apps/app_speech_utils.c Wed May 19 15:01:38 2010
@@ -735,6 +735,7 @@
if (dtmf_terminator != '\0' && f->subclass == dtmf_terminator) {
done = 1;
} else {
+ quieted = 1;
if (chan->stream != NULL) {
ast_stopstream(chan);
}
More information about the asterisk-commits
mailing list