aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-31 16:17:09 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-31 16:17:09 +0000
commit7dde2a6eed26aeec6da97a477d310f55423b77be (patch)
tree9fa56d80f60bd4cbe7dd3411c245bfe11d862e0a /include
parent014ef1baf579c9aeda8a7755385aebe4cdcb97c2 (diff)
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/branches/1.4@77831 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 3af01e614..85e17edf2 100644
--- a/include/asterisk/speech.h
+++ b/include/asterisk/speech.h
@@ -28,8 +28,9 @@ extern "C" {
#endif
/* Speech structure flags */
-#define AST_SPEECH_QUIET (1 << 0) /* Quiet down output... they are talking */
-#define AST_SPEECH_SPOKE (1 << 1) /* Speaker did not speak */
+#define AST_SPEECH_QUIET (1 << 0) /* Quiet down output... they are talking */
+#define AST_SPEECH_SPOKE (1 << 1) /* Speaker did not speak */
+#define AST_SPEECH_HAVE_RESULTS (1 << 2) /* Results are present */
/* Speech structure states - in order of expected change */
#define AST_SPEECH_STATE_NOT_READY 0 /* Not ready to accept audio */