forked from signalwire/freeswitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revamp mod_pocketsphinx to use jsgf format. Known bugs which are goin…
…g to be fixed are: Using words in your grammar that aren't in the dictionary will segfault. Bug is already brought up with the pocketsphinx maintainer. /b git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12224 d0543943-73ff-0310-b7d9-9358b9ac24b2
- Loading branch information
1 parent
5467d03
commit 54ff389
Showing
3 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#JSGF V1.0; | ||
|
||
/** | ||
* JSGF Grammar for example | ||
*/ | ||
|
||
grammar example; | ||
|
||
<yes> = [ yes ]; | ||
<no> = [ no ]; | ||
|
||
public <results> = [ <yes> | <no> ]; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters