mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-24 06:53:41 +00:00
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: https://origsvn.digium.com/svn/asterisk/trunk@77833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user