aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/agi.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-03 21:03:05 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-03 21:03:05 +0000
commit7c209702a8488eec2dcad332dc9228a9b9185185 (patch)
tree656642e71b07e0f3099e0702b71d683e8b9e3fad /include/asterisk/agi.h
parent5ea0aff8a0589ffba8ab3875d6c07301b2fe2c75 (diff)
Add AGI commands for speech recognition. These mirror the dialplan applications mostly but present the information in a nicer fashion. The SPEECH RECOGNIZE command for example will return the results instead of having to query the dialplan functions.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@90656 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/agi.h')
-rw-r--r--include/asterisk/agi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/agi.h b/include/asterisk/agi.h
index 3528c0e55..1d86ac90b 100644
--- a/include/asterisk/agi.h
+++ b/include/asterisk/agi.h
@@ -32,6 +32,7 @@ typedef struct agi_state {
int audio; /* FD for audio output */
int ctrl; /* FD for input control */
unsigned int fast:1; /* flag for fast agi or not */
+ struct ast_speech *speech; /* Speech structure for speech recognition */
} AGI;
typedef struct agi_command {