pocketsphinx 5.0.2__tar.gz → 5.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (635) hide show
  1. pocketsphinx-5.0.4/.github/dependabot.yml +6 -0
  2. pocketsphinx-5.0.4/.github/workflows/build_wheels.yml +40 -0
  3. pocketsphinx-5.0.4/.github/workflows/tests.yml +80 -0
  4. pocketsphinx-5.0.4/.gitignore +22 -0
  5. pocketsphinx-5.0.4/.readthedocs.yml +13 -0
  6. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/CMakeLists.txt +1 -1
  7. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/Dockerfile +2 -5
  8. pocketsphinx-5.0.4/MANIFEST.in +48 -0
  9. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/NEWS +6 -4
  10. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/PKG-INFO +18 -14
  11. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/README.md +17 -2
  12. pocketsphinx-5.0.4/TODO.md +12 -0
  13. pocketsphinx-5.0.4/cython/.gitignore +2 -0
  14. pocketsphinx-5.0.4/cython/CMakeLists.txt +29 -0
  15. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/README.md +1 -1
  16. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/_pocketsphinx.pyx +4 -4
  17. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pocketsphinx/__init__.py +7 -1
  18. pocketsphinx-5.0.4/cython/pocketsphinx/lm.py +383 -0
  19. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pocketsphinx/segmenter.py +1 -1
  20. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/endpointer_test.py +8 -5
  21. pocketsphinx-5.0.4/docs/requirements.txt +5 -0
  22. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/conf.py +2 -2
  23. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/CMakeLists.txt +1 -1
  24. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx.1 +1 -1
  25. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx.1.in +1 -1
  26. pocketsphinx-5.0.4/examples/.gitignore +4 -0
  27. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/gstpocketsphinx.c +3 -3
  28. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/alignment.h +2 -2
  29. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/err.h +1 -1
  30. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/model.h +1 -1
  31. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx.h +2 -2
  32. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_main.c +2 -0
  33. pocketsphinx-5.0.4/pyproject.toml +75 -0
  34. pocketsphinx-5.0.4/release-checklist.md +13 -0
  35. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/acmod.c +1 -1
  36. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/include/signal_processing_library.h +4 -4
  37. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/min_max_operations.c +1 -1
  38. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_interface.c +1 -1
  39. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_noise.c +2 -2
  40. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/yin.c +2 -2
  41. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/yin.h +1 -1
  42. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn.h +1 -1
  43. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/feat.c +1 -1
  44. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/feat.h +1 -1
  45. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_history.h +1 -1
  46. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/bitarr.h +2 -2
  47. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngrams_raw.h +4 -4
  48. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/mdef.c +1 -1
  49. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_gauden.c +1 -1
  50. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search.h +1 -1
  51. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_lattice.c +2 -2
  52. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/checks.h +1 -1
  53. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/README.python +2 -2
  54. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bio.h +1 -1
  55. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bitvec.h +2 -2
  56. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/clapack_scrub.py +1 -1
  57. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/cmd_ln.h +1 -1
  58. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/fortran.py +1 -1
  59. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/glist.h +2 -2
  60. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/listelem_alloc.h +1 -1
  61. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/matrix.c +2 -2
  62. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/slapack_lite.c +1 -1
  63. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/strfuncs.h +1 -1
  64. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat_fe.c +1 -1
  65. pocketsphinx-5.0.4/tox.ini +22 -0
  66. pocketsphinx-5.0.2/cython/CMakeLists.txt +0 -25
  67. pocketsphinx-5.0.2/cython/pocketsphinx.egg-info/SOURCES.txt +0 -618
  68. pocketsphinx-5.0.2/docs/Makefile +0 -20
  69. pocketsphinx-5.0.2/docs/requirements.txt +0 -5
  70. pocketsphinx-5.0.2/pyproject.toml +0 -24
  71. pocketsphinx-5.0.2/requirements.dev.txt +0 -6
  72. pocketsphinx-5.0.2/setup.cfg +0 -34
  73. pocketsphinx-5.0.2/setup.py +0 -9
  74. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/.dockerignore +0 -0
  75. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/AUTHORS +0 -0
  76. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/LICENSE +0 -0
  77. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/config.h.in +0 -0
  78. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/_pocketsphinx.pxd +0 -0
  79. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pypocketsphinx-examples.py +0 -0
  80. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/alignment_test.py +0 -0
  81. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/config_test.py +0 -0
  82. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/continuous_test.py +0 -0
  83. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/decoder_test.py +0 -0
  84. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/fsg_test.py +0 -0
  85. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/jsgf_test.py +0 -0
  86. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/kws_test.py +0 -0
  87. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/lattice_test.py +0 -0
  88. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/lm_test.py +0 -0
  89. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/logmath_test.py +0 -0
  90. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/phoneme_test.py +0 -0
  91. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/pypocketsphinx_test.py +0 -0
  92. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/vad_test.py +0 -0
  93. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/gen_config.py +0 -0
  94. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/make.bat +0 -0
  95. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/config_params.rst +0 -0
  96. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/index.rst +0 -0
  97. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/pocketsphinx.rst +0 -0
  98. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/args2man.pl +0 -0
  99. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_batch.1 +0 -0
  100. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_batch.1.in +0 -0
  101. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_mdef_convert.1 +0 -0
  102. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cepview.1 +0 -0
  103. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cepview.1.in +0 -0
  104. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cont_seg.1 +0 -0
  105. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cont_seg.1.in +0 -0
  106. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_fe.1 +0 -0
  107. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_fe.1.in +0 -0
  108. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_convert.1 +0 -0
  109. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_convert.1.in +0 -0
  110. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_eval.1 +0 -0
  111. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_eval.1.in +0 -0
  112. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_sort.1 +0 -0
  113. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_pitch.1 +0 -0
  114. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_pitch.1.in +0 -0
  115. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/CMakeLists.txt +0 -0
  116. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/README.md +0 -0
  117. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live.c +0 -0
  118. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live.py +0 -0
  119. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_portaudio.c +0 -0
  120. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_pulseaudio.c +0 -0
  121. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_win32.c +0 -0
  122. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/segment.py +0 -0
  123. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/simple.c +0 -0
  124. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/simple.py +0 -0
  125. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/CMakeLists.txt +0 -0
  126. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/gstpocketsphinx.h +0 -0
  127. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/livedemo.c +0 -0
  128. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/livedemo.py +0 -0
  129. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/endpointer.h +0 -0
  130. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/export.h +0 -0
  131. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/lattice.h +0 -0
  132. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/logmath.h +0 -0
  133. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/mllr.h +0 -0
  134. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/prim_type.h +0 -0
  135. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/search.h +0 -0
  136. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/vad.h +0 -0
  137. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/indent.sh +0 -0
  138. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/CMakeLists.txt +0 -0
  139. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/cmudict-en-us.dict +0 -0
  140. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/README +0 -0
  141. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/feat.params +0 -0
  142. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/mdef +0 -0
  143. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/means +0 -0
  144. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/noisedict +0 -0
  145. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/sendump +0 -0
  146. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/transition_matrices +0 -0
  147. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/variances +0 -0
  148. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us-phone.lm.bin +0 -0
  149. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us.lm.bin +0 -0
  150. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/pocketsphinx.pc.in +0 -0
  151. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/CMakeLists.txt +0 -0
  152. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/fsg2dot.pl +0 -0
  153. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_batch.c +0 -0
  154. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_jsgf2fsg.c +0 -0
  155. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_lm_convert.c +0 -0
  156. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_lm_eval.c +0 -0
  157. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_mdef_convert.c +0 -0
  158. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_pitch.c +0 -0
  159. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/sphinx_config.h.in +0 -0
  160. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/CMakeLists.txt +0 -0
  161. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/acmod.h +0 -0
  162. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/allphone_search.c +0 -0
  163. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/allphone_search.h +0 -0
  164. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/bin_mdef.c +0 -0
  165. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/bin_mdef.h +0 -0
  166. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/cross_correlation.c +0 -0
  167. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/division_operations.c +0 -0
  168. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/downsample_fast.c +0 -0
  169. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/energy.c +0 -0
  170. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/get_scaling_square.c +0 -0
  171. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/include/spl_inl.h +0 -0
  172. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample.c +0 -0
  173. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_48khz.c +0 -0
  174. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_by_2_internal.c +0 -0
  175. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_by_2_internal.h +0 -0
  176. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_fractional.c +0 -0
  177. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/spl_inl.c +0 -0
  178. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/vector_scaling_operations.c +0 -0
  179. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/include/webrtc_vad.h +0 -0
  180. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_core.c +0 -0
  181. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_core.h +0 -0
  182. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_filterbank.c +0 -0
  183. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_filterbank.h +0 -0
  184. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_gmm.c +0 -0
  185. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_gmm.h +0 -0
  186. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_sp.c +0 -0
  187. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_sp.h +0 -0
  188. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/webrtc_vad.c +0 -0
  189. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/config_macro.h +0 -0
  190. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict.c +0 -0
  191. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict.h +0 -0
  192. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict2pid.c +0 -0
  193. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict2pid.h +0 -0
  194. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fast_ptm.txt +0 -0
  195. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe.h +0 -0
  196. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_internal.h +0 -0
  197. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_noise.h +0 -0
  198. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_sigproc.c +0 -0
  199. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_type.h +0 -0
  200. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp.c +0 -0
  201. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp.h +0 -0
  202. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_affine.c +0 -0
  203. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_affine.h +0 -0
  204. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_inverse_linear.c +0 -0
  205. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_inverse_linear.h +0 -0
  206. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_piecewise_linear.c +0 -0
  207. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_piecewise_linear.h +0 -0
  208. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fixlog.c +0 -0
  209. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fixpoint.h +0 -0
  210. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/make_log_sub_table.py +0 -0
  211. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/make_log_table.py +0 -0
  212. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/agc.c +0 -0
  213. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/agc.h +0 -0
  214. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn.c +0 -0
  215. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn_live.c +0 -0
  216. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/lda.c +0 -0
  217. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_history.c +0 -0
  218. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_lextree.c +0 -0
  219. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_lextree.h +0 -0
  220. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_search.c +0 -0
  221. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_search_internal.h +0 -0
  222. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/hmm.c +0 -0
  223. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/hmm.h +0 -0
  224. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/jsmn.h +0 -0
  225. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_detections.c +0 -0
  226. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_detections.h +0 -0
  227. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_search.c +0 -0
  228. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_search.h +0 -0
  229. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/_jsgf_scanner.l +0 -0
  230. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/bitarr.c +0 -0
  231. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/fsg_model.c +0 -0
  232. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/fsg_model.h +0 -0
  233. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf.c +0 -0
  234. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf.h +0 -0
  235. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_internal.h +0 -0
  236. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.c +0 -0
  237. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.h +0 -0
  238. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.y +0 -0
  239. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_scanner.c +0 -0
  240. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_scanner.h +0 -0
  241. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie.c +0 -0
  242. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie.h +0 -0
  243. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie_quant.c +0 -0
  244. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie_quant.h +0 -0
  245. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model.c +0 -0
  246. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model.h +0 -0
  247. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_internal.h +0 -0
  248. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_set.c +0 -0
  249. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_set.h +0 -0
  250. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_trie.c +0 -0
  251. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_trie.h +0 -0
  252. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngrams_raw.c +0 -0
  253. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/mdef.h +0 -0
  254. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_gauden.h +0 -0
  255. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_mgau.c +0 -0
  256. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_mgau.h +0 -0
  257. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_senone.c +0 -0
  258. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_senone.h +0 -0
  259. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search.c +0 -0
  260. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdflat.c +0 -0
  261. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdflat.h +0 -0
  262. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdtree.c +0 -0
  263. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdtree.h +0 -0
  264. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/phone_loop_search.c +0 -0
  265. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/phone_loop_search.h +0 -0
  266. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/pocketsphinx.c +0 -0
  267. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/pocketsphinx_internal.h +0 -0
  268. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_alignment.c +0 -0
  269. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_alignment_internal.h +0 -0
  270. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_config.c +0 -0
  271. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_endpointer.c +0 -0
  272. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_lattice_internal.h +0 -0
  273. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_mllr.c +0 -0
  274. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_vad.c +0 -0
  275. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ptm_mgau.c +0 -0
  276. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ptm_mgau.h +0 -0
  277. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/compile_assert_c.h +0 -0
  278. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/sanitizer.h +0 -0
  279. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/system/arch.h +0 -0
  280. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/typedefs.h +0 -0
  281. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s2_semi_mgau.c +0 -0
  282. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s2_semi_mgau.h +0 -0
  283. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s3types.h +0 -0
  284. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/state_align_search.c +0 -0
  285. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/state_align_search.h +0 -0
  286. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tied_mgau_common.h +0 -0
  287. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tmat.c +0 -0
  288. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tmat.h +0 -0
  289. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bio.c +0 -0
  290. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bitvec.c +0 -0
  291. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blas_lite.c +0 -0
  292. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blkarray_list.c +0 -0
  293. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blkarray_list.h +0 -0
  294. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/byteorder.h +0 -0
  295. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/case.c +0 -0
  296. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/case.h +0 -0
  297. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/ckd_alloc.c +0 -0
  298. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/ckd_alloc.h +0 -0
  299. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/clapack_lite.h +0 -0
  300. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/cmd_ln.c +0 -0
  301. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/dtoa.c +0 -0
  302. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/err.c +0 -0
  303. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/errno.c +0 -0
  304. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/f2c.h +0 -0
  305. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/f2c_lite.c +0 -0
  306. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/filename.c +0 -0
  307. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/filename.h +0 -0
  308. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/genrand.c +0 -0
  309. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/genrand.h +0 -0
  310. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/glist.c +0 -0
  311. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/hash_table.c +0 -0
  312. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/hash_table.h +0 -0
  313. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/heap.c +0 -0
  314. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/heap.h +0 -0
  315. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/listelem_alloc.c +0 -0
  316. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/logmath.c +0 -0
  317. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/make_lite.py +0 -0
  318. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/matrix.h +0 -0
  319. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/mmio.c +0 -0
  320. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/mmio.h +0 -0
  321. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/pio.c +0 -0
  322. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/pio.h +0 -0
  323. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/priority_queue.c +0 -0
  324. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/priority_queue.h +0 -0
  325. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/profile.c +0 -0
  326. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/profile.h +0 -0
  327. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/slamch.c +0 -0
  328. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/soundfiles.c +0 -0
  329. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/strfuncs.c +0 -0
  330. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/vector.c +0 -0
  331. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/vector.h +0 -0
  332. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/wrapped_routines +0 -0
  333. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/CMakeLists.txt +0 -0
  334. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/compare_table.pl +0 -0
  335. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/feat.params +0 -0
  336. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/mdef +0 -0
  337. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/means +0 -0
  338. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/mixture_weights +0 -0
  339. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/noisedict +0 -0
  340. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/transition_matrices +0 -0
  341. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/variances +0 -0
  342. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/001.wav +0 -0
  343. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/002.wav +0 -0
  344. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/003.wav +0 -0
  345. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/004.wav +0 -0
  346. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/005.wav +0 -0
  347. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.fileids +0 -0
  348. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.gram +0 -0
  349. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.hyp +0 -0
  350. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.transcription +0 -0
  351. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/defective.dic +0 -0
  352. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/defective.gram +0 -0
  353. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/forever/input_2_16k.wav +0 -0
  354. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/forever/input_4_16k.wav +0 -0
  355. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.fsg +0 -0
  356. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.gram +0 -0
  357. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.kws +0 -0
  358. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.mfc +0 -0
  359. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.raw +0 -0
  360. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/fileids +0 -0
  361. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/make_single_track.py +0 -0
  362. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.json +0 -0
  363. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.lab +0 -0
  364. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.phone.json +0 -0
  365. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.state.json +0 -0
  366. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.txt +0 -0
  367. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.wav +0 -0
  368. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.json +0 -0
  369. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.lab +0 -0
  370. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.phone.json +0 -0
  371. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.state.json +0 -0
  372. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.txt +0 -0
  373. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.wav +0 -0
  374. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.json +0 -0
  375. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.lab +0 -0
  376. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.phone.json +0 -0
  377. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.state.json +0 -0
  378. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.txt +0 -0
  379. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.wav +0 -0
  380. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.json +0 -0
  381. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.lab +0 -0
  382. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.phone.json +0 -0
  383. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.state.json +0 -0
  384. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.txt +0 -0
  385. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.wav +0 -0
  386. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.json +0 -0
  387. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.lab +0 -0
  388. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.phone.json +0 -0
  389. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.state.json +0 -0
  390. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.txt +0 -0
  391. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.wav +0 -0
  392. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-align.align +0 -0
  393. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-align.matchseg +0 -0
  394. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-lm.match +0 -0
  395. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-main.fixed.json +0 -0
  396. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-main.json +0 -0
  397. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/transcription +0 -0
  398. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/mllr_matrices +0 -0
  399. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null-align.json +0 -0
  400. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null.json +0 -0
  401. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null.wav +0 -0
  402. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/numbers.raw +0 -0
  403. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/something.raw +0 -0
  404. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/test.lmctl +0 -0
  405. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/dhd.2934z.raw +0 -0
  406. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/feat.params +0 -0
  407. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/mdef +0 -0
  408. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/means +0 -0
  409. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/sendump +0 -0
  410. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/transition_matrices +0 -0
  411. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/variances +0 -0
  412. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.dic +0 -0
  413. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.fsg +0 -0
  414. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.lm.bin +0 -0
  415. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.111a.mfc +0 -0
  416. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.1b.mfc +0 -0
  417. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.2934za.mfc +0 -0
  418. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.35oa.mfc +0 -0
  419. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.3oa.mfc +0 -0
  420. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.4625a.mfc +0 -0
  421. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.588zza.mfc +0 -0
  422. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.63a.mfc +0 -0
  423. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.6o838a.mfc +0 -0
  424. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.75913a.mfc +0 -0
  425. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.844o1a.mfc +0 -0
  426. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.8b.mfc +0 -0
  427. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.9b.mfc +0 -0
  428. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.o789a.mfc +0 -0
  429. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.z4548a.mfc +0 -0
  430. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.zb.mfc +0 -0
  431. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/test-tidigits-fsg.match +0 -0
  432. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/test-tidigits-simple.match +0 -0
  433. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/tidigits.ctl +0 -0
  434. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/tidigits.lsn +0 -0
  435. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.1b.mfc +0 -0
  436. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.276317oa.mfc +0 -0
  437. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.334a.mfc +0 -0
  438. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.3z3z9a.mfc +0 -0
  439. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.48z66zza.mfc +0 -0
  440. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.532a.mfc +0 -0
  441. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.5z874a.mfc +0 -0
  442. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.6728za.mfc +0 -0
  443. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.75a.mfc +0 -0
  444. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.84983a.mfc +0 -0
  445. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.8a.mfc +0 -0
  446. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.99731a.mfc +0 -0
  447. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.o69a.mfc +0 -0
  448. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.ooa.mfc +0 -0
  449. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.za.mfc +0 -0
  450. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/turtle.dic +0 -0
  451. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/turtle.lm.bin +0 -0
  452. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/unreachable.lat +0 -0
  453. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/vad/leak-test.wav +0 -0
  454. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/vad/test-audio.raw +0 -0
  455. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/CMakeLists.txt +0 -0
  456. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-dither.cepview +0 -0
  457. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-logspec.cepview +0 -0
  458. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-smoothspec.cepview +0 -0
  459. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.2chan.wav +0 -0
  460. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.cepview +0 -0
  461. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.ctl +0 -0
  462. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.f0 +0 -0
  463. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.logspec +0 -0
  464. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.mfc +0 -0
  465. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.raw +0 -0
  466. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.sph +0 -0
  467. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.wav +0 -0
  468. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/polite.gram +0 -0
  469. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/right_recursion_53.fsg +0 -0
  470. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/right_recursion_53.gram +0 -0
  471. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-align.sh +0 -0
  472. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-cards.sh +0 -0
  473. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-cepview.sh +0 -0
  474. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-lm.sh +0 -0
  475. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-main-align.sh +0 -0
  476. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-main.sh +0 -0
  477. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-ctl.sh +0 -0
  478. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-dct.sh +0 -0
  479. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-dither-seed.sh +0 -0
  480. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-logspec.sh +0 -0
  481. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-logspec2cep.sh +0 -0
  482. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-smoothspec.sh +0 -0
  483. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe.sh +0 -0
  484. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_jsgf2fsg.sh +0 -0
  485. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_pitch.sh +0 -0
  486. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-tidigits-fsg.sh +0 -0
  487. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-tidigits-simple.sh +0 -0
  488. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.command.fsg +0 -0
  489. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.gram +0 -0
  490. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.kleene.fsg +0 -0
  491. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.nestedRightRecursion.fsg +0 -0
  492. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.nulltest.fsg +0 -0
  493. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.rightRecursion.fsg +0 -0
  494. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/testfuncs.sh.in +0 -0
  495. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/testfuncs_cygwin.sh +0 -0
  496. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/CMakeLists.txt +0 -0
  497. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_204.cc +0 -0
  498. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_acmod.c +0 -0
  499. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_acmod_grow.c +0 -0
  500. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alignment.c +0 -0
  501. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/CMakeLists.txt +0 -0
  502. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc.c +0 -0
  503. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_abort.c +0 -0
  504. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_abort.sh +0 -0
  505. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_catch.c +0 -0
  506. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_fail.c +0 -0
  507. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_listelem_alloc.c +0 -0
  508. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_allphone.c +0 -0
  509. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_bitvec.c +0 -0
  510. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/CMakeLists.txt +0 -0
  511. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase1.test +0 -0
  512. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase2.test +0 -0
  513. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase3.test +0 -0
  514. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp1.test +0 -0
  515. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp2.test +0 -0
  516. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp3.test +0 -0
  517. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase1.test +0 -0
  518. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase2.test +0 -0
  519. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase3.test +0 -0
  520. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/chgCase.c +0 -0
  521. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_config.c +0 -0
  522. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_dict.c +0 -0
  523. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_dict2pid.c +0 -0
  524. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_endpointer.c +0 -0
  525. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fe.c +0 -0
  526. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/CMakeLists.txt +0 -0
  527. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/_test_feat.res +0 -0
  528. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/_test_feat.test +0 -0
  529. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat.c +0 -0
  530. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat_live.c +0 -0
  531. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_subvq.c +0 -0
  532. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/CMakeLists.txt +0 -0
  533. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/goforward.fsg +0 -0
  534. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/polite.gram +0 -0
  535. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/public.gram +0 -0
  536. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg.c +0 -0
  537. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_accept.c +0 -0
  538. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_jsgf.c +0 -0
  539. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_read.c +0 -0
  540. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_write_fsm.c +0 -0
  541. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdflat.c +0 -0
  542. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdtree.c +0 -0
  543. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdtree_bestpath.c +0 -0
  544. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/CMakeLists.txt +0 -0
  545. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete1.res +0 -0
  546. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete1.test +0 -0
  547. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete2.res +0 -0
  548. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete2.test +0 -0
  549. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete3.res +0 -0
  550. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete3.test +0 -0
  551. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete4.res +0 -0
  552. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete4.test +0 -0
  553. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete5.res +0 -0
  554. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete5.test +0 -0
  555. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/deletehash.c +0 -0
  556. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/display.res +0 -0
  557. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/displayhash.c +0 -0
  558. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/test_hash_iter.c +0 -0
  559. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_init.c +0 -0
  560. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_jsgf.c +0 -0
  561. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_keyphrase.c +0 -0
  562. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lattice.c +0 -0
  563. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/CMakeLists.txt +0 -0
  564. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/test.txt +0 -0
  565. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/test_lineiter.c +0 -0
  566. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_int16.c +0 -0
  567. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_int8.c +0 -0
  568. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_shifted.c +0 -0
  569. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_macros.h.in +0 -0
  570. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/CMakeLists.txt +0 -0
  571. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_determinant.res +0 -0
  572. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_determinant.test +0 -0
  573. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_invert.res +0 -0
  574. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_invert.test +0 -0
  575. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_solve.res +0 -0
  576. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_solve.test +0 -0
  577. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_determinant.c +0 -0
  578. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_invert.c +0 -0
  579. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_solve.c +0 -0
  580. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_mllr.c +0 -0
  581. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_nbest.c +0 -0
  582. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.bin +0 -0
  583. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.bz2 +0 -0
  584. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.dmp +0 -0
  585. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.gz +0 -0
  586. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lmctl +0 -0
  587. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.probdef +0 -0
  588. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/102.lm.dmp +0 -0
  589. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/102.lm.gz +0 -0
  590. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/104.lm.gz +0 -0
  591. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/105.lm.gz +0 -0
  592. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/106.lm.gz +0 -0
  593. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/107.lm.gz +0 -0
  594. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/CMakeLists.txt +0 -0
  595. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_add.c +0 -0
  596. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_casefold.c +0 -0
  597. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_class.c +0 -0
  598. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_read.c +0 -0
  599. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_score.c +0 -0
  600. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_set.c +0 -0
  601. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_write.c +0 -0
  602. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.lm +0 -0
  603. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.lm.dmp +0 -0
  604. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.ug.lm +0 -0
  605. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.ug.lm.dmp +0 -0
  606. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram_model_read.c +0 -0
  607. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_pitch.c +0 -0
  608. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_posterior.c +0 -0
  609. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ps.c +0 -0
  610. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ptm_mgau.c +0 -0
  611. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_reinit.c +0 -0
  612. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_senfh.c +0 -0
  613. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_set_search.c +0 -0
  614. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_simple.c +0 -0
  615. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_state_align.c +0 -0
  616. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/CMakeLists.txt +0 -0
  617. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_fread_line.test +0 -0
  618. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_fread_line.txt +0 -0
  619. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_nextword.test +0 -0
  620. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_str2words.test +0 -0
  621. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_string_join.test +0 -0
  622. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_string_trim.test +0 -0
  623. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/strtest.c +0 -0
  624. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/test_atof.c +0 -0
  625. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/CMakeLists.txt +0 -0
  626. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_bit_encode.c +0 -0
  627. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_bitarr.c +0 -0
  628. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_build_directory.c +0 -0
  629. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_filename.c +0 -0
  630. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_fopen.c +0 -0
  631. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_heap.c +0 -0
  632. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_readfile.c +0 -0
  633. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_vad.c +0 -0
  634. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_word_align.c +0 -0
  635. {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/word_align.pl +0 -0
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
@@ -0,0 +1,40 @@
1
+ name: Build
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ make_sdist:
10
+ name: Build source distribution
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Build SDist
17
+ run: pipx run build --sdist
18
+
19
+ - uses: actions/upload-artifact@v3
20
+ with:
21
+ path: dist/*.tar.gz
22
+
23
+ build_wheels:
24
+ name: Build wheels on ${{ matrix.os }}
25
+ runs-on: ${{ matrix.os }}
26
+ strategy:
27
+ matrix:
28
+ os: [ubuntu-latest, windows-latest, macos-latest]
29
+
30
+ steps:
31
+ - name: Checkout
32
+ uses: actions/checkout@v4
33
+
34
+ - name: Build wheels
35
+ uses: pypa/cibuildwheel@v2.22.0
36
+
37
+ - name: Upload
38
+ uses: actions/upload-artifact@v3
39
+ with:
40
+ path: ./wheelhouse/*.whl
@@ -0,0 +1,80 @@
1
+ name: Run Tests
2
+ on:
3
+ - push
4
+ - workflow_dispatch
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v4
11
+ - name: Install
12
+ run: |
13
+ sudo apt-get install sox ninja-build
14
+ - name: Build
15
+ run: |
16
+ cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
17
+ cmake --build build
18
+ - name: Run tests
19
+ run: |
20
+ cmake --build build --target check
21
+ test-fixed:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v4
26
+ - name: Install
27
+ run: |
28
+ sudo apt-get install sox ninja-build
29
+ - name: Build
30
+ run: |
31
+ cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DFIXED_POINT=ON
32
+ cmake --build build
33
+ - name: Run tests
34
+ run: |
35
+ cmake --build build --target check
36
+ python-tests:
37
+ name: test with ${{ matrix.py }} on ${{ matrix.os }}
38
+ runs-on: ${{ matrix.os }}
39
+ strategy:
40
+ fail-fast: true
41
+ matrix:
42
+ py:
43
+ - "3.13"
44
+ - "3.12"
45
+ - "3.11"
46
+ - "3.10"
47
+ - "3.9"
48
+ - "3.8"
49
+ os:
50
+ - ubuntu-latest
51
+ - macos-latest
52
+ - windows-latest
53
+ steps:
54
+ - uses: actions/checkout@v4
55
+ - name: Setup python for test ${{ matrix.py }}
56
+ uses: actions/setup-python@v5
57
+ with:
58
+ python-version: ${{ matrix.py }}
59
+ - name: Install sox
60
+ if: ${{ startsWith(matrix.os, 'ubuntu') }}
61
+ run: sudo apt-get install sox
62
+ - name: Install tox
63
+ run: python -m pip install tox-gh>=1.2
64
+ - name: Setup test suite
65
+ run: tox -vv --notest
66
+ - name: Run test suite
67
+ run: tox --skip-pkg-install
68
+ pytest-editable:
69
+ runs-on: ubuntu-latest
70
+ steps:
71
+ - name: Checkout
72
+ uses: actions/checkout@v4
73
+ - name: Install
74
+ run: |
75
+ sudo apt-get install sox
76
+ python -m pip install --upgrade pip
77
+ pip install pytest memory_profiler
78
+ pip install -e .
79
+ - name: Run tests
80
+ run: pytest
@@ -0,0 +1,22 @@
1
+ build/
2
+ *~
3
+ .vscode/settings.json
4
+ *.egg-info
5
+ _skbuild
6
+ dist
7
+ MANIFEST
8
+ __pycache__
9
+ jsbuild
10
+ CMakeCache.txt
11
+ CMakeFiles
12
+ CTestTestfile.cmake
13
+ DartConfiguration.tcl
14
+ cmake_install.cmake
15
+ venv/
16
+ .tox
17
+ Makefile
18
+ config.h
19
+ include/pocketsphinx/sphinx_config.h
20
+ pocketsphinx.pc
21
+ test/testfuncs.sh
22
+ test/unit/test_macros.h
@@ -0,0 +1,13 @@
1
+ version: 2
2
+
3
+ build:
4
+ os: ubuntu-22.04
5
+ tools:
6
+ python: "3.10"
7
+
8
+ sphinx:
9
+ configuration: docs/source/conf.py
10
+
11
+ python:
12
+ install:
13
+ - requirements: docs/requirements.txt
@@ -1,6 +1,6 @@
1
1
  cmake_minimum_required(VERSION 3.14) # I like pie
2
2
 
3
- project(PocketSphinx VERSION 5.0.2
3
+ project(PocketSphinx VERSION 5.0.4
4
4
  DESCRIPTION "A small speech recognizer"
5
5
  HOMEPAGE_URL "https://github.com/cmusphinx/pocketsphinx"
6
6
  LANGUAGES C)
@@ -1,5 +1,5 @@
1
1
  FROM alpine:latest as runtime
2
- RUN apk add --no-cache python3 py3-pip sox
2
+ RUN apk add --no-cache python3 py3-pip sox portaudio alsa-utils alsaconf
3
3
 
4
4
  FROM runtime as build
5
5
  RUN apk add --no-cache cmake ninja gcc musl-dev python3-dev pkgconfig
@@ -13,10 +13,7 @@ RUN CMAKE_ARGS="-DUSE_INSTALLED_POCKETSPHINX=ON" pip wheel -v .
13
13
  FROM runtime
14
14
  COPY --from=build /usr/local/ /usr/local/
15
15
  COPY --from=build /pocketsphinx/*.whl /
16
- RUN pip install /*.whl && rm /*.whl
16
+ RUN pip install --break-system-packages /*.whl && rm /*.whl
17
17
 
18
- RUN adduser -u 1000 -DHD pocketsphinx && adduser pocketsphinx audio
19
18
  COPY examples/ /work/examples/
20
- RUN chown -R pocketsphinx:pocketsphinx /work
21
- USER pocketsphinx
22
19
  WORKDIR /work
@@ -0,0 +1,48 @@
1
+ include AUTHORS
2
+ include CMakeLists.txt
3
+ include LICENSE
4
+ include NEWS
5
+ include README.md
6
+ include Dockerfile
7
+ include .dockerignore
8
+ include build_wheels.sh
9
+ include config.h.in
10
+ include pocketsphinx.pc.in
11
+ include indent.sh
12
+ include pyproject.toml
13
+ include requirements.dev.txt
14
+ include setup.cfg
15
+ include setup.py
16
+ include sphinx_config.h.in
17
+ recursive-include cython *
18
+ recursive-include gst *
19
+ recursive-include docs *
20
+ recursive-include doxygen *
21
+ recursive-include examples *
22
+ recursive-include include *
23
+ recursive-include model *
24
+ recursive-include programs *
25
+ recursive-include src *
26
+ recursive-include test *
27
+ exclude MANIFEST.in
28
+ exclude .readthedocs.yml
29
+ exclude .travis.yml
30
+ exclude .gitignore
31
+ exclude examples/simple
32
+ exclude examples/live
33
+ exclude examples/vad
34
+ recursive-exclude .github *
35
+ recursive-exclude _skbuild *
36
+ recursive-exclude build *
37
+ recursive-exclude docs/build *
38
+ recursive-exclude cython/pocketsphinx/model *
39
+ recursive-exclude cython/pocketsphinx.egg-info *
40
+ recursive-exclude * .gitignore
41
+ recursive-exclude * *.py[co]
42
+ recursive-exclude * *~
43
+ recursive-exclude * *.orig
44
+ recursive-exclude * *.DS_Store
45
+ recursive-exclude * __pycache__
46
+ recursive-exclude * *.so
47
+ recursive-exclude * *.egg-info
48
+ recursive-exclude venv *
@@ -1,7 +1,9 @@
1
- PocketSphinx 5.0.0
1
+ PocketSphinx 5.0.3
2
2
  ^^^^^^^^^^^^^^^^^^
3
3
 
4
- Not released yet!
4
+ The NEWS file has not been updated for some time. See the GitHub
5
+ releases page at https://github.com/cmusphinx/pocketsphinx/releases
6
+ instead.
5
7
 
6
8
  Pocketsphinx 0.8
7
9
  ^^^^^^^^^^^^^^^^
@@ -17,7 +19,7 @@ Improvements:
17
19
 
18
20
  Fixes:
19
21
  * Memory leaks, refcounting and other memory-related issues
20
- * Use proper word bounary senones for the words added on the fly
22
+ * Use proper word boundary senones for the words added on the fly
21
23
  * Accurate FSG lextree construction
22
24
 
23
25
  Pocketsphinx 0.7
@@ -46,7 +48,7 @@ Bug fixes:
46
48
  * Fixes very important regression with NULL transitions in fsg search
47
49
  * Proper acoustic score scaling during posterior calculation.
48
50
 
49
- And many, many, many more intersting things!
51
+ And many, many, many more interesting things!
50
52
 
51
53
  Pocketsphinx pre
52
54
  ^^^^^^^^^^^^^^^^
@@ -1,26 +1,30 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pocketsphinx
3
- Version: 5.0.2
3
+ Version: 5.0.4
4
4
  Summary: Official Python bindings for PocketSphinx
5
- Home-page: https://github.com/cmusphinx/pocketsphinx
6
- Author: David Huggins-Daines
7
- Author-email: dhdaines@gmail.com
8
- License: MIT
9
- Project-URL: Source, https://github.com/cmusphinx/pocketsphinx
10
- Project-URL: Tracker, https://github.com/cmusphinx/pocketsphinx/issues
11
5
  Keywords: asr,speech
12
- Platform: any
13
- Classifier: Development Status :: 3 - Alpha
6
+ Author-Email: David Huggins-Daines <dhdaines@gmail.com>
7
+ Classifier: Development Status :: 6 - Mature
14
8
  Classifier: Programming Language :: C
9
+ Classifier: Programming Language :: Cython
15
10
  Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.7
17
- Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: License :: OSI Approved :: BSD License
18
18
  Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
20
+ Project-URL: Homepage, https://github.com/cmusphinx/pocketsphinx
21
+ Project-URL: Documentation, https://pocketsphinx.readthedocs.io/en/latest/
22
+ Project-URL: Repository, https://github.com/cmusphinx/pocketsphinx.git
23
+ Project-URL: Issues, https://github.com/cmusphinx/pocketsphinx/issues
24
+ Requires-Dist: sounddevice
19
25
  Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
- License-File: AUTHORS
22
26
 
23
- PocketSphinx 5.0.2
27
+ PocketSphinx 5.0.4
24
28
  ==================
25
29
 
26
30
  This is PocketSphinx, one of Carnegie Mellon University's open source large
@@ -1,4 +1,4 @@
1
- PocketSphinx 5.0.2
1
+ PocketSphinx 5.0.4
2
2
  ==================
3
3
 
4
4
  This is PocketSphinx, one of Carnegie Mellon University's open source large
@@ -29,6 +29,21 @@ There is no longer any dependency on SphinxBase. There is no
29
29
  SphinxBase anymore. This is not the SphinxBase you're looking for.
30
30
  All your SphinxBase are belong to us.
31
31
 
32
+ There are some other dependencies that you may find useful in order to
33
+ use the example code (though they are not strictly necessary to build
34
+ and install). On Debian GNU/Linux and its derivatives (such as
35
+ Raspberry Pi OS, Ubuntu, etc), you can install them with:
36
+
37
+ sudo apt install \
38
+ ffmpeg \
39
+ libasound2-dev \
40
+ libportaudio2 \
41
+ libportaudiocpp0 \
42
+ libpulse-dev \
43
+ libsox-fmt-all \
44
+ portaudio19-dev \
45
+ sox
46
+
32
47
  To install the Python module in a virtual environment (replace
33
48
  `~/ve_pocketsphinx` with the virtual environment you wish to create),
34
49
  from the top level directory:
@@ -53,7 +68,7 @@ Usage
53
68
  -----
54
69
 
55
70
  The `pocketsphinx` command-line program reads single-channel 16-bit
56
- PCM audio from standard input or one or more files, and attemps to
71
+ PCM audio from standard input or one or more files, and attempts to
57
72
  recognize speech in it using the default acoustic and language model.
58
73
  It accepts a large number of options which you probably don't care
59
74
  about, a *command* which defaults to `live`, and one or more inputs
@@ -0,0 +1,12 @@
1
+ - Documentation:
2
+ - Update tutorial
3
+ - LM tutorial use pocketsphinx_lm_convert, pocketsphinx
4
+ - Training tutorial use Docker
5
+ - Android tutorial add note that it's out of date
6
+ - FAQ update for new pocketsphinx program
7
+ - CLI quick start in README.md
8
+ - Python quick start in main page of Python docs
9
+ - C quick start in <pocketsphinx.h>
10
+ - Support NumPy arrays for input (see soundfile usage)
11
+ - Environment variable for model path
12
+
@@ -0,0 +1,2 @@
1
+ *.so
2
+ model
@@ -0,0 +1,29 @@
1
+ find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
2
+ find_program(CYTHON "cython")
3
+
4
+ if(NOT USE_INSTALLED_POCKETSPHINX)
5
+ set_property(TARGET pocketsphinx PROPERTY POSITION_INDEPENDENT_CODE on)
6
+ endif()
7
+
8
+ add_custom_command(
9
+ OUTPUT _pocketsphinx.c
10
+ DEPENDS _pocketsphinx.pyx
11
+ VERBATIM
12
+ COMMAND "${CYTHON}" "${CMAKE_CURRENT_SOURCE_DIR}/_pocketsphinx.pyx" --output-file
13
+ "${CMAKE_CURRENT_BINARY_DIR}/_pocketsphinx.c")
14
+
15
+ python_add_library(_pocketsphinx MODULE "${CMAKE_CURRENT_BINARY_DIR}/_pocketsphinx.c" WITH_SOABI)
16
+ target_link_libraries(_pocketsphinx PRIVATE pocketsphinx)
17
+ target_include_directories(
18
+ _pocketsphinx PRIVATE ${PYTHON_INCLUDE_DIR}
19
+ _pocketsphinx PRIVATE ${CMAKE_BINARY_DIR}
20
+ _pocketsphinx PRIVATE ${CMAKE_SOURCE_DIR}/src
21
+ _pocketsphinx PUBLIC ${CMAKE_SOURCE_DIR}/include
22
+ _pocketsphinx PUBLIC ${CMAKE_BINARY_DIR}/include
23
+ _pocketsphinx INTERFACE ${CMAKE_SOURCE_DIR}/include
24
+ _pocketsphinx INTERFACE ${CMAKE_BINARY_DIR}/include
25
+ )
26
+ install(TARGETS _pocketsphinx LIBRARY DESTINATION pocketsphinx)
27
+ if(NOT USE_INSTALLED_POCKETSPHINX)
28
+ install(DIRECTORY ${PROJECT_SOURCE_DIR}/model DESTINATION pocketsphinx)
29
+ endif()
@@ -1,4 +1,4 @@
1
- PocketSphinx 5.0.2
1
+ PocketSphinx 5.0.4
2
2
  ==================
3
3
 
4
4
  This is PocketSphinx, one of Carnegie Mellon University's open source large
@@ -610,7 +610,7 @@ cdef class NGramModel:
610
610
  cdef const char **cwords
611
611
  cdef int prob
612
612
  bwords = [w.encode("utf-8") for w in words]
613
- cwords = <const char **>malloc(len(bwords))
613
+ cwords = <const char **>malloc(len(bwords) * sizeof(char *))
614
614
  for i, w in enumerate(bwords):
615
615
  cwords[i] = w
616
616
  prob = ngram_prob(self.lm, cwords, len(words))
@@ -1701,7 +1701,7 @@ cdef class Decoder:
1701
1701
  for word in decoder.get_alignment():
1702
1702
  for phone in word:
1703
1703
  for state in phone:
1704
- print(word, phone, state)
1704
+ print(word.name, phone.name, state.start)
1705
1705
 
1706
1706
  That's a lot of code, so it may get simplified, either here or
1707
1707
  in a derived class, before release.
@@ -1757,7 +1757,7 @@ cdef class Vad:
1757
1757
  """Voice activity detection class.
1758
1758
 
1759
1759
  Args:
1760
- mode(int): Aggressiveness of voice activity detction (0-3)
1760
+ mode(int): Aggressiveness of voice activity detection (0-3)
1761
1761
  sample_rate(int): Sampling rate of input, default is 16000.
1762
1762
  Rates other than 8000, 16000, 32000, 48000
1763
1763
  are only approximately supported, see note
@@ -1841,7 +1841,7 @@ cdef class Endpointer:
1841
1841
  window(float): Length in seconds of window for decision.
1842
1842
  ratio(float): Fraction of window that must be speech or
1843
1843
  non-speech to make a transition.
1844
- mode(int): Aggressiveness of voice activity detction (0-3)
1844
+ mode(int): Aggressiveness of voice activity detection (0-3)
1845
1845
  sample_rate(int): Sampling rate of input, default is 16000.
1846
1846
  Rates other than 8000, 16000, 32000, 48000
1847
1847
  are only approximately supported, see note
@@ -33,6 +33,7 @@
33
33
  # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
34
 
35
35
  import collections
36
+ import importlib.util
36
37
  import os
37
38
  import signal
38
39
  from contextlib import contextmanager
@@ -81,7 +82,10 @@ def get_model_path(subpath=None):
81
82
  """
82
83
  model_path = pocketsphinx._ps_default_modeldir()
83
84
  if model_path is None:
84
- model_path = os.path.join(os.path.dirname(__file__), "model")
85
+ # Use importlib to find things (so editable installs work)
86
+ model_path = importlib.util.find_spec(
87
+ "pocketsphinx.model"
88
+ ).submodule_search_locations[0]
85
89
  if subpath is not None:
86
90
  return os.path.join(model_path, subpath)
87
91
  else:
@@ -181,6 +185,7 @@ class AudioFile(Pocketsphinx):
181
185
  simple.
182
186
 
183
187
  """
188
+
184
189
  def __init__(self, audio_file=None, **kwargs):
185
190
  signal.signal(signal.SIGINT, self.stop)
186
191
 
@@ -239,6 +244,7 @@ class LiveSpeech(Pocketsphinx):
239
244
 
240
245
  try:
241
246
  import sounddevice
247
+
242
248
  assert sounddevice
243
249
  except Exception as e:
244
250
  # In case PortAudio is not present, for instance