├── LICENSE ├── Makefile ├── README.md ├── example └── gortana │ └── main.go ├── internal └── cmusphinx.png ├── pocketsphinx.yml ├── pocketsphinx ├── cgo_helpers.go ├── cgo_helpers.h ├── cmdln_macro.h ├── const.go ├── doc.go ├── pocketsphinx.go ├── pocketsphinx.h ├── pocketsphinx_export.h ├── ps_lattice.h ├── ps_mllr.h ├── ps_search.h ├── stdarg.h ├── types.go └── util.go ├── sphinx ├── LICENSE ├── config.go ├── helpers.go ├── jsgf.go ├── lattice.go ├── logmath.go ├── mllr.go ├── ngram.go └── sphinx.go └── sphinxbase ├── ad.h ├── agc.h ├── bio.h ├── bitarr.h ├── bitvec.h ├── byteorder.h ├── case.h ├── ckd_alloc.h ├── clapack_lite.h ├── cmd_ln.h ├── cmn.h ├── err.h ├── f2c.h ├── fe.h ├── feat.h ├── filename.h ├── fixpoint.h ├── fsg_model.h ├── genrand.h ├── glist.h ├── hash_table.h ├── heap.h ├── jsgf.h ├── listelem_alloc.h ├── logmath.h ├── matrix.h ├── mmio.h ├── ngram_model.h ├── pio.h ├── prim_type.h ├── priority_queue.h ├── profile.h ├── sbthread.h ├── sphinx_config.h ├── sphinxbase_export.h ├── strfuncs.h └── yin.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/README.md -------------------------------------------------------------------------------- /example/gortana/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/example/gortana/main.go -------------------------------------------------------------------------------- /internal/cmusphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/internal/cmusphinx.png -------------------------------------------------------------------------------- /pocketsphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx.yml -------------------------------------------------------------------------------- /pocketsphinx/cgo_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/cgo_helpers.go -------------------------------------------------------------------------------- /pocketsphinx/cgo_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/cgo_helpers.h -------------------------------------------------------------------------------- /pocketsphinx/cmdln_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/cmdln_macro.h -------------------------------------------------------------------------------- /pocketsphinx/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/const.go -------------------------------------------------------------------------------- /pocketsphinx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/doc.go -------------------------------------------------------------------------------- /pocketsphinx/pocketsphinx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/pocketsphinx.go -------------------------------------------------------------------------------- /pocketsphinx/pocketsphinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/pocketsphinx.h -------------------------------------------------------------------------------- /pocketsphinx/pocketsphinx_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/pocketsphinx_export.h -------------------------------------------------------------------------------- /pocketsphinx/ps_lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/ps_lattice.h -------------------------------------------------------------------------------- /pocketsphinx/ps_mllr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/ps_mllr.h -------------------------------------------------------------------------------- /pocketsphinx/ps_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/ps_search.h -------------------------------------------------------------------------------- /pocketsphinx/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/stdarg.h -------------------------------------------------------------------------------- /pocketsphinx/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/types.go -------------------------------------------------------------------------------- /pocketsphinx/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/pocketsphinx/util.go -------------------------------------------------------------------------------- /sphinx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/LICENSE -------------------------------------------------------------------------------- /sphinx/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/config.go -------------------------------------------------------------------------------- /sphinx/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/helpers.go -------------------------------------------------------------------------------- /sphinx/jsgf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/jsgf.go -------------------------------------------------------------------------------- /sphinx/lattice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/lattice.go -------------------------------------------------------------------------------- /sphinx/logmath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/logmath.go -------------------------------------------------------------------------------- /sphinx/mllr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/mllr.go -------------------------------------------------------------------------------- /sphinx/ngram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/ngram.go -------------------------------------------------------------------------------- /sphinx/sphinx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinx/sphinx.go -------------------------------------------------------------------------------- /sphinxbase/ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/ad.h -------------------------------------------------------------------------------- /sphinxbase/agc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/agc.h -------------------------------------------------------------------------------- /sphinxbase/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/bio.h -------------------------------------------------------------------------------- /sphinxbase/bitarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/bitarr.h -------------------------------------------------------------------------------- /sphinxbase/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/bitvec.h -------------------------------------------------------------------------------- /sphinxbase/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/byteorder.h -------------------------------------------------------------------------------- /sphinxbase/case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/case.h -------------------------------------------------------------------------------- /sphinxbase/ckd_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/ckd_alloc.h -------------------------------------------------------------------------------- /sphinxbase/clapack_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/clapack_lite.h -------------------------------------------------------------------------------- /sphinxbase/cmd_ln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/cmd_ln.h -------------------------------------------------------------------------------- /sphinxbase/cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/cmn.h -------------------------------------------------------------------------------- /sphinxbase/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/err.h -------------------------------------------------------------------------------- /sphinxbase/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/f2c.h -------------------------------------------------------------------------------- /sphinxbase/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/fe.h -------------------------------------------------------------------------------- /sphinxbase/feat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/feat.h -------------------------------------------------------------------------------- /sphinxbase/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/filename.h -------------------------------------------------------------------------------- /sphinxbase/fixpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/fixpoint.h -------------------------------------------------------------------------------- /sphinxbase/fsg_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/fsg_model.h -------------------------------------------------------------------------------- /sphinxbase/genrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/genrand.h -------------------------------------------------------------------------------- /sphinxbase/glist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/glist.h -------------------------------------------------------------------------------- /sphinxbase/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/hash_table.h -------------------------------------------------------------------------------- /sphinxbase/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/heap.h -------------------------------------------------------------------------------- /sphinxbase/jsgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/jsgf.h -------------------------------------------------------------------------------- /sphinxbase/listelem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/listelem_alloc.h -------------------------------------------------------------------------------- /sphinxbase/logmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/logmath.h -------------------------------------------------------------------------------- /sphinxbase/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/matrix.h -------------------------------------------------------------------------------- /sphinxbase/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/mmio.h -------------------------------------------------------------------------------- /sphinxbase/ngram_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/ngram_model.h -------------------------------------------------------------------------------- /sphinxbase/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/pio.h -------------------------------------------------------------------------------- /sphinxbase/prim_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/prim_type.h -------------------------------------------------------------------------------- /sphinxbase/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/priority_queue.h -------------------------------------------------------------------------------- /sphinxbase/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/profile.h -------------------------------------------------------------------------------- /sphinxbase/sbthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/sbthread.h -------------------------------------------------------------------------------- /sphinxbase/sphinx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/sphinx_config.h -------------------------------------------------------------------------------- /sphinxbase/sphinxbase_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/sphinxbase_export.h -------------------------------------------------------------------------------- /sphinxbase/strfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/strfuncs.h -------------------------------------------------------------------------------- /sphinxbase/yin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab/pocketsphinx-go/HEAD/sphinxbase/yin.h --------------------------------------------------------------------------------