summaryrefslogtreecommitdiff
path: root/apps/app_speech_utils.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-04-12 19:57:21 +0000
committerJoshua Colp <jcolp@digium.com>2006-04-12 19:57:21 +0000
commit416cd5d8a01f4a453470fe5ce0ecd76a086270d7 (patch)
tree070f7484f3b800f4eabf5d14a9ab0e2fdc184d22 /apps/app_speech_utils.c
parentb24bc86fc214deca575904f023fa45a33d6c3984 (diff)
Add ability to see if the person calling said anything or not.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19512 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_speech_utils.c')
-rw-r--r--apps/app_speech_utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c
index 0c5c32373..264f56ba1 100644
--- a/apps/app_speech_utils.c
+++ b/apps/app_speech_utils.c
@@ -368,6 +368,7 @@ static int speech_background(struct ast_channel *chan, void *data)
} else {
time(&current);
if ((current-start) >= timeout) {
+ pbx_builtin_setvar_helper(chan, "SILENCE", "1");
done = 1;
break;
}
@@ -398,6 +399,7 @@ static int speech_background(struct ast_channel *chan, void *data)
case AST_SPEECH_STATE_DONE:
/* Assume there will be no results by default */
pbx_builtin_setvar_helper(chan, "RESULTS", "0");
+ pbx_builtin_setvar_helper(chan, "SILENCE", "0");
/* Decoding is done and over... see if we have results */
results = ast_speech_results_get(speech);
if (results != NULL) {