aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-31 16:21:34 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-31 16:21:34 +0000
commita6e0cf8675ef4f51a2cfc7a4b77339cb3c2464a1 (patch)
tree25073008e73e1ee42d502d6d4eb12b60cc81f97c /include
parent90284124ca36972d0c3b9636b10a158318321a91 (diff)
Merged revisions 77831 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r77831 | file | 2007-07-31 13:17:09 -0300 (Tue, 31 Jul 2007) | 2 lines Add a flag to the speech API that allows an engine to set whether it received results or not. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@77833 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/speech.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asterisk/speech.h b/include/asterisk/speech.h
index 02d056f33..e040629d4 100644
--- a/include/asterisk/speech.h
+++ b/include/asterisk/speech.h
@@ -29,8 +29,9 @@ extern "C" {
/* Speech structure flags */
enum ast_speech_flags {
- AST_SPEECH_QUIET = (1 << 0), /* Quiet down output... they are talking */
- AST_SPEECH_SPOKE = (1 << 1), /* Speaker spoke! */
+ AST_SPEECH_QUIET = (1 << 0), /* Quiet down output... they are talking */
+ AST_SPEECH_SPOKE = (1 << 1), /* Speaker spoke! */
+ AST_SPEECH_HAVE_RESULTS = (1 << 2), /* Results are present */
};
/* Speech structure states - in order of expected change */