[asterisk-commits] file: branch 1.4 r53601 -
/branches/1.4/apps/app_speech_utils.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu Feb 8 10:54:33 MST 2007
Author: file
Date: Thu Feb 8 11:54:32 2007
New Revision: 53601
URL: http://svn.digium.com/view/asterisk?view=rev&rev=53601
Log:
Fix timeout issue when utterance is longer then timeout itself.
Modified:
branches/1.4/apps/app_speech_utils.c
Modified: branches/1.4/apps/app_speech_utils.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_speech_utils.c?view=diff&rev=53601&r1=53600&r2=53601
==============================================================================
--- branches/1.4/apps/app_speech_utils.c (original)
+++ branches/1.4/apps/app_speech_utils.c Thu Feb 8 11:54:32 2007
@@ -505,7 +505,7 @@
static int speech_background(struct ast_channel *chan, void *data)
{
unsigned int timeout = 0;
- int res = 0, done = 0, argc = 0, started = 0;
+ int res = 0, done = 0, argc = 0, started = 0, quieted = 0;
struct ast_module_user *u = NULL;
struct ast_speech *speech = find_speech(chan);
struct ast_frame *f = NULL;
@@ -602,6 +602,7 @@
if (ast_test_flag(speech, AST_SPEECH_QUIET) && chan->stream != NULL) {
ast_stopstream(chan);
ast_clear_flag(speech, AST_SPEECH_QUIET);
+ quieted = 1;
}
/* Check state so we can see what to do */
switch (speech->state) {
@@ -609,7 +610,7 @@
/* If audio playback has stopped do a check for timeout purposes */
if (chan->streamid == -1 && chan->timingfunc == NULL)
ast_stopstream(chan);
- if (chan->stream == NULL && timeout > 0 && started == 0 && !filename_tmp) {
+ if (!quieted && chan->stream == NULL && timeout > 0 && started == 0 && !filename_tmp) {
time(&start);
started = 1;
}
More information about the asterisk-commits
mailing list