MERGE: DTMF recognition via ASR modules (implemented in UniMRCP)

This commit is contained in:
Luke Dashjr
2011-01-26 14:40:35 -06:00
parent 92a9bacc44
commit 15e65cfafb
5 changed files with 115 additions and 1 deletions
+2
View File
@@ -400,6 +400,8 @@ struct switch_asr_interface {
switch_status_t (*asr_disable_grammar) (switch_asr_handle_t *ah, const char *name);
/*! function to disable all grammars to the asr interface */
switch_status_t (*asr_disable_all_grammars) (switch_asr_handle_t *ah);
/*! function to feed DTMF to the ASR */
switch_status_t (*asr_feed_dtmf) (switch_asr_handle_t *ah, const switch_dtmf_t *dtmf, switch_asr_flag_t *flags);
};
/*! an abstract representation of an asr speech interface. */