diff --git a/.gitignore b/.gitignore
index 3512dc5..0de2f4c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,15 @@
-output/unwanted-stuff.log
-output/words.txt
+output/*
+inputs/*
._*
decode
+snowboy-decode
testfiles/filtered.wav
testfiles/noisy.wav
output/*.txt
output/*.log
-
-#
+/output/
+# swap files
+*.swp
# Prerequisites
*.d
diff --git a/Makefile b/Makefile
index 6c0d214..1e6d069 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,16 @@ default: decode
decode.o: decode.c
gcc -c decode.c -o decode.o
-decode: decode.o
+snowboy-decode.o: snowboy-decode.c
+ gcc -c snowboy-decode.c -o snowboy-decode.o
+
+decode: decode.o snowboy-decode.o
gcc decode.o -o decode
+ gcc snowboy-decode.o -o snowboy-decode
clean:
-rm -f decode.o
-rm -f decode
+ -rm -f snowboy-decode
+ -rm -f snowby-decode.o
+
diff --git a/accuracy-test.csv b/accuracy-test.csv
new file mode 100644
index 0000000..1f207a1
--- /dev/null
+++ b/accuracy-test.csv
@@ -0,0 +1,19 @@
+What I said, What Klauba heard
+Take me to room 2337,Take me to room 2337
+How do I get to room 2335,How do I get to room 2335
+Go forward,Go forward
+Go backward,Go backward
+Move left,Move left
+Move right,Move right
+Where am I,Where am I?
+Show me to room 2341,Show me to room 2341
+Stop,Stop
+Move forward,Move forward
+Move backward,Move backward
+Where is 2342,Where is 2342
+Where is room 2346,Where is room 2346
+How do I get to room 2360,How are you get to room 2360
+Stop moving,Stop moving
+Hi Klauba,I Klauba
+Hello Klauba,Hello Klauba
+
diff --git a/decode.c b/decode.c
index e31ebf8..0a0b41a 100644
--- a/decode.c
+++ b/decode.c
@@ -6,20 +6,23 @@
int main(void) {
struct timespec start, end;
-
+ if (getenv("SPEECH_RECOGNITION") == NULL) {
+ system("echo Please set the SPEECH_RECOGNITION environment variable to point to the git repository");
+ return 1;
+ }
system("export LD_LIBRARY_PATH=/usr/local/lib");
- system("aplay /home/pi/speech2text/beep-07.wav");
- system("arecord --format=S16_LE --duration=5 --rate=16k -D sysdefault:CARD=1 --file-type=wav testfiles/noisy.wav");
- system("aplay /home/pi/speech2text/beep-08b.wav");
+ system("aplay $SPEECH_RECOGNITION/beep-07.wav");
+ system("arecord --format=S16_LE --duration=5 -r 16000 --file-type=wav inputs/noisy.wav");
+ system("aplay $SPEECH_RECOGNITION/beep-08b.wav");
system("echo done recording...");
- system("python testfiles/noiseClean.py");
+ system("python noiseClean.py");
system("echo done cleaning...");
clock_gettime(CLOCK_REALTIME, &start);
system("\
pocketsphinx_continuous \
- -infile testfiles/noisy.wav \
- -dict dicts/3651.dic \
- -lm dicts/3651.lm \
+ -infile inputs/filtered.wav \
+ -dict ./models/corpus/Corpus_V3/100.dic \
+ -lm ./models/corpus/Corpus_V3/100.lm \
2>./output/unwanted-stuff.log | tee ./output/words.txt");
// pocketsphinx_continuous -infile testfiles/speech.wav -dict dicts/8050.dic -lm dicts/8050.lm 2>./output/unwanted-stuff.log | tee ./output/words.txt
system("echo done decoding...");
diff --git a/dicts/3651.dic b/dicts/3651.dic
deleted file mode 100644
index 7799063..0000000
--- a/dicts/3651.dic
+++ /dev/null
@@ -1,12 +0,0 @@
-AROUND ER AW N D
-AROUND(2) ER AW N
-DOWN D AW N
-GO G OW
-LEFT L EH F T
-MOVE M UW V
-OFF AO F
-RIGHT R AY T
-SHUT SH AH T
-STOP S T AA P
-TURN T ER N
-UP AH P
diff --git a/dicts/3651.lm b/dicts/3651.lm
deleted file mode 100644
index 903f7b5..0000000
--- a/dicts/3651.lm
+++ /dev/null
@@ -1,82 +0,0 @@
-Language model created by QuickLM on Fri Jul 26 10:32:12 EDT 2019
-Copyright (c) 1996-2010 Carnegie Mellon University and Alexander I. Rudnicky
-
-The model is in standard ARPA format, designed by Doug Paul while he was at MITRE.
-
-The code that was used to produce this language model is available in Open Source.
-Please visit http://www.speech.cs.cmu.edu/tools/ for more information
-
-The (fixed) discount mass is 0.5. The backoffs are computed using the ratio method.
-This model based on a corpus of 12 sentences and 13 words
-
-\data\
-ngram 1=13
-ngram 2=23
-ngram 3=23
-
-\1-grams:
--0.8939 -0.3010
--0.8939 -0.2417
--1.9731 AROUND -0.2417
--1.4960 DOWN -0.2417
--1.3711 GO -0.2573
--1.6721 LEFT -0.2417
--1.3711 MOVE -0.2573
--1.9731 OFF -0.2417
--1.6721 RIGHT -0.2417
--1.9731 SHUT -0.2869
--1.9731 STOP -0.2417
--1.6721 TURN -0.2917
--1.6721 UP -0.2417
-
-\2-grams:
--0.7782 GO 0.0000
--0.7782 MOVE 0.0000
--1.3802 SHUT 0.0000
--1.3802 STOP 0.0000
--1.0792 TURN 0.0000
--0.3010 AROUND -0.3010
--0.3010 DOWN -0.3010
--0.9031 GO DOWN 0.0000
--0.9031 GO LEFT 0.0000
--0.9031 GO RIGHT 0.0000
--0.9031 GO UP 0.0000
--0.3010 LEFT -0.3010
--0.9031 MOVE DOWN 0.0000
--0.9031 MOVE LEFT 0.0000
--0.9031 MOVE RIGHT 0.0000
--0.9031 MOVE UP 0.0000
--0.3010 OFF -0.3010
--0.3010 RIGHT -0.3010
--0.3010 SHUT DOWN 0.0000
--0.3010 STOP -0.3010
--0.6021 TURN AROUND 0.0000
--0.6021 TURN OFF 0.0000
--0.3010 UP -0.3010
-
-\3-grams:
--0.9031 GO DOWN
--0.9031 GO LEFT
--0.9031 GO RIGHT
--0.9031 GO UP
--0.9031 MOVE DOWN
--0.9031 MOVE LEFT
--0.9031 MOVE RIGHT
--0.9031 MOVE UP
--0.3010 SHUT DOWN
--0.3010 STOP
--0.6021 TURN AROUND
--0.6021 TURN OFF
--0.3010 GO DOWN
--0.3010 GO LEFT
--0.3010 GO RIGHT
--0.3010 GO UP
--0.3010 MOVE DOWN
--0.3010 MOVE LEFT
--0.3010 MOVE RIGHT
--0.3010 MOVE UP
--0.3010 SHUT DOWN
--0.3010 TURN AROUND
--0.3010 TURN OFF
-
-\end\
diff --git a/dicts/3651.log_pronounce b/dicts/3651.log_pronounce
deleted file mode 100644
index da48457..0000000
--- a/dicts/3651.log_pronounce
+++ /dev/null
@@ -1,12 +0,0 @@
-AROUND - Main
-DOWN - Main
-GO - Main
-LEFT - Main
-MOVE - Main
-OFF - Main
-RIGHT - Main
-SHUT - Main
-STOP - Main
-TURN - Main
-UP - Main
-
diff --git a/dicts/3651.sent b/dicts/3651.sent
deleted file mode 100644
index efdd093..0000000
--- a/dicts/3651.sent
+++ /dev/null
@@ -1,12 +0,0 @@
- GO LEFT
- GO RIGHT
- GO UP
- GO DOWN
- MOVE LEFT
- MOVE RIGHT
- MOVE UP
- MOVE DOWN
- TURN AROUND
- TURN OFF
- STOP
- SHUT DOWN
diff --git a/dicts/3651.vocab b/dicts/3651.vocab
deleted file mode 100644
index d55de9f..0000000
--- a/dicts/3651.vocab
+++ /dev/null
@@ -1,11 +0,0 @@
-AROUND
-DOWN
-GO
-LEFT
-MOVE
-OFF
-RIGHT
-SHUT
-STOP
-TURN
-UP
diff --git a/dicts/8050.dic b/dicts/8050.dic
deleted file mode 100644
index 1fe4b24..0000000
--- a/dicts/8050.dic
+++ /dev/null
@@ -1,36 +0,0 @@
-AROUND ER AW N D
-AROUND(2) ER AW N
-CONFIRM K AH N F ER M
-DENY D IH N AY
-DOWN D AW N
-EIGHT EY T
-ELEVATOR EH L AH V EY T ER
-FACE F EY S
-FIVE F AY V
-FOUR F AO R
-GO G OW
-LEFT L EH F T
-ME M IY
-MOVE M UW V
-NINE N AY N
-NO N OW
-OFF AO F
-ONE W AH N
-ONE(2) HH W AH N
-PICK P IH K
-RIGHT R AY T
-ROOM R UW M
-SEVEN S EH V AH N
-SHUT SH AH T
-SIX S IH K S
-STOP S T AA P
-TAKE T EY K
-THREE TH R IY
-TO T UW
-TO(2) T IH
-TO(3) T AH
-TURN T ER N
-TWO T UW
-UP AH P
-YES Y EH S
-ZERO Z IY R OW
diff --git a/dicts/8050.lm b/dicts/8050.lm
deleted file mode 100644
index 2bd0faf..0000000
--- a/dicts/8050.lm
+++ /dev/null
@@ -1,171 +0,0 @@
-Language model created by QuickLM on Tue Jun 11 13:14:19 EDT 2019
-Copyright (c) 1996-2010 Carnegie Mellon University and Alexander I. Rudnicky
-
-The model is in standard ARPA format, designed by Doug Paul while he was at MITRE.
-
-The code that was used to produce this language model is available in Open Source.
-Please visit http://www.speech.cs.cmu.edu/tools/ for more information
-
-The (fixed) discount mass is 0.5. The backoffs are computed using the ratio method.
-This model based on a corpus of 31 sentences and 34 words
-
-\data\
-ngram 1=34
-ngram 2=65
-ngram 3=49
-
-\1-grams:
--0.8550 -0.3010
--0.8550 -0.2357
--2.3464 AROUND -0.2357
--2.3464 CONFIRM -0.2357
--2.3464 DENY -0.2357
--1.8692 DOWN -0.2357
--2.3464 EIGHT -0.2357
--2.3464 ELEVATOR -0.2357
--2.3464 FACE -0.2951
--2.3464 FIVE -0.2357
--2.3464 FOUR -0.2357
--1.7443 GO -0.2810
--2.0453 LEFT -0.2357
--1.8692 ME -0.2311
--1.7443 MOVE -0.2810
--2.3464 NINE -0.2357
--2.3464 NO -0.2357
--2.3464 OFF -0.2357
--2.3464 ONE -0.2357
--2.3464 PICK -0.2951
--2.0453 RIGHT -0.2357
--2.3464 ROOM -0.2357
--2.3464 SEVEN -0.2357
--2.3464 SHUT -0.2951
--2.3464 SIX -0.2357
--2.3464 STOP -0.2357
--2.3464 TAKE -0.2951
--2.3464 THREE -0.2357
--2.0453 TO -0.2931
--1.8692 TURN -0.2931
--2.3464 TWO -0.2357
--1.8692 UP -0.2357
--2.3464 YES -0.2357
--2.3464 ZERO -0.2357
-
-\2-grams:
--1.7924 CONFIRM 0.0000
--1.7924 DENY 0.0000
--1.7924 EIGHT 0.0000
--1.7924 ELEVATOR 0.0000
--1.7924 FACE 0.0000
--1.7924 FIVE 0.0000
--1.7924 FOUR 0.0000
--1.1903 GO 0.0000
--1.1903 MOVE 0.0000
--1.7924 NINE 0.0000
--1.7924 NO 0.0000
--1.7924 ONE 0.0000
--1.7924 PICK 0.0000
--1.7924 SEVEN 0.0000
--1.7924 SHUT 0.0000
--1.7924 SIX 0.0000
--1.7924 STOP 0.0000
--1.7924 TAKE 0.0000
--1.7924 THREE 0.0000
--1.3153 TURN 0.0000
--1.7924 TWO 0.0000
--1.7924 YES 0.0000
--1.7924 ZERO 0.0000
--0.3010 AROUND -0.3010
--0.3010 CONFIRM -0.3010
--0.3010 DENY -0.3010
--0.3010 DOWN -0.3010
--0.3010 EIGHT -0.3010
--0.3010 ELEVATOR -0.3010
--0.3010 FACE ME -0.1249
--0.3010 FIVE -0.3010
--0.3010 FOUR -0.3010
--0.9031 GO DOWN 0.0000
--0.9031 GO LEFT 0.0000
--0.9031 GO RIGHT 0.0000
--0.9031 GO UP 0.0000
--0.3010 LEFT -0.3010
--0.4771 ME -0.3010
--0.7782 ME TO -0.1761
--0.9031 MOVE DOWN 0.0000
--0.9031 MOVE LEFT 0.0000
--0.9031 MOVE RIGHT 0.0000
--0.9031 MOVE UP 0.0000
--0.3010 NINE -0.3010
--0.3010 NO -0.3010
--0.3010 OFF -0.3010
--0.3010 ONE -0.3010
--0.3010 PICK UP 0.0000
--0.3010 RIGHT -0.3010
--0.3010 ROOM -0.3010
--0.3010 SEVEN -0.3010
--0.3010 SHUT DOWN 0.0000
--0.3010 SIX -0.3010
--0.3010 STOP -0.3010
--0.3010 TAKE ME -0.2218
--0.3010 THREE -0.3010
--0.6021 TO ME -0.1249
--0.6021 TO ROOM 0.0000
--0.7782 TURN AROUND 0.0000
--0.7782 TURN OFF 0.0000
--0.7782 TURN TO -0.1761
--0.3010 TWO -0.3010
--0.3010 UP -0.3010
--0.3010 YES -0.3010
--0.3010 ZERO -0.3010
-
-\3-grams:
--0.3010 CONFIRM
--0.3010 DENY
--0.3010 EIGHT
--0.3010 ELEVATOR
--0.3010 FACE ME
--0.3010 FIVE
--0.3010 FOUR
--0.9031 GO DOWN
--0.9031 GO LEFT
--0.9031 GO RIGHT
--0.9031 GO UP
--0.9031 MOVE DOWN
--0.9031 MOVE LEFT
--0.9031 MOVE RIGHT
--0.9031 MOVE UP
--0.3010 NINE
--0.3010 NO
--0.3010 ONE
--0.3010 PICK UP
--0.3010 SEVEN
--0.3010 SHUT DOWN
--0.3010 SIX
--0.3010 STOP
--0.3010 TAKE ME
--0.3010 THREE
--0.7782 TURN AROUND
--0.7782 TURN OFF
--0.7782 TURN TO
--0.3010 TWO
--0.3010 YES
--0.3010 ZERO
--0.3010 FACE ME
--0.3010 GO DOWN
--0.3010 GO LEFT
--0.3010 GO RIGHT
--0.3010 GO UP
--0.3010 ME TO ROOM
--0.3010 MOVE DOWN
--0.3010 MOVE LEFT
--0.3010 MOVE RIGHT
--0.3010 MOVE UP
--0.3010 PICK UP
--0.3010 SHUT DOWN
--0.3010 TAKE ME TO
--0.3010 TO ME
--0.3010 TO ROOM
--0.3010 TURN AROUND
--0.3010 TURN OFF
--0.3010 TURN TO ME
-
-\end\
diff --git a/dicts/8050.log_pronounce b/dicts/8050.log_pronounce
deleted file mode 100644
index 65feb59..0000000
--- a/dicts/8050.log_pronounce
+++ /dev/null
@@ -1,33 +0,0 @@
-AROUND - Main
-CONFIRM - Main
-DENY - Main
-DOWN - Main
-EIGHT - Main
-ELEVATOR - Main
-FACE - Main
-FIVE - Main
-FOUR - Main
-GO - Main
-LEFT - Main
-ME - Main
-MOVE - Main
-NINE - Main
-NO - Main
-OFF - Main
-ONE - Main
-PICK - Main
-RIGHT - Main
-ROOM - Main
-SEVEN - Main
-SHUT - Main
-SIX - Main
-STOP - Main
-TAKE - Main
-THREE - Main
-TO - Main
-TURN - Main
-TWO - Main
-UP - Main
-YES - Main
-ZERO - Main
-
diff --git a/dicts/8050.sent b/dicts/8050.sent
deleted file mode 100644
index 3ff1a43..0000000
--- a/dicts/8050.sent
+++ /dev/null
@@ -1,31 +0,0 @@
- GO LEFT
- GO RIGHT
- GO UP
- GO DOWN
- MOVE LEFT
- MOVE RIGHT
- MOVE UP
- MOVE DOWN
- ZERO
- ONE
- TWO
- THREE
- FOUR
- FIVE
- SIX
- SEVEN
- EIGHT
- NINE
- PICK UP
- TAKE ME TO ROOM
- ELEVATOR
- TURN AROUND
- TURN OFF
- STOP
- SHUT DOWN
- TURN TO ME
- FACE ME
- YES
- NO
- CONFIRM
- DENY
diff --git a/dicts/8050.vocab b/dicts/8050.vocab
deleted file mode 100644
index 2991aba..0000000
--- a/dicts/8050.vocab
+++ /dev/null
@@ -1,32 +0,0 @@
-AROUND
-CONFIRM
-DENY
-DOWN
-EIGHT
-ELEVATOR
-FACE
-FIVE
-FOUR
-GO
-LEFT
-ME
-MOVE
-NINE
-NO
-OFF
-ONE
-PICK
-RIGHT
-ROOM
-SEVEN
-SHUT
-SIX
-STOP
-TAKE
-THREE
-TO
-TURN
-TWO
-UP
-YES
-ZERO
diff --git a/dicts/corpus.txt b/dicts/corpus.txt
deleted file mode 100644
index e02b328..0000000
--- a/dicts/corpus.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-go left
-go right
-go up
-go down
-move left
-move right
-move up
-move down
-zero
-one
-two
-three
-four
-five
-six
-seven
-eight
-nine
-pick up
-take me to room
-elevator
-turn around
-turn off
-stop
-shut down
-turn to me
-face me
-yes
-no
-confirm
-deny
\ No newline at end of file
diff --git a/dicts/reducedcorpus.txt b/dicts/reducedcorpus.txt
deleted file mode 100644
index 43e6219..0000000
--- a/dicts/reducedcorpus.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-go left
-go right
-go up
-go down
-move left
-move right
-move up
-move down
-turn around
-turn off
-stop
-shut down
\ No newline at end of file
diff --git a/install.sh b/install.sh
old mode 100644
new mode 100755
index 184b2ac..37296b1
--- a/install.sh
+++ b/install.sh
@@ -1,3 +1,4 @@
+mkdir output
sudo apt-get install bison
sudo apt-get install swig
cd sphinxbase-5prealpha
@@ -12,3 +13,4 @@ cd ../pocketsphinx-5prealpha
.configure
make -j
sudo make install
+sudo ldconfig
diff --git a/jackd_fix.sh b/jackd_fix.sh
new file mode 100755
index 0000000..bc4f689
--- /dev/null
+++ b/jackd_fix.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+jack_control start
+
diff --git a/klauba.py b/klauba.py
new file mode 100644
index 0000000..7000d2e
--- /dev/null
+++ b/klauba.py
@@ -0,0 +1,45 @@
+import snowboydecoder
+from record import start_recording
+import os
+import sys
+import signal
+
+interrupted = False
+kill_script = False
+def detected():
+ global detector
+ # detector.terminate() # THIS LINE CAN CREATE HANGS ON CERTAIN MACHINES (COMMENT OUT IF THE SCRIPT HANGS)
+ print("Starting recording")
+ data, open_wave = start_recording()
+ open_wave.close()
+ print("Recording complete")
+ global interrupted
+ interrupted = True # signal to the detector to stop after first detection
+
+def signal_handler(signal, frame):
+ global interrupted
+ interrupted = True
+
+ global kill_script
+ kill_script = True
+
+
+def interrupt_callback():
+ global interrupted
+ return interrupted
+
+
+# capture SIGINT signal, e.g., Ctrl+C
+signal.signal(signal.SIGINT, signal_handler)
+
+detector = snowboydecoder.HotwordDetector("./models/Klauba.pmdl", sensitivity=0.5)
+print('Listening for Klauba...')
+
+# main loop
+detector.start(detected_callback=detected,
+ interrupt_check=interrupt_callback,
+ sleep_time=0.03)
+if kill_script:
+ sys.exit(1) # the user hit cntrl-c
+else:
+ sys.exit(0) # the user did not hit cntrl-c
diff --git a/models/Klauba.pmdl b/models/Klauba.pmdl
new file mode 100644
index 0000000..bf639a1
Binary files /dev/null and b/models/Klauba.pmdl differ
diff --git a/models/corpus/Corpus_V3/100.dic b/models/corpus/Corpus_V3/100.dic
new file mode 100644
index 0000000..405eaba
--- /dev/null
+++ b/models/corpus/Corpus_V3/100.dic
@@ -0,0 +1,67 @@
+2332 T UW TH R IY TH R IY T UW
+2333 T UW TH R IY TH R IY TH R IY
+2334 T UW TH R IY TH R IY F OW R
+2335 T UW TH R IY TH R IY F AY V
+2336 T UW TH R IY TH R IY S IH K S
+2337 T UW TH R IY TH R IY S EH V AH N
+2338 T UW TH R IY TH R IY EY T
+2340 T UW TH R IY F OW R Z IY R OW
+2341 T UW TH R IY F OW R W AH N
+2342 T UW TH R IY F OW R T UW
+2344 T UW TH R IY F OW R F OW R
+2346 T UW TH R IY F OW R S IH K S
+2347 T UW TH R IY F OW R S EH V AH N
+2350 T UW TH R IY F AY V Z IY R OW
+2355 T UW TH R IY F AY V F AY V
+2356 T UW TH R IY F AY V S IH K S
+2357 T UW TH R IY F AY V S EH V AH N
+2358 T UW TH R IY F AY V EY T
+2359 T UW TH R IY F AY V N AY N
+2360 T UW TH R IY S IH K S Z IY R OW
+2361 T UW TH R IY S IH K S W AH N
+2362 T UW TH R IY S IH K S T UW
+2363 T UW TH R IY S IH K S TH R IY
+AM AE M
+AM(2) EY EH M
+ARE AA R
+ARE(2) ER
+ATRIUM? AE T R IY AH M
+BACKWARD B AE K W ER D
+BUILDING B IH L D IH NG
+DO D UW
+FORWARD F AO R W ER D
+GET G EH T
+GET(2) G IH T
+GO G OW
+HELLO HH AH L OW
+HELLO(2) HH EH L OW
+HI HH AY
+HOW HH AW
+I AY
+I? AY
+IN? IH N
+IS IH Z
+KLAUBA K L AO B AH
+KLAUBA, K L AO B AH
+KLAUBA? K L AO B AH
+LEFT L EH F T
+ME M IY
+MOVE M UW V
+MOVING M UW V IH NG
+RIGHT R AY T
+ROOM R UW M
+SHOW SH OW
+STOP S T AA P
+TAKE T EY K
+THE DH AH
+THE(2) DH IY
+TO T UW
+TO(2) T IH
+TO(3) T AH
+TODAY, T AH D EY
+TODAY? T AH D EY
+WHAT W AH T
+WHAT(2) HH W AH T
+WHERE W EH R
+WHERE(2) HH W EH R
+YOU Y UW
diff --git a/models/corpus/Corpus_V3/100.lm b/models/corpus/Corpus_V3/100.lm
new file mode 100644
index 0000000..cb3e6ad
--- /dev/null
+++ b/models/corpus/Corpus_V3/100.lm
@@ -0,0 +1,487 @@
+Language model created by QuickLM on Mon Dec 2 19:38:52 EST 2019
+Copyright (c) 1996-2010 Carnegie Mellon University and Alexander I. Rudnicky
+
+The model is in standard ARPA format, designed by Doug Paul while he was at MITRE.
+
+The code that was used to produce this language model is available in Open Source.
+Please visit http://www.speech.cs.cmu.edu/tools/ for more information
+
+The (fixed) discount mass is 0.5. The backoffs are computed using the ratio method.
+This model based on a corpus of 228 sentences and 60 words
+
+\data\
+ngram 1=60
+ngram 2=155
+ngram 3=249
+
+\1-grams:
+-2.5123 2332 -0.2658
+-2.5123 2333 -0.2658
+-2.5123 2334 -0.2658
+-2.5123 2335 -0.2658
+-2.5123 2336 -0.2658
+-2.5123 2337 -0.2658
+-2.5123 2338 -0.2658
+-2.5123 2340 -0.2658
+-2.5123 2341 -0.2658
+-2.5123 2342 -0.2658
+-2.5123 2344 -0.2658
+-2.5123 2346 -0.2658
+-2.5123 2347 -0.2658
+-2.5123 2350 -0.2658
+-2.5123 2355 -0.2658
+-2.5123 2356 -0.2658
+-2.5123 2357 -0.2658
+-2.5123 2358 -0.2658
+-2.5123 2359 -0.2658
+-2.5123 2360 -0.2658
+-2.5123 2361 -0.2658
+-2.5123 2362 -0.2658
+-2.5123 2363 -0.2658
+-1.1086 -0.3010
+-1.1086 -0.2652
+-2.7676 AM -0.2932
+-3.1655 ARE -0.3007
+-3.4666 ATRIUM? -0.2658
+-3.1655 BACKWARD -0.2658
+-3.4666 BUILDING -0.3003
+-1.7945 DO -0.2935
+-3.1655 FORWARD -0.2658
+-1.7945 GET -0.2727
+-2.8645 GO -0.2998
+-3.4666 HELLO -0.3007
+-3.4666 HI -0.3007
+-1.7764 HOW -0.2937
+-1.7676 I -0.2935
+-3.1655 I? -0.2658
+-2.9894 IN? -0.2658
+-2.1048 IS -0.2692
+-3.1655 KLAUBA -0.2658
+-2.8645 KLAUBA, -0.2890
+-3.4666 KLAUBA? -0.2658
+-3.1655 LEFT -0.2658
+-1.5028 ME -0.2727
+-1.7676 MOVE -0.2714
+-3.4666 MOVING -0.2658
+-3.1655 RIGHT -0.2658
+-1.4934 ROOM -0.2684
+-1.8038 SHOW -0.2872
+-2.9894 STOP -0.2657
+-1.8038 TAKE -0.2872
+-3.4666 THE -0.3009
+-1.1994 TO -0.2538
+-3.4666 TODAY, -0.3009
+-3.4666 TODAY? -0.2658
+-2.9894 WHAT -0.2867
+-2.0686 WHERE -0.2969
+-3.1655 YOU -0.3007
+
+\2-grams:
+-0.3010 2332 -0.3010
+-0.3010 2333 -0.3010
+-0.3010 2334 -0.3010
+-0.3010 2335 -0.3010
+-0.3010 2336 -0.3010
+-0.3010 2337 -0.3010
+-0.3010 2338 -0.3010
+-0.3010 2340 -0.3010
+-0.3010 2341 -0.3010
+-0.3010 2342 -0.3010
+-0.3010 2344 -0.3010
+-0.3010 2346 -0.3010
+-0.3010 2347 -0.3010
+-0.3010 2350 -0.3010
+-0.3010 2355 -0.3010
+-0.3010 2356 -0.3010
+-0.3010 2357 -0.3010
+-0.3010 2358 -0.3010
+-0.3010 2359 -0.3010
+-0.3010 2360 -0.3010
+-0.3010 2361 -0.3010
+-0.3010 2362 -0.3010
+-0.3010 2363 -0.3010
+-2.0569 GO 0.0000
+-2.6590 HELLO 0.0000
+-2.6590 HI 0.0000
+-0.9777 HOW 0.0000
+-2.0569 KLAUBA, 0.0000
+-0.9600 MOVE 0.0000
+-0.9962 SHOW 0.0000
+-2.3579 STOP 0.0000
+-0.9962 TAKE 0.0000
+-2.3579 WHAT 0.0000
+-1.2788 WHERE 0.0000
+-0.5229 AM I -0.2878
+-0.6990 AM I? 0.0000
+-0.3010 ARE YOU 0.0000
+-0.3010 ATRIUM? -0.3010
+-0.3010 BACKWARD -0.3010
+-0.3010 BUILDING AM -0.1461
+-0.3010 DO I -0.0253
+-0.3010 FORWARD -0.3010
+-0.3010 GET TO 0.0000
+-0.9031 GO BACKWARD 0.0000
+-0.9031 GO FORWARD 0.0000
+-0.9031 GO LEFT 0.0000
+-0.9031 GO RIGHT 0.0000
+-0.3010 HELLO KLAUBA 0.0000
+-0.3010 HI KLAUBA 0.0000
+-1.6902 HOW ARE 0.0000
+-0.3191 HOW DO 0.0000
+-0.3279 I GET 0.0000
+-1.5229 I IN? 0.0000
+-0.3010 I? -0.3010
+-0.3010 IN? -0.3010
+-1.6628 IS 2332 0.0000
+-1.6628 IS 2333 0.0000
+-1.6628 IS 2334 0.0000
+-1.6628 IS 2335 0.0000
+-1.6628 IS 2336 0.0000
+-1.6628 IS 2337 0.0000
+-1.6628 IS 2338 0.0000
+-1.6628 IS 2340 0.0000
+-1.6628 IS 2341 0.0000
+-1.6628 IS 2342 0.0000
+-1.6628 IS 2344 0.0000
+-1.6628 IS 2346 0.0000
+-1.6628 IS 2347 0.0000
+-1.6628 IS 2350 0.0000
+-1.6628 IS 2355 0.0000
+-1.6628 IS 2356 0.0000
+-1.6628 IS 2357 0.0000
+-1.6628 IS 2358 0.0000
+-1.6628 IS 2359 0.0000
+-1.6628 IS 2360 0.0000
+-1.6628 IS 2361 0.0000
+-1.6628 IS 2362 0.0000
+-1.6628 IS 2363 0.0000
+-0.3010 KLAUBA -0.3010
+-0.9031 KLAUBA, HOW -0.0174
+-0.9031 KLAUBA, STOP -0.1249
+-0.9031 KLAUBA, WHAT -0.1249
+-0.9031 KLAUBA, WHERE -0.2833
+-0.3010 KLAUBA? -0.3010
+-0.3010 LEFT -0.3010
+-0.3010 ME TO -0.0023
+-2.0000 MOVE BACKWARD 0.0000
+-2.0000 MOVE FORWARD 0.0000
+-2.0000 MOVE LEFT 0.0000
+-2.0000 MOVE RIGHT 0.0000
+-0.3372 MOVE TO -0.0023
+-0.3010 MOVING -0.3010
+-0.3010 RIGHT -0.3010
+-1.6721 ROOM 2332 0.0000
+-1.6721 ROOM 2333 0.0000
+-1.6721 ROOM 2334 0.0000
+-1.6721 ROOM 2335 0.0000
+-1.6721 ROOM 2336 0.0000
+-1.6721 ROOM 2337 0.0000
+-1.6721 ROOM 2338 0.0000
+-1.6721 ROOM 2340 0.0000
+-1.6721 ROOM 2341 0.0000
+-1.6721 ROOM 2342 0.0000
+-1.6721 ROOM 2344 0.0000
+-1.6721 ROOM 2346 0.0000
+-1.6721 ROOM 2347 0.0000
+-1.6721 ROOM 2350 0.0000
+-1.6721 ROOM 2355 0.0000
+-1.6721 ROOM 2356 0.0000
+-1.6721 ROOM 2357 0.0000
+-1.6721 ROOM 2358 0.0000
+-1.6721 ROOM 2359 0.0000
+-1.6721 ROOM 2360 0.0000
+-1.6721 ROOM 2361 0.0000
+-1.6721 ROOM 2362 0.0000
+-1.6721 ROOM 2363 0.0000
+-1.9731 ROOM AM -0.1461
+-0.3010 SHOW ME 0.0000
+-0.4771 STOP -0.3010
+-0.7782 STOP MOVING 0.0000
+-0.3010 TAKE ME 0.0000
+-0.3010 THE ATRIUM? 0.0000
+-1.9661 TO 2332 0.0000
+-1.9661 TO 2333 0.0000
+-1.9661 TO 2334 0.0000
+-1.9661 TO 2335 0.0000
+-1.9661 TO 2336 0.0000
+-1.9661 TO 2337 0.0000
+-1.9661 TO 2338 0.0000
+-1.9661 TO 2340 0.0000
+-1.9661 TO 2341 0.0000
+-1.9661 TO 2342 0.0000
+-1.9661 TO 2344 0.0000
+-1.9661 TO 2346 0.0000
+-1.9661 TO 2347 0.0000
+-1.9661 TO 2350 0.0000
+-1.9661 TO 2355 0.0000
+-1.9661 TO 2356 0.0000
+-1.9661 TO 2357 0.0000
+-1.9661 TO 2358 0.0000
+-1.9661 TO 2359 0.0000
+-1.9661 TO 2360 0.0000
+-1.9661 TO 2361 0.0000
+-1.9661 TO 2362 0.0000
+-1.9661 TO 2363 0.0000
+-0.6044 TO ROOM -0.0091
+-2.5682 TO THE 0.0000
+-0.3010 TODAY, KLAUBA? 0.0000
+-0.3010 TODAY? -0.3010
+-0.7782 WHAT BUILDING 0.0000
+-0.4771 WHAT ROOM -0.2964
+-1.3979 WHERE AM -0.2041
+-0.3372 WHERE IS -0.0000
+-0.6021 YOU TODAY, 0.0000
+-0.6021 YOU TODAY? 0.0000
+
+\3-grams:
+-0.9031 GO BACKWARD
+-0.9031 GO FORWARD
+-0.9031 GO LEFT
+-0.9031 GO RIGHT
+-0.3010 HELLO KLAUBA
+-0.3010 HI KLAUBA
+-1.6812 HOW ARE
+-0.3195 HOW DO
+-0.9031 KLAUBA, HOW
+-0.9031 KLAUBA, STOP
+-0.9031 KLAUBA, WHAT
+-0.9031 KLAUBA, WHERE
+-2.0000 MOVE BACKWARD
+-2.0000 MOVE FORWARD
+-2.0000 MOVE LEFT
+-2.0000 MOVE RIGHT
+-0.3372 MOVE TO
+-0.3010 SHOW ME
+-0.6021 STOP
+-0.6021 STOP MOVING
+-0.3010 TAKE ME
+-0.6021 WHAT BUILDING
+-0.6021 WHAT ROOM
+-1.6812 WHERE AM
+-0.3195 WHERE IS
+-0.3010 AM I IN?
+-0.3010 AM I?
+-0.6021 ARE YOU TODAY,
+-0.6021 ARE YOU TODAY?
+-0.3010 BUILDING AM I
+-0.3010 DO I GET
+-1.9731 GET TO 2332
+-1.9731 GET TO 2333
+-1.9731 GET TO 2334
+-1.9731 GET TO 2335
+-1.9731 GET TO 2336
+-1.9731 GET TO 2337
+-1.9731 GET TO 2338
+-1.9731 GET TO 2340
+-1.9731 GET TO 2341
+-1.9731 GET TO 2342
+-1.9731 GET TO 2344
+-1.9731 GET TO 2346
+-1.9731 GET TO 2347
+-1.9731 GET TO 2350
+-1.9731 GET TO 2355
+-1.9731 GET TO 2356
+-1.9731 GET TO 2357
+-1.9731 GET TO 2358
+-1.9731 GET TO 2359
+-1.9731 GET TO 2360
+-1.9731 GET TO 2361
+-1.9731 GET TO 2362
+-1.9731 GET TO 2363
+-0.6114 GET TO ROOM
+-1.9731 GET TO THE
+-0.3010 GO BACKWARD
+-0.3010 GO FORWARD
+-0.3010 GO LEFT
+-0.3010 GO RIGHT
+-0.3010 HELLO KLAUBA
+-0.3010 HI KLAUBA
+-0.3010 HOW ARE YOU
+-0.3010 HOW DO I
+-0.3010 I GET TO
+-0.3010 I IN?
+-0.3010 IS 2332
+-0.3010 IS 2333
+-0.3010 IS 2334
+-0.3010 IS 2335
+-0.3010 IS 2336
+-0.3010 IS 2337
+-0.3010 IS 2338
+-0.3010 IS 2340
+-0.3010 IS 2341
+-0.3010 IS 2342
+-0.3010 IS 2344
+-0.3010 IS 2346
+-0.3010 IS 2347
+-0.3010 IS 2350
+-0.3010 IS 2355
+-0.3010 IS 2356
+-0.3010 IS 2357
+-0.3010 IS 2358
+-0.3010 IS 2359
+-0.3010 IS 2360
+-0.3010 IS 2361
+-0.3010 IS 2362
+-0.3010 IS 2363
+-0.3010 KLAUBA, HOW DO
+-0.3010 KLAUBA, STOP
+-0.3010 KLAUBA, WHAT ROOM
+-0.3010 KLAUBA, WHERE AM
+-1.9638 ME TO 2332
+-1.9638 ME TO 2333
+-1.9638 ME TO 2334
+-1.9638 ME TO 2335
+-1.9638 ME TO 2336
+-1.9638 ME TO 2337
+-1.9638 ME TO 2338
+-1.9638 ME TO 2340
+-1.9638 ME TO 2341
+-1.9638 ME TO 2342
+-1.9638 ME TO 2344
+-1.9638 ME TO 2346
+-1.9638 ME TO 2347
+-1.9638 ME TO 2350
+-1.9638 ME TO 2355
+-1.9638 ME TO 2356
+-1.9638 ME TO 2357
+-1.9638 ME TO 2358
+-1.9638 ME TO 2359
+-1.9638 ME TO 2360
+-1.9638 ME TO 2361
+-1.9638 ME TO 2362
+-1.9638 ME TO 2363
+-0.6021 ME TO ROOM
+-0.3010 MOVE BACKWARD
+-0.3010 MOVE FORWARD
+-0.3010 MOVE LEFT
+-0.3010 MOVE RIGHT
+-1.9638 MOVE TO 2332
+-1.9638 MOVE TO 2333
+-1.9638 MOVE TO 2334
+-1.9638 MOVE TO 2335
+-1.9638 MOVE TO 2336
+-1.9638 MOVE TO 2337
+-1.9638 MOVE TO 2338
+-1.9638 MOVE TO 2340
+-1.9638 MOVE TO 2341
+-1.9638 MOVE TO 2342
+-1.9638 MOVE TO 2344
+-1.9638 MOVE TO 2346
+-1.9638 MOVE TO 2347
+-1.9638 MOVE TO 2350
+-1.9638 MOVE TO 2355
+-1.9638 MOVE TO 2356
+-1.9638 MOVE TO 2357
+-1.9638 MOVE TO 2358
+-1.9638 MOVE TO 2359
+-1.9638 MOVE TO 2360
+-1.9638 MOVE TO 2361
+-1.9638 MOVE TO 2362
+-1.9638 MOVE TO 2363
+-0.6021 MOVE TO ROOM
+-0.3010 ROOM 2332
+-0.3010 ROOM 2333
+-0.3010 ROOM 2334
+-0.3010 ROOM 2335
+-0.3010 ROOM 2336
+-0.3010 ROOM 2337
+-0.3010 ROOM 2338
+-0.3010 ROOM 2340
+-0.3010 ROOM 2341
+-0.3010 ROOM 2342
+-0.3010 ROOM 2344
+-0.3010 ROOM 2346
+-0.3010 ROOM 2347
+-0.3010 ROOM 2350
+-0.3010 ROOM 2355
+-0.3010 ROOM 2356
+-0.3010 ROOM 2357
+-0.3010 ROOM 2358
+-0.3010 ROOM 2359
+-0.3010 ROOM 2360
+-0.3010 ROOM 2361
+-0.3010 ROOM 2362
+-0.3010 ROOM 2363
+-0.3010 ROOM AM I
+-0.3010 SHOW ME TO
+-0.3010 STOP MOVING
+-0.3010 TAKE ME TO
+-0.3010 THE ATRIUM?
+-0.3010 TO 2332
+-0.3010 TO 2333
+-0.3010 TO 2334
+-0.3010 TO 2335
+-0.3010 TO 2336
+-0.3010 TO 2337
+-0.3010 TO 2338
+-0.3010 TO 2340
+-0.3010 TO 2341
+-0.3010 TO 2342
+-0.3010 TO 2344
+-0.3010 TO 2346
+-0.3010 TO 2347
+-0.3010 TO 2350
+-0.3010 TO 2355
+-0.3010 TO 2356
+-0.3010 TO 2357
+-0.3010 TO 2358
+-0.3010 TO 2359
+-0.3010 TO 2360
+-0.3010 TO 2361
+-0.3010 TO 2362
+-0.3010 TO 2363
+-1.6628 TO ROOM 2332
+-1.6628 TO ROOM 2333
+-1.6628 TO ROOM 2334
+-1.6628 TO ROOM 2335
+-1.6628 TO ROOM 2336
+-1.6628 TO ROOM 2337
+-1.6628 TO ROOM 2338
+-1.6628 TO ROOM 2340
+-1.6628 TO ROOM 2341
+-1.6628 TO ROOM 2342
+-1.6628 TO ROOM 2344
+-1.6628 TO ROOM 2346
+-1.6628 TO ROOM 2347
+-1.6628 TO ROOM 2350
+-1.6628 TO ROOM 2355
+-1.6628 TO ROOM 2356
+-1.6628 TO ROOM 2357
+-1.6628 TO ROOM 2358
+-1.6628 TO ROOM 2359
+-1.6628 TO ROOM 2360
+-1.6628 TO ROOM 2361
+-1.6628 TO ROOM 2362
+-1.6628 TO ROOM 2363
+-0.3010 TO THE ATRIUM?
+-0.3010 TODAY, KLAUBA?
+-0.3010 WHAT BUILDING AM
+-0.3010 WHAT ROOM AM
+-0.3010 WHERE AM I?
+-1.6628 WHERE IS 2332
+-1.6628 WHERE IS 2333
+-1.6628 WHERE IS 2334
+-1.6628 WHERE IS 2335
+-1.6628 WHERE IS 2336
+-1.6628 WHERE IS 2337
+-1.6628 WHERE IS 2338
+-1.6628 WHERE IS 2340
+-1.6628 WHERE IS 2341
+-1.6628 WHERE IS 2342
+-1.6628 WHERE IS 2344
+-1.6628 WHERE IS 2346
+-1.6628 WHERE IS 2347
+-1.6628 WHERE IS 2350
+-1.6628 WHERE IS 2355
+-1.6628 WHERE IS 2356
+-1.6628 WHERE IS 2357
+-1.6628 WHERE IS 2358
+-1.6628 WHERE IS 2359
+-1.6628 WHERE IS 2360
+-1.6628 WHERE IS 2361
+-1.6628 WHERE IS 2362
+-1.6628 WHERE IS 2363
+-0.3010 YOU TODAY, KLAUBA?
+-0.3010 YOU TODAY?
+
+\end\
diff --git a/models/corpus/Corpus_V3/corpus.txt b/models/corpus/Corpus_V3/corpus.txt
new file mode 100644
index 0000000..f7a1567
--- /dev/null
+++ b/models/corpus/Corpus_V3/corpus.txt
@@ -0,0 +1,228 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
+Show me to room 2333
+How do I get to 2333
+How do I get to room 2333
+Show me to 2333
+Where is 2333
+Take me to room 2333
+Take me to 2333
+Move to room 2333
+Move to 2333
+Show me to room 2335
+How do I get to 2335
+How do I get to room 2335
+Show me to 2335
+Where is 2335
+Take me to room 2335
+Take me to 2335
+Move to room 2335
+Move to 2335
+Show me to room 2341
+How do I get to 2341
+How do I get to room 2341
+Show me to 2341
+Where is 2341
+Take me to room 2341
+Take me to 2341
+Move to room 2341
+Move to 2341
+Show me to room 2337
+How do I get to 2337
+How do I get to room 2337
+Show me to 2337
+Where is 2337
+Take me to room 2337
+Take me to 2337
+Move to room 2337
+Move to 2337
+Show me to room 2347
+How do I get to 2347
+How do I get to room 2347
+Show me to 2347
+Where is 2347
+Take me to room 2347
+Take me to 2347
+Move to room 2347
+Move to 2347
+Show me to room 2359
+How do I get to 2359
+How do I get to room 2359
+Show me to 2359
+Where is 2359
+Take me to room 2359
+Take me to 2359
+Move to room 2359
+Move to 2359
+Show me to room 2355
+How do I get to 2355
+How do I get to room 2355
+Show me to 2355
+Where is 2355
+Take me to room 2355
+Take me to 2355
+Move to room 2355
+Move to 2355
+Show me to room 2357
+How do I get to 2357
+How do I get to room 2357
+Show me to 2357
+Where is 2357
+Take me to room 2357
+Take me to 2357
+Move to room 2357
+Move to 2357
+Show me to room 2363
+How do I get to 2363
+How do I get to room 2363
+Show me to 2363
+Where is 2363
+Take me to room 2363
+Take me to 2363
+Move to room 2363
+Move to 2363
+Show me to room 2361
+How do I get to 2361
+How do I get to room 2361
+Show me to 2361
+Where is 2361
+Take me to room 2361
+Take me to 2361
+Move to room 2361
+Move to 2361
+Show me to room 2332
+How do I get to 2332
+How do I get to room 2332
+Show me to 2332
+Where is 2332
+Take me to room 2332
+Take me to 2332
+Move to room 2332
+Move to 2332
+Show me to room 2334
+How do I get to 2334
+How do I get to room 2334
+Show me to 2334
+Where is 2334
+Take me to room 2334
+Take me to 2334
+Move to room 2334
+Move to 2334
+Show me to room 2336
+How do I get to 2336
+How do I get to room 2336
+Show me to 2336
+Where is 2336
+Take me to room 2336
+Take me to 2336
+Move to room 2336
+Move to 2336
+Show me to room 2338
+How do I get to 2338
+How do I get to room 2338
+Show me to 2338
+Where is 2338
+Take me to room 2338
+Take me to 2338
+Move to room 2338
+Move to 2338
+Show me to room 2340
+How do I get to 2340
+How do I get to room 2340
+Show me to 2340
+Where is 2340
+Take me to room 2340
+Take me to 2340
+Move to room 2340
+Move to 2340
+Show me to room 2342
+How do I get to 2342
+How do I get to room 2342
+Show me to 2342
+Where is 2342
+Take me to room 2342
+Take me to 2342
+Move to room 2342
+Move to 2342
+Show me to room 2344
+How do I get to 2344
+How do I get to room 2344
+Show me to 2344
+Where is 2344
+Take me to room 2344
+Take me to 2344
+Move to room 2344
+Move to 2344
+Show me to room 2346
+How do I get to 2346
+How do I get to room 2346
+Show me to 2346
+Where is 2346
+Take me to room 2346
+Take me to 2346
+Move to room 2346
+Move to 2346
+Show me to room 2350
+How do I get to 2350
+How do I get to room 2350
+Show me to 2350
+Where is 2350
+Take me to room 2350
+Take me to 2350
+Move to room 2350
+Move to 2350
+Show me to room 2356
+How do I get to 2356
+How do I get to room 2356
+Show me to 2356
+Where is 2356
+Take me to room 2356
+Take me to 2356
+Move to room 2356
+Move to 2356
+Show me to room 2358
+How do I get to 2358
+How do I get to room 2358
+Show me to 2358
+Where is 2358
+Take me to room 2358
+Take me to 2358
+Move to room 2358
+Move to 2358
+Show me to room 2360
+How do I get to 2360
+How do I get to room 2360
+Show me to 2360
+Where is 2360
+Take me to room 2360
+Take me to 2360
+Move to room 2360
+Move to 2360
+Show me to room 2362
+How do I get to 2362
+How do I get to room 2362
+Show me to 2362
+Where is 2362
+Take me to room 2362
+Take me to 2362
+Move to room 2362
+Move to 2362
diff --git a/models/corpus/corpus.txt b/models/corpus/corpus.txt
new file mode 100644
index 0000000..f7a1567
--- /dev/null
+++ b/models/corpus/corpus.txt
@@ -0,0 +1,228 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
+Show me to room 2333
+How do I get to 2333
+How do I get to room 2333
+Show me to 2333
+Where is 2333
+Take me to room 2333
+Take me to 2333
+Move to room 2333
+Move to 2333
+Show me to room 2335
+How do I get to 2335
+How do I get to room 2335
+Show me to 2335
+Where is 2335
+Take me to room 2335
+Take me to 2335
+Move to room 2335
+Move to 2335
+Show me to room 2341
+How do I get to 2341
+How do I get to room 2341
+Show me to 2341
+Where is 2341
+Take me to room 2341
+Take me to 2341
+Move to room 2341
+Move to 2341
+Show me to room 2337
+How do I get to 2337
+How do I get to room 2337
+Show me to 2337
+Where is 2337
+Take me to room 2337
+Take me to 2337
+Move to room 2337
+Move to 2337
+Show me to room 2347
+How do I get to 2347
+How do I get to room 2347
+Show me to 2347
+Where is 2347
+Take me to room 2347
+Take me to 2347
+Move to room 2347
+Move to 2347
+Show me to room 2359
+How do I get to 2359
+How do I get to room 2359
+Show me to 2359
+Where is 2359
+Take me to room 2359
+Take me to 2359
+Move to room 2359
+Move to 2359
+Show me to room 2355
+How do I get to 2355
+How do I get to room 2355
+Show me to 2355
+Where is 2355
+Take me to room 2355
+Take me to 2355
+Move to room 2355
+Move to 2355
+Show me to room 2357
+How do I get to 2357
+How do I get to room 2357
+Show me to 2357
+Where is 2357
+Take me to room 2357
+Take me to 2357
+Move to room 2357
+Move to 2357
+Show me to room 2363
+How do I get to 2363
+How do I get to room 2363
+Show me to 2363
+Where is 2363
+Take me to room 2363
+Take me to 2363
+Move to room 2363
+Move to 2363
+Show me to room 2361
+How do I get to 2361
+How do I get to room 2361
+Show me to 2361
+Where is 2361
+Take me to room 2361
+Take me to 2361
+Move to room 2361
+Move to 2361
+Show me to room 2332
+How do I get to 2332
+How do I get to room 2332
+Show me to 2332
+Where is 2332
+Take me to room 2332
+Take me to 2332
+Move to room 2332
+Move to 2332
+Show me to room 2334
+How do I get to 2334
+How do I get to room 2334
+Show me to 2334
+Where is 2334
+Take me to room 2334
+Take me to 2334
+Move to room 2334
+Move to 2334
+Show me to room 2336
+How do I get to 2336
+How do I get to room 2336
+Show me to 2336
+Where is 2336
+Take me to room 2336
+Take me to 2336
+Move to room 2336
+Move to 2336
+Show me to room 2338
+How do I get to 2338
+How do I get to room 2338
+Show me to 2338
+Where is 2338
+Take me to room 2338
+Take me to 2338
+Move to room 2338
+Move to 2338
+Show me to room 2340
+How do I get to 2340
+How do I get to room 2340
+Show me to 2340
+Where is 2340
+Take me to room 2340
+Take me to 2340
+Move to room 2340
+Move to 2340
+Show me to room 2342
+How do I get to 2342
+How do I get to room 2342
+Show me to 2342
+Where is 2342
+Take me to room 2342
+Take me to 2342
+Move to room 2342
+Move to 2342
+Show me to room 2344
+How do I get to 2344
+How do I get to room 2344
+Show me to 2344
+Where is 2344
+Take me to room 2344
+Take me to 2344
+Move to room 2344
+Move to 2344
+Show me to room 2346
+How do I get to 2346
+How do I get to room 2346
+Show me to 2346
+Where is 2346
+Take me to room 2346
+Take me to 2346
+Move to room 2346
+Move to 2346
+Show me to room 2350
+How do I get to 2350
+How do I get to room 2350
+Show me to 2350
+Where is 2350
+Take me to room 2350
+Take me to 2350
+Move to room 2350
+Move to 2350
+Show me to room 2356
+How do I get to 2356
+How do I get to room 2356
+Show me to 2356
+Where is 2356
+Take me to room 2356
+Take me to 2356
+Move to room 2356
+Move to 2356
+Show me to room 2358
+How do I get to 2358
+How do I get to room 2358
+Show me to 2358
+Where is 2358
+Take me to room 2358
+Take me to 2358
+Move to room 2358
+Move to 2358
+Show me to room 2360
+How do I get to 2360
+How do I get to room 2360
+Show me to 2360
+Where is 2360
+Take me to room 2360
+Take me to 2360
+Move to room 2360
+Move to 2360
+Show me to room 2362
+How do I get to 2362
+How do I get to room 2362
+Show me to 2362
+Where is 2362
+Take me to room 2362
+Take me to 2362
+Move to room 2362
+Move to 2362
diff --git a/models/corpus/corpus_generator.py b/models/corpus/corpus_generator.py
new file mode 100644
index 0000000..df38937
--- /dev/null
+++ b/models/corpus/corpus_generator.py
@@ -0,0 +1,42 @@
+templates = [
+ "Show me to room {{ROOM}}",
+ "How do I get to {{ROOM}}",
+ "How do I get to room {{ROOM}}",
+ "Show me to {{ROOM}}",
+ "Where is {{ROOM}}",
+ "Take me to room {{ROOM}}",
+ "Take me to {{ROOM}}",
+ "Move to room {{ROOM}}",
+ "Move to {{ROOM}}"
+]
+
+def append_general_phrases(corpus_file):
+ phrases_file = open('general-phrases.txt', 'r')
+ for phrase in phrases_file:
+ phrase = phrase.strip()
+ corpus_file.write(phrase + '\n')
+ phrases_file.close()
+
+def generate_phrases_for_room(room_number):
+ output = []
+ for template in templates:
+ phrase = template.replace("{{ROOM}}", room_number)
+ output.append(phrase)
+ return output
+
+def read_in_rooms(corpus_file):
+ room_file = open('rooms.txt', 'r')
+ for room in room_file:
+ room = room.strip()
+ phrases = generate_phrases_for_room(room)
+ for phrase in phrases:
+ corpus_file.write(phrase + '\n')
+ room_file.close()
+
+
+corpus_file = open("corpus.txt", "w")
+
+append_general_phrases(corpus_file)
+read_in_rooms(corpus_file)
+
+corpus_file.close()
diff --git a/models/corpus/general-phrases.txt b/models/corpus/general-phrases.txt
new file mode 100644
index 0000000..aa2d9d2
--- /dev/null
+++ b/models/corpus/general-phrases.txt
@@ -0,0 +1,21 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
diff --git a/models/corpus/rooms.txt b/models/corpus/rooms.txt
new file mode 100644
index 0000000..d102e64
--- /dev/null
+++ b/models/corpus/rooms.txt
@@ -0,0 +1,23 @@
+2333
+2335
+2341
+2337
+2347
+2359
+2355
+2357
+2363
+2361
+2332
+2334
+2336
+2338
+2340
+2342
+2344
+2346
+2350
+2356
+2358
+2360
+2362
diff --git a/testfiles/noiseClean.py b/noiseClean.py
similarity index 96%
rename from testfiles/noiseClean.py
rename to noiseClean.py
index bfa0ee0..f85656f 100644
--- a/testfiles/noiseClean.py
+++ b/noiseClean.py
@@ -5,8 +5,8 @@
import math
import contextlib
-fname = 'testfiles/noisy.wav'
-outname = 'testfiles/filtered.wav'
+fname = 'inputs/noisy.wav'
+outname = 'inputs/filtered.wav'
cutOffFrequency = 400.0
@@ -59,4 +59,4 @@ def interpret_wav(raw_bytes, n_frames, n_channels, sample_width, interleaved = T
wav_file = wave.open(outname, "w")
wav_file.setparams((1, ampWidth, sampleRate, nFrames, spf.getcomptype(), spf.getcompname()))
wav_file.writeframes(filtered.tobytes('C'))
- wav_file.close()
\ No newline at end of file
+ wav_file.close()
diff --git a/pocketsphinx-5prealpha/Makefile b/pocketsphinx-5prealpha/Makefile
index 470a5c4..e1dcdf1 100644
--- a/pocketsphinx-5prealpha/Makefile
+++ b/pocketsphinx-5prealpha/Makefile
@@ -236,19 +236,19 @@ distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -262,12 +262,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -276,7 +276,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -284,7 +284,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -318,15 +318,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -355,7 +355,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/autom4te.cache/requests b/pocketsphinx-5prealpha/autom4te.cache/requests
index e483a37..2cb25aa 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/requests
+++ b/pocketsphinx-5prealpha/autom4te.cache/requests
@@ -45,194 +45,194 @@
'configure.ac'
],
{
- 'AC_LIBTOOL_PICMODE' => 1,
- 'AM_ENABLE_SHARED' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AC_CHECK_LIBM' => 1,
- 'AC_PROG_LD' => 1,
- 'include' => 1,
- 'LT_PATH_NM' => 1,
- 'AM_SILENT_RULES' => 1,
- 'LT_AC_PROG_RC' => 1,
- 'AM_DISABLE_STATIC' => 1,
- 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
- 'AC_LTDL_PREOPEN' => 1,
- 'AM_CONDITIONAL' => 1,
- 'AX_PYTHON_DEVEL' => 1,
- 'AC_PROG_NM' => 1,
- 'PKG_CHECK_MODULES' => 1,
- '_LT_PROG_F77' => 1,
- 'AC_LIBTOOL_CONFIG' => 1,
'_LT_AC_TAGVAR' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
- '_LT_AC_SYS_COMPILER' => 1,
- 'LTOBSOLETE_VERSION' => 1,
- 'AC_PATH_MAGIC' => 1,
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
- 'AC_LTDL_SHLIBPATH' => 1,
- '_AM_CONFIG_MACRO_DIRS' => 1,
- 'AC_LIBTOOL_F77' => 1,
- 'AM_DISABLE_SHARED' => 1,
- 'LT_OUTPUT' => 1,
- 'm4_pattern_allow' => 1,
- 'AC_PYTHON_DEVEL' => 1,
- 'AC_PROG_LD_GNU' => 1,
- 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
- 'LT_PROG_RC' => 1,
- 'LT_AC_PROG_SED' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AU_DEFUN' => 1,
- '_LT_AC_LANG_GCJ' => 1,
- 'AC_LIB_LTDL' => 1,
- 'AM_RUN_LOG' => 1,
- 'LT_SYS_DLOPEN_SELF' => 1,
- 'LTOPTIONS_VERSION' => 1,
- 'AC_LIBTOOL_LINKER_OPTION' => 1,
- 'AC_LIBTOOL_GCJ' => 1,
- 'AM_ENABLE_STATIC' => 1,
- 'AC_LIBTOOL_SETUP' => 1,
- 'LT_CMD_MAX_LEN' => 1,
- '_AM_PROG_TAR' => 1,
+ 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
+ 'AC_LIBTOOL_CONFIG' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ '_PKG_SHORT_ERRORS_SUPPORTED' => 1,
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
'AM_DEP_TRACK' => 1,
- 'AM_MISSING_HAS_RUN' => 1,
'_LT_CC_BASENAME' => 1,
- '_LT_PROG_LTMAIN' => 1,
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
- 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
- 'AC_LTDL_SYSSEARCHPATH' => 1,
- 'LTSUGAR_VERSION' => 1,
- 'AM_MISSING_PROG' => 1,
- 'LT_SYS_MODULE_EXT' => 1,
- 'AM_PROG_NM' => 1,
- 'AC_LTDL_SYMBOL_USCORE' => 1,
- '_LT_PATH_TOOL_PREFIX' => 1,
- 'AM_AUX_DIR_EXPAND' => 1,
- 'AM_PROG_CC_C_O' => 1,
- 'AM_PATH_PYTHON' => 1,
- 'AC_LTDL_ENABLE_INSTALL' => 1,
+ 'AC_LTDL_DLSYM_USCORE' => 1,
+ 'AC_DEFUN_ONCE' => 1,
+ 'AC_DEPLIBS_CHECK_METHOD' => 1,
+ '_LT_AC_LANG_RC_CONFIG' => 1,
+ '_LT_AC_LANG_CXX_CONFIG' => 1,
+ 'AC_LIBTOOL_CXX' => 1,
+ 'LT_LIB_M' => 1,
+ '_LT_PROG_F77' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
'_LT_AC_LANG_CXX' => 1,
- 'AC_PROG_EGREP' => 1,
- '_LT_AC_FILE_LTDLL_C' => 1,
+ '_AM_DEPENDENCIES' => 1,
+ '_LT_PROG_ECHO_BACKSLASH' => 1,
+ '_LT_AC_PROG_CXXCPP' => 1,
+ '_LT_LINKER_BOILERPLATE' => 1,
+ 'AC_PATH_MAGIC' => 1,
+ 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'AC_LIBTOOL_DLOPEN' => 1,
- 'AC_LIBTOOL_RC' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- '_AM_AUTOCONF_VERSION' => 1,
- 'AC_ENABLE_SHARED' => 1,
+ 'LT_AC_PROG_EGREP' => 1,
+ '_LT_COMPILER_OPTION' => 1,
+ 'LT_INIT' => 1,
+ 'LTDL_INSTALLABLE' => 1,
+ 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
'LT_WITH_LTDL' => 1,
- 'PKG_CHECK_EXISTS' => 1,
+ '_LT_AC_CHECK_DLFCN' => 1,
+ 'LT_SYS_DLSEARCH_PATH' => 1,
+ 'AC_LTDL_PREOPEN' => 1,
+ 'LT_LIB_DLLOAD' => 1,
+ 'AC_ENABLE_FAST_INSTALL' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
- 'AC_LTDL_DLLIB' => 1,
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
- 'LT_LANG' => 1,
+ '_AM_SET_OPTION' => 1,
'AC_LIBTOOL_DLOPEN_SELF' => 1,
- 'AC_LIBLTDL_CONVENIENCE' => 1,
- 'LT_LIB_DLLOAD' => 1,
- '_LT_AC_CHECK_DLFCN' => 1,
+ 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'LT_FUNC_ARGZ' => 1,
+ 'm4_include' => 1,
+ 'AC_PROG_LD_RELOAD_FLAG' => 1,
+ 'AC_LTDL_SYMBOL_USCORE' => 1,
+ 'LTSUGAR_VERSION' => 1,
+ 'AC_LTDL_ENABLE_INSTALL' => 1,
+ 'AM_PYTHON_CHECK_VERSION' => 1,
+ 'AC_PATH_TOOL_PREFIX' => 1,
+ 'AC_LIBTOOL_FC' => 1,
+ 'LT_AC_PROG_SED' => 1,
+ '_LT_AC_SHELL_INIT' => 1,
+ 'LT_SYS_SYMBOL_USCORE' => 1,
+ 'PKG_PROG_PKG_CONFIG' => 1,
+ 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
+ 'LT_SYS_MODULE_PATH' => 1,
+ 'AC_LIBTOOL_PROG_CC_C_O' => 1,
+ 'LT_CMD_MAX_LEN' => 1,
+ 'AM_SILENT_RULES' => 1,
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
- 'AC_LIBLTDL_INSTALLABLE' => 1,
- 'LT_AC_PROG_GCJ' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
- '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'LTDL_CONVENIENCE' => 1,
+ 'AC_DEFUN' => 1,
+ 'AC_LTDL_SYSSEARCHPATH' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
- 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
- '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AC_LTDL_OBJDIR' => 1,
+ 'LT_PROG_GO' => 1,
+ 'AC_LIBTOOL_RC' => 1,
+ 'AC_LTDL_SHLIBPATH' => 1,
+ 'AC_PROG_LD' => 1,
+ '_LT_AC_LANG_C_CONFIG' => 1,
'LTDL_INIT' => 1,
- 'LTDL_CONVENIENCE' => 1,
- 'LT_FUNC_DLSYM_USCORE' => 1,
- 'AX_PKG_SWIG' => 1,
- 'LT_INIT' => 1,
- 'AC_ENABLE_STATIC' => 1,
- 'AM_SET_LEADING_DOT' => 1,
+ 'LT_OUTPUT' => 1,
+ '_AM_PROG_TAR' => 1,
+ 'AM_DISABLE_STATIC' => 1,
+ 'AM_PATH_PYTHON' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ '_LT_PREPARE_SED_QUOTE_VARS' => 1,
+ '_LTDL_SETUP' => 1,
+ '_AM_MANGLE_OPTION' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
- 'AC_LTDL_OBJDIR' => 1,
+ 'AC_LTDL_DLLIB' => 1,
+ '_LT_PROG_FC' => 1,
+ 'AC_LIBTOOL_OBJDIR' => 1,
+ 'AC_DISABLE_SHARED' => 1,
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
+ 'AC_LIBTOOL_F77' => 1,
+ '_LT_WITH_SYSROOT' => 1,
+ 'AC_LIBTOOL_GCJ' => 1,
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- 'AC_PROG_LD_RELOAD_FLAG' => 1,
+ '_LT_PROG_LTMAIN' => 1,
+ 'AM_AUX_DIR_EXPAND' => 1,
+ 'AC_LTDL_SHLIBEXT' => 1,
+ '_LT_LINKER_OPTION' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
+ '_LT_REQUIRED_DARWIN_CHECKS' => 1,
'_AM_IF_OPTION' => 1,
- 'LTDL_INSTALLABLE' => 1,
+ 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
+ 'AM_DISABLE_SHARED' => 1,
+ 'AC_PROG_NM' => 1,
+ 'AM_RUN_LOG' => 1,
+ 'AC_ENABLE_SHARED' => 1,
+ 'AM_MAKE_INCLUDE' => 1,
+ 'AC_DISABLE_FAST_INSTALL' => 1,
+ 'LT_SYS_MODULE_EXT' => 1,
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
+ 'LT_PATH_NM' => 1,
'_LT_LIBOBJ' => 1,
+ 'PKG_CHECK_MODULES' => 1,
+ '_AM_AUTOCONF_VERSION' => 1,
+ 'AC_PROG_EGREP' => 1,
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ '_LT_AC_FILE_LTDLL_C' => 1,
+ '_m4_warn' => 1,
+ 'AM_MISSING_HAS_RUN' => 1,
+ 'LT_LANG' => 1,
+ '_AM_SET_OPTIONS' => 1,
'AC_LIBTOOL_WIN32_DLL' => 1,
- 'm4_pattern_forbid' => 1,
- 'AC_LTDL_SHLIBEXT' => 1,
- 'LT_SUPPORTED_TAG' => 1,
- 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
- '_LT_AC_LANG_GCJ_CONFIG' => 1,
- 'AC_LIBTOOL_COMPILER_OPTION' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
'AM_AUTOMAKE_VERSION' => 1,
- 'm4_include' => 1,
- 'AC_PATH_TOOL_PREFIX' => 1,
- 'AC_DEPLIBS_CHECK_METHOD' => 1,
- '_LT_AC_LANG_C_CONFIG' => 1,
- 'LT_PROG_GO' => 1,
- '_LT_PROG_CXX' => 1,
- 'AM_PROG_INSTALL_SH' => 1,
- '_LT_AC_LOCK' => 1,
- 'LT_SYS_SYMBOL_USCORE' => 1,
- 'AM_PROG_LIBTOOL' => 1,
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
+ 'AC_LIB_LTDL' => 1,
+ 'm4_pattern_forbid' => 1,
+ '_LT_PATH_TOOL_PREFIX' => 1,
+ '_LT_AC_SYS_COMPILER' => 1,
+ '_LT_DLL_DEF_P' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AC_CONFIG_MACRO_DIR' => 1,
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
+ 'AC_ENABLE_STATIC' => 1,
+ 'AC_WITH_LTDL' => 1,
+ 'LT_FUNC_DLSYM_USCORE' => 1,
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
+ 'AM_ENABLE_SHARED' => 1,
+ '_AC_PROG_LIBTOOL' => 1,
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'AC_LIBTOOL_SETUP' => 1,
'LT_PATH_LD' => 1,
- 'LT_SYS_DLOPEN_DEPLIBS' => 1,
- 'AC_DISABLE_FAST_INSTALL' => 1,
- '_AM_SET_OPTION' => 1,
- 'PKG_PROG_PKG_CONFIG' => 1,
- 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
- 'AC_DISABLE_STATIC' => 1,
- 'LT_SYS_DLSEARCH_PATH' => 1,
+ '_LT_AC_LANG_F77' => 1,
+ 'LT_PROG_GCJ' => 1,
+ '_LT_AC_LANG_GCJ_CONFIG' => 1,
+ '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AM_ENABLE_STATIC' => 1,
+ 'AX_PKG_SWIG' => 1,
'LTVERSION_VERSION' => 1,
- 'LT_SYS_MODULE_PATH' => 1,
- '_LT_LINKER_OPTION' => 1,
- 'LT_FUNC_ARGZ' => 1,
- '_LT_LINKER_BOILERPLATE' => 1,
- 'AM_SET_DEPDIR' => 1,
- 'AC_DISABLE_SHARED' => 1,
- 'AM_SUBST_NOTMAKE' => 1,
- 'AC_DEFUN' => 1,
- '_PKG_SHORT_ERRORS_SUPPORTED' => 1,
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
- '_LT_REQUIRED_DARWIN_CHECKS' => 1,
- '_LT_AC_SHELL_INIT' => 1,
- 'AC_LTDL_DLSYM_USCORE' => 1,
- '_AM_PROG_CC_C_O' => 1,
+ 'include' => 1,
+ 'AM_MISSING_PROG' => 1,
+ 'LTOPTIONS_VERSION' => 1,
+ 'AM_SANITY_CHECK' => 1,
+ 'LT_AC_PROG_RC' => 1,
+ 'PKG_CHECK_EXISTS' => 1,
+ 'AC_PROG_LD_GNU' => 1,
+ '_LT_AC_LANG_GCJ' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'AM_CONDITIONAL' => 1,
+ 'AM_PROG_INSTALL_SH' => 1,
+ 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
'AM_PROG_LD' => 1,
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
- '_LT_COMPILER_OPTION' => 1,
- '_LT_AC_LANG_RC_CONFIG' => 1,
+ 'AM_PROG_NM' => 1,
+ 'LT_AC_PROG_GCJ' => 1,
+ 'AM_SET_DEPDIR' => 1,
+ '_LT_PROG_CXX' => 1,
+ 'AC_LIBLTDL_INSTALLABLE' => 1,
'_LT_AC_LANG_F77_CONFIG' => 1,
- 'LT_LIB_M' => 1,
- 'LT_AC_PROG_EGREP' => 1,
- '_LT_PROG_ECHO_BACKSLASH' => 1,
- 'AC_LIBTOOL_FC' => 1,
- 'AC_LIBTOOL_OBJDIR' => 1,
- 'AM_SANITY_CHECK' => 1,
- '_LT_AC_LANG_F77' => 1,
- 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
- 'AM_MAKE_INCLUDE' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- '_LT_DLL_DEF_P' => 1,
- '_AC_PROG_LIBTOOL' => 1,
- 'AC_DEFUN_ONCE' => 1,
- 'AC_ENABLE_FAST_INSTALL' => 1,
- 'AC_WITH_LTDL' => 1,
- 'AC_LIBTOOL_PROG_CC_C_O' => 1,
+ 'AC_LIBTOOL_PICMODE' => 1,
+ 'AC_LIBTOOL_COMPILER_OPTION' => 1,
+ 'LT_SYS_DLOPEN_DEPLIBS' => 1,
+ 'AM_SET_LEADING_DOT' => 1,
+ '_AM_CONFIG_MACRO_DIRS' => 1,
+ '_LT_AC_LOCK' => 1,
+ 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
'_AM_SUBST_NOTMAKE' => 1,
- 'AC_CONFIG_MACRO_DIR' => 1,
- '_LTDL_SETUP' => 1,
- '_AM_DEPENDENCIES' => 1,
- '_LT_WITH_SYSROOT' => 1,
- '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
- 'AM_PYTHON_CHECK_VERSION' => 1,
- '_m4_warn' => 1,
- 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
- 'LT_PROG_GCJ' => 1,
- '_AM_MANGLE_OPTION' => 1,
- '_LT_PREPARE_SED_QUOTE_VARS' => 1,
- '_LT_AC_PROG_CXXCPP' => 1,
- '_LT_PROG_FC' => 1,
- '_AM_SET_OPTIONS' => 1,
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
- 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
- 'AC_LIBTOOL_CXX' => 1,
- '_LT_AC_LANG_CXX_CONFIG' => 1,
- '_AC_AM_CONFIG_HEADER_HOOK' => 1
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
+ 'AC_PYTHON_DEVEL' => 1,
+ 'AC_CHECK_LIBM' => 1,
+ 'LT_SYS_DLOPEN_SELF' => 1,
+ 'AM_SUBST_NOTMAKE' => 1,
+ '_AM_PROG_CC_C_O' => 1,
+ 'm4_pattern_allow' => 1,
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
+ 'AC_LIBLTDL_CONVENIENCE' => 1,
+ 'AC_DISABLE_STATIC' => 1,
+ 'LTOBSOLETE_VERSION' => 1,
+ 'LT_PROG_RC' => 1,
+ 'AX_PYTHON_DEVEL' => 1,
+ 'AU_DEFUN' => 1
}
], 'Autom4te::Request' ),
bless( [
@@ -247,66 +247,66 @@
'configure.ac'
],
{
- 'AM_MAINTAINER_MODE' => 1,
- 'AC_CONFIG_LINKS' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- 'AC_DEFINE_TRACE_LITERAL' => 1,
- 'm4_sinclude' => 1,
- 'AC_SUBST_TRACE' => 1,
- 'AH_OUTPUT' => 1,
- 'AM_NLS' => 1,
- 'AC_CONFIG_SUBDIRS' => 1,
+ '_AM_MAKEFILE_INCLUDE' => 1,
+ 'sinclude' => 1,
+ 'm4_include' => 1,
'm4_pattern_allow' => 1,
- 'AM_GNU_GETTEXT' => 1,
- 'AM_PROG_LIBTOOL' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AM_PROG_MKDIR_P' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AM_PROG_CXX_C_O' => 1,
- 'AC_SUBST' => 1,
- '_m4_warn' => 1,
- 'AC_FC_PP_SRCEXT' => 1,
- '_AM_COND_IF' => 1,
- 'AM_PROG_F77_C_O' => 1,
- 'AC_CANONICAL_BUILD' => 1,
+ 'AC_CONFIG_SUBDIRS' => 1,
+ 'AM_ENABLE_MULTILIB' => 1,
'AC_CANONICAL_HOST' => 1,
- 'AM_PROG_MOC' => 1,
- 'AC_CONFIG_FILES' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AC_LIBSOURCE' => 1,
- 'AC_FC_SRCEXT' => 1,
- 'AC_CANONICAL_TARGET' => 1,
- 'sinclude' => 1,
- '_AM_COND_ELSE' => 1,
- 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
- 'LT_INIT' => 1,
'AM_XGETTEXT_OPTION' => 1,
- 'include' => 1,
+ 'AC_FC_PP_DEFINE' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AM_PROG_CXX_C_O' => 1,
+ 'AM_PATH_GUILE' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AM_POT_TOOLS' => 1,
+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
- 'AM_SILENT_RULES' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ 'm4_pattern_forbid' => 1,
+ 'LT_INIT' => 1,
+ 'AM_PROG_AR' => 1,
+ 'AC_INIT' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
+ 'AC_FC_SRCEXT' => 1,
'AM_PROG_FC_C_O' => 1,
- 'AM_PROG_CC_C_O' => 1,
- 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
'_AM_COND_ENDIF' => 1,
- 'AM_CONDITIONAL' => 1,
+ 'AM_GNU_GETTEXT' => 1,
'AC_CANONICAL_SYSTEM' => 1,
- 'm4_pattern_forbid' => 1,
- 'AC_CONFIG_HEADERS' => 1,
- 'AM_ENABLE_MULTILIB' => 1,
- 'LT_SUPPORTED_TAG' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ '_m4_warn' => 1,
+ 'AC_SUBST' => 1,
+ 'AM_PROG_MOC' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'AM_NLS' => 1,
+ 'AC_CONFIG_LINKS' => 1,
+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'AM_CONDITIONAL' => 1,
+ 'AM_MAINTAINER_MODE' => 1,
+ 'AH_OUTPUT' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AC_CANONICAL_BUILD' => 1,
'AC_FC_FREEFORM' => 1,
- 'AC_FC_PP_DEFINE' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- 'AM_PROG_AR' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
+ 'AM_MAKEFILE_INCLUDE' => 1,
+ 'AC_DEFINE_TRACE_LITERAL' => 1,
+ 'AC_LIBSOURCE' => 1,
+ 'include' => 1,
+ 'AC_CONFIG_HEADERS' => 1,
+ '_AM_COND_ELSE' => 1,
+ '_AM_COND_IF' => 1,
+ 'AM_PROG_F77_C_O' => 1,
'AC_CONFIG_AUX_DIR' => 1,
- 'm4_include' => 1,
- 'AC_INIT' => 1,
- '_AM_MAKEFILE_INCLUDE' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
- 'AM_POT_TOOLS' => 1,
- 'AM_MAKEFILE_INCLUDE' => 1,
- 'AM_PATH_GUILE' => 1
+ 'AM_PROG_CC_C_O' => 1,
+ 'm4_sinclude' => 1,
+ 'AC_CANONICAL_TARGET' => 1,
+ 'AC_SUBST_TRACE' => 1,
+ 'AC_FC_PP_SRCEXT' => 1,
+ 'AC_CONFIG_FILES' => 1
}
], 'Autom4te::Request' )
);
diff --git a/pocketsphinx-5prealpha/config.log b/pocketsphinx-5prealpha/config.log
index 935fa5d..9508957 100644
--- a/pocketsphinx-5prealpha/config.log
+++ b/pocketsphinx-5prealpha/config.log
@@ -459,9 +459,9 @@ configure:12998: checking for swig
configure:13016: found /usr/bin/swig
configure:13028: result: /usr/bin/swig
configure:13042: checking SWIG version
-configure:13045: result: 3.0.8
+configure:13045: result: 3.0.10
configure:13094: checking for SWIG library
-configure:13097: result: /usr/share/swig3.0
+configure:13097: result: /usr/share/swig/3.0.10
configure:13173: checking for pkg-config
configure:13191: found /usr/bin/pkg-config
configure:13203: result: /usr/bin/pkg-config
@@ -471,42 +471,15 @@ configure:13242: checking for GStreamer
configure:13252: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
gstreamer-base-$GST_MAJORMINOR >= 1.0
gstreamer-plugins-base-$GST_MAJORMINOR >= 1.0"
-Package gstreamer-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-1.0' found
-Package gstreamer-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-base-1.0' found
-Package gstreamer-plugins-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-plugins-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-plugins-base-1.0' found
-configure:13257: $? = 1
+configure:13257: $? = 0
configure:13276: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
gstreamer-base-$GST_MAJORMINOR >= 1.0
gstreamer-plugins-base-$GST_MAJORMINOR >= 1.0"
-Package gstreamer-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-1.0' found
-Package gstreamer-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-base-1.0' found
-Package gstreamer-plugins-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-plugins-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-plugins-base-1.0' found
-configure:13281: $? = 1
-No package 'gstreamer-1.0' found
-No package 'gstreamer-base-1.0' found
-No package 'gstreamer-plugins-base-1.0' found
-configure:13315: result: no
-configure:13375: checking for sphinxbase in /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase
+configure:13281: $? = 0
+configure:13323: result: yes
+configure:13375: checking for sphinxbase in /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase
configure:13383: result: no
-configure:13375: checking for sphinxbase in /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha
+configure:13375: checking for sphinxbase in /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha
configure:13379: result: yes
configure:13619: checking that generated files are newer than configure
configure:13625: result: done
@@ -527,27 +500,26 @@ generated by GNU Autoconf 2.69. Invocation command line was
on pi
-config.status:1138: creating pocketsphinx.pc
-config.status:1138: creating Makefile
-config.status:1138: creating include/Makefile
-config.status:1138: creating src/Makefile
-config.status:1138: creating swig/Makefile
-config.status:1138: creating swig/python/Makefile
-config.status:1138: creating swig/python/test/Makefile
-config.status:1138: creating src/libpocketsphinx/Makefile
-config.status:1138: creating src/programs/Makefile
-config.status:1138: creating src/gst-plugin/Makefile
-config.status:1138: creating doc/Makefile
-config.status:1138: creating doc/doxyfile
-config.status:1138: creating model/Makefile
-config.status:1138: creating test/Makefile
-config.status:1138: creating test/testfuncs.sh
-config.status:1138: creating test/unit/Makefile
-config.status:1138: creating test/regression/Makefile
-config.status:1138: creating include/config.h
-config.status:1319: include/config.h is unchanged
-config.status:1367: executing depfiles commands
-config.status:1367: executing libtool commands
+config.status:1140: creating pocketsphinx.pc
+config.status:1140: creating Makefile
+config.status:1140: creating include/Makefile
+config.status:1140: creating src/Makefile
+config.status:1140: creating swig/Makefile
+config.status:1140: creating swig/python/Makefile
+config.status:1140: creating swig/python/test/Makefile
+config.status:1140: creating src/libpocketsphinx/Makefile
+config.status:1140: creating src/programs/Makefile
+config.status:1140: creating src/gst-plugin/Makefile
+config.status:1140: creating doc/Makefile
+config.status:1140: creating doc/doxyfile
+config.status:1140: creating model/Makefile
+config.status:1140: creating test/Makefile
+config.status:1140: creating test/testfuncs.sh
+config.status:1140: creating test/unit/Makefile
+config.status:1140: creating test/regression/Makefile
+config.status:1140: creating include/config.h
+config.status:1369: executing depfiles commands
+config.status:1369: executing libtool commands
## ---------------- ##
## Cache variables. ##
@@ -663,12 +635,14 @@ lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
+pkg_cv_GStreamer_CFLAGS='-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include'
+pkg_cv_GStreamer_LIBS='-lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0'
## ----------------- ##
## Output variables. ##
## ----------------- ##
-ACLOCAL='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15'
+ACLOCAL='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
@@ -678,21 +652,21 @@ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
-AUTOCONF='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf'
-AUTOHEADER='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader'
-AUTOMAKE='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15'
+AUTOCONF='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf'
+AUTOHEADER='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader'
+AUTOMAKE='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15'
AWK='gawk'
BUILD_DOXYGEN_FALSE=''
BUILD_DOXYGEN_TRUE='#'
-BUILD_GST_FALSE=''
-BUILD_GST_TRUE='#'
+BUILD_GST_FALSE='#'
+BUILD_GST_TRUE=''
BUILD_SWIG_FALSE='#'
BUILD_SWIG_TRUE=''
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -Wall'
CPP='gcc -E'
-CPPFLAGS=' -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase'
+CPPFLAGS=' -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
@@ -706,12 +680,12 @@ EGREP='/bin/grep -E'
EXEEXT=''
FGREP='/bin/grep -F'
GREP='/bin/grep'
-GST_CFLAGS=' '
-GST_LIBS=''
+GST_CFLAGS='-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include '
+GST_LIBS='-lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0'
GST_MAJORMINOR='1.0'
GST_PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*'
-GStreamer_CFLAGS=''
-GStreamer_LIBS=''
+GStreamer_CFLAGS='-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include'
+GStreamer_LIBS='-lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0'
HAVE_DOXYGEN='no'
HAVE_PKGCONFIG='yes'
INSTALL_DATA='${INSTALL} -m 644'
@@ -719,7 +693,7 @@ INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/usr/bin/ld'
-LDFLAGS=' -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase'
+LDFLAGS=' -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase'
LIBOBJS=''
LIBS=' -lsphinxbase'
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
@@ -727,7 +701,7 @@ LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
-MAKEINFO='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo'
+MAKEINFO='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
@@ -761,10 +735,10 @@ SET_MAKE=''
SHELL='/bin/bash'
SPHINXBASE_CFLAGS=''
SPHINXBASE_LIBS=''
-SPHINXBASE_SWIG='/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig'
+SPHINXBASE_SWIG='/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig'
STRIP='strip'
SWIG='/usr/bin/swig'
-SWIG_LIB='/usr/share/swig3.0'
+SWIG_LIB='/usr/share/swig/3.0.10'
VERSION='5prealpha'
ac_ct_AR='ar'
ac_ct_CC='gcc'
@@ -799,7 +773,7 @@ host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh'
+install_sh='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
@@ -850,21 +824,3 @@ target_alias=''
#define HAVE_PYTHON "2.7"
configure: exit 0
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by pocketsphinx config.status 5prealpha, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status include/config.h
-
-on pi
-
-config.status:1138: creating include/config.h
-config.status:1319: include/config.h is unchanged
diff --git a/pocketsphinx-5prealpha/config.status b/pocketsphinx-5prealpha/config.status
index 4542bb9..2929a43 100755
--- a/pocketsphinx-5prealpha/config.status
+++ b/pocketsphinx-5prealpha/config.status
@@ -437,7 +437,7 @@ Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
-ac_pwd='/home/pi/speech2text/pocketsphinx-5prealpha'
+ac_pwd='/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha'
srcdir='.'
INSTALL='/usr/bin/install -c'
MKDIR_P='/bin/mkdir -p'
@@ -835,22 +835,24 @@ S["am__EXEEXT_FALSE"]=""
S["am__EXEEXT_TRUE"]="#"
S["LTLIBOBJS"]=""
S["LIBOBJS"]=""
-S["SPHINXBASE_SWIG"]="/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig"
+S["SPHINXBASE_SWIG"]="/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig"
S["SPHINXBASE_LIBS"]=""
S["SPHINXBASE_CFLAGS"]=""
S["GST_PLUGIN_LDFLAGS"]="-module -avoid-version -export-symbols-regex _*\\(gst_\\|Gst\\|GST_\\).*"
S["plugindir"]="$(libdir)/gstreamer-1.0"
-S["GST_LIBS"]=""
-S["GST_CFLAGS"]=" "
+S["GST_LIBS"]="-lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0"
+S["GST_CFLAGS"]="-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/gl"\
+"ib-2.0/include "
S["GST_MAJORMINOR"]="1.0"
-S["BUILD_GST_FALSE"]=""
-S["BUILD_GST_TRUE"]="#"
-S["GStreamer_LIBS"]=""
-S["GStreamer_CFLAGS"]=""
+S["BUILD_GST_FALSE"]="#"
+S["BUILD_GST_TRUE"]=""
+S["GStreamer_LIBS"]="-lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0"
+S["GStreamer_CFLAGS"]="-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/gl"\
+"ib-2.0/include"
S["PKG_CONFIG"]="/usr/bin/pkg-config"
S["BUILD_SWIG_FALSE"]="#"
S["BUILD_SWIG_TRUE"]=""
-S["SWIG_LIB"]="/usr/share/swig3.0"
+S["SWIG_LIB"]="/usr/share/swig/3.0.10"
S["SWIG"]="/usr/bin/swig"
S["PYTHON_EXTRA_LDFLAGS"]="-Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions"
S["PYTHON_EXTRA_LIBS"]="-lpthread -ldl -lutil -lm"
@@ -906,10 +908,10 @@ S["DEPDIR"]=".deps"
S["OBJEXT"]="o"
S["EXEEXT"]=""
S["ac_ct_CC"]="gcc"
-S["CPPFLAGS"]=" -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha"\
-"/include/sphinxbase"
-S["LDFLAGS"]=" -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src"\
-"/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase"
+S["CPPFLAGS"]=" -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5"\
+"prealpha/../sphinxbase-5prealpha/include/sphinxbase"
+S["LDFLAGS"]=" -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prea"\
+"lpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase"
S["CFLAGS"]="-g -O2 -Wall"
S["CC"]="gcc"
S["host_os"]="linux-gnueabihf"
@@ -934,12 +936,12 @@ S["mkdir_p"]="$(MKDIR_P)"
S["MKDIR_P"]="/bin/mkdir -p"
S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh"
-S["MAKEINFO"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo"
-S["AUTOHEADER"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader"
-S["AUTOMAKE"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15"
-S["AUTOCONF"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf"
-S["ACLOCAL"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15"
+S["install_sh"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh"
+S["MAKEINFO"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo"
+S["AUTOHEADER"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader"
+S["AUTOMAKE"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15"
+S["AUTOCONF"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf"
+S["ACLOCAL"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15"
S["VERSION"]="5prealpha"
S["PACKAGE"]="pocketsphinx"
S["CYGPATH_W"]="echo"
diff --git a/pocketsphinx-5prealpha/doc/Makefile b/pocketsphinx-5prealpha/doc/Makefile
index 63f3f2f..2e8c77f 100644
--- a/pocketsphinx-5prealpha/doc/Makefile
+++ b/pocketsphinx-5prealpha/doc/Makefile
@@ -155,19 +155,19 @@ MANS = $(man_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxyfile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -181,12 +181,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -195,7 +195,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -203,7 +203,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -237,15 +237,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/doc
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/doc
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/doc
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/doc
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -274,7 +274,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/include/Makefile b/pocketsphinx-5prealpha/include/Makefile
index cb37972..4261a10 100644
--- a/pocketsphinx-5prealpha/include/Makefile
+++ b/pocketsphinx-5prealpha/include/Makefile
@@ -174,19 +174,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -200,12 +200,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -214,7 +214,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -222,7 +222,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -256,15 +256,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/include
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/include
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/include
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/include
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -293,7 +293,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/model/Makefile b/pocketsphinx-5prealpha/model/Makefile
index f6dcd26..6053a08 100644
--- a/pocketsphinx-5prealpha/model/Makefile
+++ b/pocketsphinx-5prealpha/model/Makefile
@@ -155,19 +155,19 @@ DATA = $(dist_enus_DATA) $(dist_enuslm_DATA)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -181,12 +181,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -195,7 +195,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -203,7 +203,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -237,15 +237,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/model
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/model
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/model
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/model
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -274,7 +274,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/pocketsphinx.pc b/pocketsphinx-5prealpha/pocketsphinx.pc
new file mode 100644
index 0000000..a8d7744
--- /dev/null
+++ b/pocketsphinx-5prealpha/pocketsphinx.pc
@@ -0,0 +1,16 @@
+prefix=/usr/local
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+libs= -lsphinxbase
+datadir=${prefix}/share/pocketsphinx
+modeldir=${prefix}/share/pocketsphinx/model
+
+Name: PocketSphinx
+Description: Lightweight speech recognition system
+Version: 5prealpha
+URL: http://cmusphinx.sourceforge.net/
+Requires: sphinxbase >= 5prealpha
+Libs: -L${libdir} -lpocketsphinx
+Libs.private: ${libs} -lm
+Cflags: -I${includedir} -I${includedir}/sphinxbase -I${includedir}/pocketsphinx
diff --git a/pocketsphinx-5prealpha/src/Makefile b/pocketsphinx-5prealpha/src/Makefile
index f0b2e82..404f6b7 100644
--- a/pocketsphinx-5prealpha/src/Makefile
+++ b/pocketsphinx-5prealpha/src/Makefile
@@ -184,19 +184,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -210,12 +210,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -224,7 +224,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -232,7 +232,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -266,15 +266,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -303,7 +303,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo b/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
index 9ce06a8..90c1abe 100644
--- a/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
@@ -1 +1,774 @@
-# dummy
+gstpocketsphinx.lo: gstpocketsphinx.c /usr/include/stdc-predef.h \
+ ../../include/config.h /usr/include/string.h /usr/include/features.h \
+ /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/gnu/stubs.h \
+ /usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/include/gstreamer-1.0/gst/gst.h /usr/include/glib-2.0/glib.h \
+ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
+ /usr/lib/arm-linux-gnueabihf/glib-2.0/include/glibconfig.h \
+ /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
+ /usr/include/arm-linux-gnueabihf/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/glib-2.0/glib/garray.h \
+ /usr/include/glib-2.0/glib/gasyncqueue.h \
+ /usr/include/glib-2.0/glib/gthread.h \
+ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
+ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigset.h \
+ /usr/include/arm-linux-gnueabihf/bits/signum.h \
+ /usr/include/arm-linux-gnueabihf/bits/siginfo.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigaction.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigcontext.h \
+ /usr/include/arm-linux-gnueabihf/asm/sigcontext.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigstack.h \
+ /usr/include/arm-linux-gnueabihf/sys/ucontext.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigthread.h \
+ /usr/include/glib-2.0/glib/gbase64.h \
+ /usr/include/glib-2.0/glib/gbitlock.h \
+ /usr/include/glib-2.0/glib/gbookmarkfile.h \
+ /usr/include/glib-2.0/glib/gbytes.h \
+ /usr/include/glib-2.0/glib/gcharset.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/gconvert.h \
+ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
+ /usr/include/glib-2.0/glib/gdatetime.h \
+ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \
+ /usr/include/dirent.h /usr/include/arm-linux-gnueabihf/bits/dirent.h \
+ /usr/include/glib-2.0/glib/genviron.h \
+ /usr/include/glib-2.0/glib/gfileutils.h \
+ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
+ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
+ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/ghook.h \
+ /usr/include/glib-2.0/glib/ghostutils.h \
+ /usr/include/glib-2.0/glib/giochannel.h \
+ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
+ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
+ /usr/include/glib-2.0/glib/gunicode.h \
+ /usr/include/glib-2.0/glib/gkeyfile.h \
+ /usr/include/glib-2.0/glib/gmappedfile.h \
+ /usr/include/glib-2.0/glib/gmarkup.h \
+ /usr/include/glib-2.0/glib/gmessages.h \
+ /usr/include/glib-2.0/glib/goption.h \
+ /usr/include/glib-2.0/glib/gpattern.h \
+ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
+ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
+ /usr/include/glib-2.0/glib/gregex.h \
+ /usr/include/glib-2.0/glib/gscanner.h \
+ /usr/include/glib-2.0/glib/gsequence.h \
+ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
+ /usr/include/glib-2.0/glib/gspawn.h \
+ /usr/include/glib-2.0/glib/gstrfuncs.h \
+ /usr/include/glib-2.0/glib/gstringchunk.h \
+ /usr/include/glib-2.0/glib/gtestutils.h \
+ /usr/include/glib-2.0/glib/gthreadpool.h \
+ /usr/include/glib-2.0/glib/gtimer.h \
+ /usr/include/glib-2.0/glib/gtrashstack.h \
+ /usr/include/glib-2.0/glib/gtree.h \
+ /usr/include/glib-2.0/glib/gurifuncs.h \
+ /usr/include/glib-2.0/glib/gvarianttype.h \
+ /usr/include/glib-2.0/glib/gvariant.h \
+ /usr/include/glib-2.0/glib/gversion.h \
+ /usr/include/glib-2.0/glib/deprecated/gallocator.h \
+ /usr/include/glib-2.0/glib/deprecated/gcache.h \
+ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \
+ /usr/include/glib-2.0/glib/deprecated/gmain.h \
+ /usr/include/glib-2.0/glib/deprecated/grel.h \
+ /usr/include/glib-2.0/glib/deprecated/gthread.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/sys/select.h \
+ /usr/include/arm-linux-gnueabihf/bits/select.h \
+ /usr/include/arm-linux-gnueabihf/bits/select2.h \
+ /usr/include/arm-linux-gnueabihf/sys/sysmacros.h /usr/include/pthread.h \
+ /usr/include/sched.h /usr/include/arm-linux-gnueabihf/bits/sched.h \
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /usr/include/glib-2.0/glib/glib-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/glib-compat.h \
+ /usr/include/gstreamer-1.0/gst/gstenumtypes.h \
+ /usr/include/glib-2.0/glib-object.h \
+ /usr/include/glib-2.0/gobject/gbinding.h \
+ /usr/include/glib-2.0/gobject/gobject.h \
+ /usr/include/glib-2.0/gobject/gtype.h \
+ /usr/include/glib-2.0/gobject/gvalue.h \
+ /usr/include/glib-2.0/gobject/gparam.h \
+ /usr/include/glib-2.0/gobject/gclosure.h \
+ /usr/include/glib-2.0/gobject/gsignal.h \
+ /usr/include/glib-2.0/gobject/gmarshal.h \
+ /usr/include/glib-2.0/gobject/gboxed.h \
+ /usr/include/glib-2.0/gobject/glib-types.h \
+ /usr/include/glib-2.0/gobject/genums.h \
+ /usr/include/glib-2.0/gobject/gparamspecs.h \
+ /usr/include/glib-2.0/gobject/gsourceclosure.h \
+ /usr/include/glib-2.0/gobject/gtypemodule.h \
+ /usr/include/glib-2.0/gobject/gtypeplugin.h \
+ /usr/include/glib-2.0/gobject/gvaluearray.h \
+ /usr/include/glib-2.0/gobject/gvaluetypes.h \
+ /usr/include/glib-2.0/gobject/gobject-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/gstversion.h \
+ /usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
+ /usr/include/gstreamer-1.0/gst/gstbin.h \
+ /usr/include/gstreamer-1.0/gst/gstelement.h \
+ /usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include/gst/gstconfig.h \
+ /usr/include/gstreamer-1.0/gst/gstobject.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
+ /usr/include/gstreamer-1.0/gst/gstclock.h \
+ /usr/include/gstreamer-1.0/gst/gstpad.h \
+ /usr/include/gstreamer-1.0/gst/gstbuffer.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstallocator.h \
+ /usr/include/gstreamer-1.0/gst/gstmemory.h \
+ /usr/include/gstreamer-1.0/gst/gstmeta.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferlist.h \
+ /usr/include/gstreamer-1.0/gst/gstcaps.h \
+ /usr/include/gstreamer-1.0/gst/gststructure.h \
+ /usr/include/gstreamer-1.0/gst/gstdatetime.h \
+ /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
+ /usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
+ /usr/include/gstreamer-1.0/gst/gstevent.h \
+ /usr/include/gstreamer-1.0/gst/gstformat.h \
+ /usr/include/gstreamer-1.0/gst/gstiterator.h \
+ /usr/include/gstreamer-1.0/gst/gsttaglist.h \
+ /usr/include/gstreamer-1.0/gst/gstsample.h \
+ /usr/include/gstreamer-1.0/gst/gstsegment.h \
+ /usr/include/gstreamer-1.0/gst/gstmessage.h \
+ /usr/include/gstreamer-1.0/gst/gstquery.h \
+ /usr/include/gstreamer-1.0/gst/gsttoc.h \
+ /usr/include/gstreamer-1.0/gst/gstcontext.h \
+ /usr/include/gstreamer-1.0/gst/gstdevice.h \
+ /usr/include/gstreamer-1.0/gst/gsttask.h \
+ /usr/include/gstreamer-1.0/gst/gsttaskpool.h \
+ /usr/include/gstreamer-1.0/gst/gstbus.h \
+ /usr/include/gstreamer-1.0/gst/gstelementfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstplugin.h \
+ /usr/include/gstreamer-1.0/gst/gstmacros.h \
+ /usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
+ /usr/include/gstreamer-1.0/gst/gsturi.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferpool.h \
+ /usr/include/gstreamer-1.0/gst/gstchildproxy.h \
+ /usr/include/gstreamer-1.0/gst/gstdebugutils.h \
+ /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
+ /usr/include/gstreamer-1.0/gst/gsterror.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/gstreamer-1.0/gst/gstghostpad.h \
+ /usr/include/gstreamer-1.0/gst/gstinfo.h \
+ /usr/include/gstreamer-1.0/gst/gstparamspecs.h \
+ /usr/include/gstreamer-1.0/gst/gstvalue.h \
+ /usr/include/gstreamer-1.0/gst/gstpipeline.h \
+ /usr/include/gstreamer-1.0/gst/gstpoll.h \
+ /usr/include/gstreamer-1.0/gst/gstpreset.h \
+ /usr/include/gstreamer-1.0/gst/gstprotection.h \
+ /usr/include/gstreamer-1.0/gst/gstregistry.h \
+ /usr/include/gstreamer-1.0/gst/gstsystemclock.h \
+ /usr/include/gstreamer-1.0/gst/gsttagsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttocsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttracer.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefind.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstutils.h \
+ /usr/include/gstreamer-1.0/gst/gstparse.h \
+ /usr/include/gstreamer-1.0/gst/gstcompat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
+ /usr/include/wchar.h /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
+ /usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/alloca.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ gstpocketsphinx.h ../../include/pocketsphinx.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ ../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
+ ../../include/ps_lattice.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ ../../include/ps_mllr.h ../../include/ps_search.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+
+/usr/include/stdc-predef.h:
+
+../../include/config.h:
+
+/usr/include/string.h:
+
+/usr/include/features.h:
+
+/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
+
+/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+
+/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
+
+/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+
+/usr/include/xlocale.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string2.h:
+
+/usr/include/stdlib.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string3.h:
+
+/usr/include/gstreamer-1.0/gst/gst.h:
+
+/usr/include/glib-2.0/glib.h:
+
+/usr/include/glib-2.0/glib/galloca.h:
+
+/usr/include/glib-2.0/glib/gtypes.h:
+
+/usr/lib/arm-linux-gnueabihf/glib-2.0/include/glibconfig.h:
+
+/usr/include/glib-2.0/glib/gmacros.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+
+/usr/include/limits.h:
+
+/usr/include/arm-linux-gnueabihf/bits/posix1_lim.h:
+
+/usr/include/arm-linux-gnueabihf/bits/local_lim.h:
+
+/usr/include/linux/limits.h:
+
+/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+
+/usr/include/glib-2.0/glib/gversionmacros.h:
+
+/usr/include/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
+/usr/include/glib-2.0/glib/garray.h:
+
+/usr/include/glib-2.0/glib/gasyncqueue.h:
+
+/usr/include/glib-2.0/glib/gthread.h:
+
+/usr/include/glib-2.0/glib/gatomic.h:
+
+/usr/include/glib-2.0/glib/gerror.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+
+/usr/include/glib-2.0/glib/gquark.h:
+
+/usr/include/glib-2.0/glib/gutils.h:
+
+/usr/include/glib-2.0/glib/gbacktrace.h:
+
+/usr/include/signal.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+
+/usr/include/arm-linux-gnueabihf/bits/signum.h:
+
+/usr/include/arm-linux-gnueabihf/bits/siginfo.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigaction.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigcontext.h:
+
+/usr/include/arm-linux-gnueabihf/asm/sigcontext.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigstack.h:
+
+/usr/include/arm-linux-gnueabihf/sys/ucontext.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigthread.h:
+
+/usr/include/glib-2.0/glib/gbase64.h:
+
+/usr/include/glib-2.0/glib/gbitlock.h:
+
+/usr/include/glib-2.0/glib/gbookmarkfile.h:
+
+/usr/include/glib-2.0/glib/gbytes.h:
+
+/usr/include/glib-2.0/glib/gcharset.h:
+
+/usr/include/glib-2.0/glib/gchecksum.h:
+
+/usr/include/glib-2.0/glib/gconvert.h:
+
+/usr/include/glib-2.0/glib/gdataset.h:
+
+/usr/include/glib-2.0/glib/gdate.h:
+
+/usr/include/glib-2.0/glib/gdatetime.h:
+
+/usr/include/glib-2.0/glib/gtimezone.h:
+
+/usr/include/glib-2.0/glib/gdir.h:
+
+/usr/include/dirent.h:
+
+/usr/include/arm-linux-gnueabihf/bits/dirent.h:
+
+/usr/include/glib-2.0/glib/genviron.h:
+
+/usr/include/glib-2.0/glib/gfileutils.h:
+
+/usr/include/glib-2.0/glib/ggettext.h:
+
+/usr/include/glib-2.0/glib/ghash.h:
+
+/usr/include/glib-2.0/glib/glist.h:
+
+/usr/include/glib-2.0/glib/gmem.h:
+
+/usr/include/glib-2.0/glib/gnode.h:
+
+/usr/include/glib-2.0/glib/ghmac.h:
+
+/usr/include/glib-2.0/glib/gchecksum.h:
+
+/usr/include/glib-2.0/glib/ghook.h:
+
+/usr/include/glib-2.0/glib/ghostutils.h:
+
+/usr/include/glib-2.0/glib/giochannel.h:
+
+/usr/include/glib-2.0/glib/gmain.h:
+
+/usr/include/glib-2.0/glib/gpoll.h:
+
+/usr/include/glib-2.0/glib/gslist.h:
+
+/usr/include/glib-2.0/glib/gstring.h:
+
+/usr/include/glib-2.0/glib/gunicode.h:
+
+/usr/include/glib-2.0/glib/gkeyfile.h:
+
+/usr/include/glib-2.0/glib/gmappedfile.h:
+
+/usr/include/glib-2.0/glib/gmarkup.h:
+
+/usr/include/glib-2.0/glib/gmessages.h:
+
+/usr/include/glib-2.0/glib/goption.h:
+
+/usr/include/glib-2.0/glib/gpattern.h:
+
+/usr/include/glib-2.0/glib/gprimes.h:
+
+/usr/include/glib-2.0/glib/gqsort.h:
+
+/usr/include/glib-2.0/glib/gqueue.h:
+
+/usr/include/glib-2.0/glib/grand.h:
+
+/usr/include/glib-2.0/glib/gregex.h:
+
+/usr/include/glib-2.0/glib/gscanner.h:
+
+/usr/include/glib-2.0/glib/gsequence.h:
+
+/usr/include/glib-2.0/glib/gshell.h:
+
+/usr/include/glib-2.0/glib/gslice.h:
+
+/usr/include/glib-2.0/glib/gspawn.h:
+
+/usr/include/glib-2.0/glib/gstrfuncs.h:
+
+/usr/include/glib-2.0/glib/gstringchunk.h:
+
+/usr/include/glib-2.0/glib/gtestutils.h:
+
+/usr/include/glib-2.0/glib/gthreadpool.h:
+
+/usr/include/glib-2.0/glib/gtimer.h:
+
+/usr/include/glib-2.0/glib/gtrashstack.h:
+
+/usr/include/glib-2.0/glib/gtree.h:
+
+/usr/include/glib-2.0/glib/gurifuncs.h:
+
+/usr/include/glib-2.0/glib/gvarianttype.h:
+
+/usr/include/glib-2.0/glib/gvariant.h:
+
+/usr/include/glib-2.0/glib/gversion.h:
+
+/usr/include/glib-2.0/glib/deprecated/gallocator.h:
+
+/usr/include/glib-2.0/glib/deprecated/gcache.h:
+
+/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
+
+/usr/include/glib-2.0/glib/deprecated/gmain.h:
+
+/usr/include/glib-2.0/glib/deprecated/grel.h:
+
+/usr/include/glib-2.0/glib/deprecated/gthread.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/sys/select.h:
+
+/usr/include/arm-linux-gnueabihf/bits/select.h:
+
+/usr/include/arm-linux-gnueabihf/bits/select2.h:
+
+/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+
+/usr/include/pthread.h:
+
+/usr/include/sched.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sched.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
+
+/usr/include/glib-2.0/glib/glib-autocleanups.h:
+
+/usr/include/gstreamer-1.0/gst/glib-compat.h:
+
+/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
+
+/usr/include/glib-2.0/glib-object.h:
+
+/usr/include/glib-2.0/gobject/gbinding.h:
+
+/usr/include/glib-2.0/gobject/gobject.h:
+
+/usr/include/glib-2.0/gobject/gtype.h:
+
+/usr/include/glib-2.0/gobject/gvalue.h:
+
+/usr/include/glib-2.0/gobject/gparam.h:
+
+/usr/include/glib-2.0/gobject/gclosure.h:
+
+/usr/include/glib-2.0/gobject/gsignal.h:
+
+/usr/include/glib-2.0/gobject/gmarshal.h:
+
+/usr/include/glib-2.0/gobject/gboxed.h:
+
+/usr/include/glib-2.0/gobject/glib-types.h:
+
+/usr/include/glib-2.0/gobject/genums.h:
+
+/usr/include/glib-2.0/gobject/gparamspecs.h:
+
+/usr/include/glib-2.0/gobject/gsourceclosure.h:
+
+/usr/include/glib-2.0/gobject/gtypemodule.h:
+
+/usr/include/glib-2.0/gobject/gtypeplugin.h:
+
+/usr/include/glib-2.0/gobject/gvaluearray.h:
+
+/usr/include/glib-2.0/gobject/gvaluetypes.h:
+
+/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
+
+/usr/include/gstreamer-1.0/gst/gstversion.h:
+
+/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
+
+/usr/include/gstreamer-1.0/gst/gstbin.h:
+
+/usr/include/gstreamer-1.0/gst/gstelement.h:
+
+/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include/gst/gstconfig.h:
+
+/usr/include/gstreamer-1.0/gst/gstobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
+
+/usr/include/gstreamer-1.0/gst/gstclock.h:
+
+/usr/include/gstreamer-1.0/gst/gstpad.h:
+
+/usr/include/gstreamer-1.0/gst/gstbuffer.h:
+
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstallocator.h:
+
+/usr/include/gstreamer-1.0/gst/gstmemory.h:
+
+/usr/include/gstreamer-1.0/gst/gstmeta.h:
+
+/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
+
+/usr/include/gstreamer-1.0/gst/gstcaps.h:
+
+/usr/include/gstreamer-1.0/gst/gststructure.h:
+
+/usr/include/gstreamer-1.0/gst/gstdatetime.h:
+
+/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
+
+/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
+
+/usr/include/gstreamer-1.0/gst/gstevent.h:
+
+/usr/include/gstreamer-1.0/gst/gstformat.h:
+
+/usr/include/gstreamer-1.0/gst/gstiterator.h:
+
+/usr/include/gstreamer-1.0/gst/gsttaglist.h:
+
+/usr/include/gstreamer-1.0/gst/gstsample.h:
+
+/usr/include/gstreamer-1.0/gst/gstsegment.h:
+
+/usr/include/gstreamer-1.0/gst/gstmessage.h:
+
+/usr/include/gstreamer-1.0/gst/gstquery.h:
+
+/usr/include/gstreamer-1.0/gst/gsttoc.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontext.h:
+
+/usr/include/gstreamer-1.0/gst/gstdevice.h:
+
+/usr/include/gstreamer-1.0/gst/gsttask.h:
+
+/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
+
+/usr/include/gstreamer-1.0/gst/gstbus.h:
+
+/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstplugin.h:
+
+/usr/include/gstreamer-1.0/gst/gstmacros.h:
+
+/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
+
+/usr/include/gstreamer-1.0/gst/gsturi.h:
+
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
+
+/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
+
+/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
+
+/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
+
+/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
+
+/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
+
+/usr/include/gstreamer-1.0/gst/gsterror.h:
+
+/usr/include/errno.h:
+
+/usr/include/arm-linux-gnueabihf/bits/errno.h:
+
+/usr/include/linux/errno.h:
+
+/usr/include/arm-linux-gnueabihf/asm/errno.h:
+
+/usr/include/asm-generic/errno.h:
+
+/usr/include/asm-generic/errno-base.h:
+
+/usr/include/gstreamer-1.0/gst/gstghostpad.h:
+
+/usr/include/gstreamer-1.0/gst/gstinfo.h:
+
+/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
+
+/usr/include/gstreamer-1.0/gst/gstvalue.h:
+
+/usr/include/gstreamer-1.0/gst/gstpipeline.h:
+
+/usr/include/gstreamer-1.0/gst/gstpoll.h:
+
+/usr/include/gstreamer-1.0/gst/gstpreset.h:
+
+/usr/include/gstreamer-1.0/gst/gstprotection.h:
+
+/usr/include/gstreamer-1.0/gst/gstregistry.h:
+
+/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
+
+/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
+
+/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracer.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
+
+/usr/include/gstreamer-1.0/gst/gsttypefind.h:
+
+/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstutils.h:
+
+/usr/include/gstreamer-1.0/gst/gstparse.h:
+
+/usr/include/gstreamer-1.0/gst/gstcompat.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdio.h:
+
+/usr/include/libio.h:
+
+/usr/include/_G_config.h:
+
+/usr/include/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+
+/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
+
+/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+
+/usr/include/alloca.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+
+gstpocketsphinx.h:
+
+../../include/pocketsphinx.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+
+../../include/pocketsphinx_export.h:
+
+../../include/cmdln_macro.h:
+
+../../include/ps_lattice.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+
+../../include/ps_mllr.h:
+
+../../include/ps_search.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/setjmp.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp
new file mode 100644
index 0000000..3ca0382
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp
@@ -0,0 +1,2 @@
+gst_plugin_desc
+gst_pocketsphinx_get_type
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT
new file mode 100755
index 0000000..45e081f
Binary files /dev/null and b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT differ
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver
new file mode 100644
index 0000000..e2130df
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver
@@ -0,0 +1,4 @@
+{ global:
+gst_plugin_desc;
+gst_pocketsphinx_get_type;
+local: *; };
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/Makefile b/pocketsphinx-5prealpha/src/gst-plugin/Makefile
index 3496e57..b207798 100644
--- a/pocketsphinx-5prealpha/src/gst-plugin/Makefile
+++ b/pocketsphinx-5prealpha/src/gst-plugin/Makefile
@@ -89,7 +89,7 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = armv7l-unknown-linux-gnueabihf
host_triplet = armv7l-unknown-linux-gnueabihf
-#am__append_1 = libgstpocketsphinx.la
+am__append_1 = libgstpocketsphinx.la
subdir = src/gst-plugin
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \
@@ -148,7 +148,7 @@ libgstpocketsphinx_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(libgstpocketsphinx_la_LDFLAGS) \
$(LDFLAGS) -o $@
-#am_libgstpocketsphinx_la_rpath = -rpath $(plugindir)
+am_libgstpocketsphinx_la_rpath = -rpath $(plugindir)
AM_V_P = $(am__v_P_$(V))
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
am__v_P_0 = false
@@ -212,19 +212,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -238,12 +238,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -252,7 +252,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -260,7 +260,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -294,15 +294,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/gst-plugin
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/gst-plugin
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/gst-plugin
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/gst-plugin
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -331,7 +331,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
index 4f052c4..15aa747 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
@@ -17,9 +17,9 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/mathdef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
@@ -48,40 +48,40 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
../../include/cmdln_macro.h acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h ../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
s2_semi_mgau.h ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/ps_lattice.h \
../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
dict2pid.h ptm_mgau.h ms_mgau.h ms_senone.h
@@ -135,11 +135,11 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -213,19 +213,19 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -241,21 +241,21 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
../../include/cmdln_macro.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -265,9 +265,9 @@ acmod.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -275,15 +275,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
s2_semi_mgau.h:
@@ -293,7 +293,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -301,7 +301,7 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
index 74c5457..f872957 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
@@ -16,7 +16,7 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -37,41 +37,41 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
allphone_search.h blkarray_list.h
@@ -126,7 +126,7 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -178,9 +178,9 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -188,25 +188,25 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -222,19 +222,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -244,19 +244,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
index f61444c..5f761c0 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
@@ -15,9 +15,9 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -37,19 +37,19 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h
/usr/include/stdc-predef.h:
@@ -102,11 +102,11 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -152,13 +152,13 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -174,14 +174,14 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
index 29b9b93..5089de1 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
@@ -4,9 +4,9 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
@@ -36,8 +36,8 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h blkarray_list.h
@@ -55,11 +55,11 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -137,9 +137,9 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
index ec0ced7..5c0e1c3 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
@@ -7,7 +7,7 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
/usr/include/_G_config.h /usr/include/wchar.h \
@@ -18,13 +18,13 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h /usr/include/time.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
dict.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -43,15 +43,15 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h mdef.h
/usr/include/stdc-predef.h:
@@ -80,7 +80,7 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/stdio.h:
@@ -110,19 +110,19 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
dict.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -166,7 +166,7 @@ s3types.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -180,7 +180,7 @@ s3types.h:
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -190,9 +190,9 @@ s3types.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
index 3ab9a22..51ba361 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
@@ -15,13 +15,13 @@ dict2pid.lo: dict2pid.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -42,24 +42,24 @@ dict2pid.lo: dict2pid.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
dict.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
@@ -111,19 +111,19 @@ dict2pid.h:
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -175,7 +175,7 @@ s3types.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -191,21 +191,21 @@ s3types.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
dict.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -221,4 +221,4 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
index b5111fe..e6104c1 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
@@ -4,9 +4,9 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
@@ -36,38 +36,38 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h fsg_search_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h acmod.h bin_mdef.h \
mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
@@ -87,11 +87,11 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -169,9 +169,9 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -181,11 +181,11 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
fsg_search_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -197,19 +197,19 @@ fsg_search_internal.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -225,13 +225,13 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -241,9 +241,9 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
index 50b7d89..7e74985 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
@@ -16,7 +16,7 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -36,30 +36,30 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
fsg_lextree.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h
@@ -113,7 +113,7 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -159,13 +159,13 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -181,23 +181,23 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
fsg_lextree.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -215,7 +215,7 @@ hmm.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
index 46bff1e..d501d06 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
@@ -16,7 +16,7 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -37,38 +37,38 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
ps_lattice_internal.h fsg_search_internal.h fsg_history.h \
@@ -124,7 +124,7 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -176,9 +176,9 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -186,19 +186,19 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -214,19 +214,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -236,19 +236,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
index 42c1fad..1f7bc88 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
@@ -32,13 +32,13 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
@@ -49,14 +49,14 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
/usr/include/stdc-predef.h:
@@ -142,7 +142,7 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -150,13 +150,13 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -190,20 +190,20 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
index 796c89b..a45aa07 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
@@ -1,6 +1,6 @@
kws_detections.lo: kws_detections.c /usr/include/stdc-predef.h \
kws_detections.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
/usr/include/stdlib.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
@@ -26,48 +26,48 @@ kws_detections.lo: kws_detections.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
/usr/include/wchar.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
@@ -79,7 +79,7 @@ kws_detections.lo: kws_detections.c /usr/include/stdc-predef.h \
kws_detections.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/stdlib.h:
@@ -137,15 +137,15 @@ kws_detections.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
@@ -165,9 +165,9 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -183,17 +183,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -203,15 +203,15 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -223,9 +223,9 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -233,11 +233,11 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
index 78c2278..5651974 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
@@ -16,7 +16,7 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -37,41 +37,41 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
kws_search.h kws_detections.h
@@ -126,7 +126,7 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -178,9 +178,9 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -188,25 +188,25 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -222,19 +222,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -244,19 +244,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
index 028bbf4..0d53ce2 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
@@ -32,19 +32,19 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
/usr/include/stdc-predef.h:
@@ -134,7 +134,7 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -142,13 +142,13 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -164,6 +164,6 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
index 3ab54cd..f4205db 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
@@ -19,7 +19,7 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
/usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
/usr/include/_G_config.h /usr/include/wchar.h \
@@ -28,11 +28,11 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -53,34 +53,34 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h ms_gauden.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h dict2pid.h
/usr/include/stdc-predef.h:
@@ -135,7 +135,7 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
/usr/include/stdio.h:
@@ -159,15 +159,15 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -219,7 +219,7 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -229,13 +229,13 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
ms_gauden.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -251,21 +251,21 @@ ms_gauden.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -275,19 +275,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
index 32b1da2..940af73 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
@@ -1,5 +1,5 @@
ms_mgau.lo: ms_mgau.c /usr/include/stdc-predef.h ms_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
/usr/include/stdio.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
@@ -14,28 +14,28 @@ ms_mgau.lo: ms_mgau.c /usr/include/stdc-predef.h ms_mgau.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -55,23 +55,23 @@ ms_mgau.lo: ms_mgau.c /usr/include/stdc-predef.h ms_mgau.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
/usr/include/assert.h dict2pid.h ms_senone.h
@@ -79,7 +79,7 @@ ms_mgau.lo: ms_mgau.c /usr/include/stdc-predef.h ms_mgau.h \
ms_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
@@ -115,19 +115,19 @@ ms_mgau.h:
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -143,13 +143,13 @@ ms_mgau.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
@@ -163,7 +163,7 @@ acmod.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -209,7 +209,7 @@ acmod.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -225,9 +225,9 @@ acmod.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -235,15 +235,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -251,7 +251,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -261,7 +261,7 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
index bc1f448..0cae75b 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
@@ -16,13 +16,13 @@ ms_senone.lo: ms_senone.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
ms_senone.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -43,35 +43,35 @@ ms_senone.lo: ms_senone.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
ms_gauden.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h
@@ -125,19 +125,19 @@ ms_senone.lo: ms_senone.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
ms_senone.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -189,7 +189,7 @@ ms_senone.h:
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -197,17 +197,17 @@ ms_senone.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
ms_gauden.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -223,19 +223,19 @@ ms_gauden.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -245,19 +245,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
index 6e732b2..0197456 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
@@ -8,7 +8,7 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -30,11 +30,11 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
@@ -45,29 +45,29 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
ps_lattice_internal.h ngram_search.h ngram_search_fwdtree.h \
@@ -101,7 +101,7 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -151,15 +151,15 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -193,11 +193,11 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -213,19 +213,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -235,17 +235,17 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
index 07001ae..974eb22 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
@@ -8,7 +8,7 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -30,11 +30,11 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
@@ -45,30 +45,30 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
ngram_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
ps_lattice_internal.h
@@ -101,7 +101,7 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -151,15 +151,15 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -193,19 +193,19 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
ngram_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -221,17 +221,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -245,9 +245,9 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
index d852734..c8ed060 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
@@ -8,7 +8,7 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -30,11 +30,11 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
@@ -45,30 +45,30 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
ngram_search_fwdtree.h ngram_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
phone_loop_search.h
@@ -101,7 +101,7 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -151,15 +151,15 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -195,19 +195,19 @@ ngram_search_fwdtree.h:
ngram_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -223,17 +223,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -247,9 +247,9 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
index 8dd2589..c56a402 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
@@ -1,5 +1,5 @@
phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
@@ -33,40 +33,40 @@ phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
phone_loop_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h acmod.h bin_mdef.h \
mdef.h tmat.h hmm.h dict.h s3types.h \
@@ -75,7 +75,7 @@ phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
/usr/include/stdc-predef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
@@ -163,29 +163,29 @@ phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
phone_loop_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -201,17 +201,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -225,7 +225,7 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -237,9 +237,9 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
index ce43fc6..1ff72bb 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
@@ -13,7 +13,7 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -34,48 +34,48 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../include/cmdln_macro.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
ps_lattice_internal.h phone_loop_search.h kws_search.h kws_detections.h \
@@ -121,7 +121,7 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdlib.h:
@@ -175,29 +175,29 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -209,13 +209,13 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -223,15 +223,15 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../include/cmdln_macro.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -247,9 +247,9 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx.h:
@@ -257,9 +257,9 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
@@ -267,7 +267,7 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
index 8be959d..1459fab 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
@@ -1,5 +1,5 @@
ps_alignment.lo: ps_alignment.c /usr/include/stdc-predef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/stdlib.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
@@ -27,9 +27,9 @@ ps_alignment.lo: ps_alignment.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
ps_alignment.h dict2pid.h /usr/include/stdio.h /usr/include/libio.h \
/usr/include/_G_config.h /usr/include/wchar.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
@@ -37,36 +37,36 @@ ps_alignment.lo: ps_alignment.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
dict.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/stdlib.h:
@@ -130,11 +130,11 @@ ps_alignment.lo: ps_alignment.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
ps_alignment.h:
@@ -158,11 +158,11 @@ dict2pid.h:
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
@@ -180,7 +180,7 @@ s3types.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -196,21 +196,21 @@ s3types.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
dict.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -226,4 +226,4 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
index 524f7f9..c4d3906 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
@@ -18,7 +18,7 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/mathdef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -40,13 +40,13 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
/usr/include/wchar.h /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
@@ -55,32 +55,32 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
ps_lattice_internal.h ngram_search.h
@@ -135,7 +135,7 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -185,19 +185,19 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdio.h:
@@ -227,7 +227,7 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
@@ -235,11 +235,11 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -255,19 +255,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -277,17 +277,17 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
index 2b2ca71..d4c849c 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
@@ -12,7 +12,7 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -32,40 +32,40 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
@@ -103,7 +103,7 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/stdlib.h:
@@ -151,21 +151,21 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -181,13 +181,13 @@ acmod.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
@@ -199,7 +199,7 @@ acmod.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -215,9 +215,9 @@ acmod.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -225,12 +225,12 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
index ee83433..91d8f74 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
@@ -48,42 +48,42 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/mathdef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
tied_mgau_common.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
ptm_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
dict2pid.h
@@ -211,17 +211,17 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -229,11 +229,11 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -249,27 +249,27 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
tied_mgau_common.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
ptm_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
../../include/pocketsphinx_export.h:
@@ -277,15 +277,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -293,7 +293,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -303,7 +303,7 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
index fe608c4..e1a6402 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
@@ -49,41 +49,41 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/mathdef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
s2_semi_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
dict2pid.h tied_mgau_common.h
@@ -211,17 +211,17 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -229,11 +229,11 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -249,25 +249,25 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
s2_semi_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
../../include/pocketsphinx_export.h:
@@ -275,15 +275,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -291,7 +291,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -301,7 +301,7 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
index da083cb..edd49a3 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
@@ -1,9 +1,9 @@
state_align_search.lo: state_align_search.c /usr/include/stdc-predef.h \
state_align_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
/usr/include/stdio.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
@@ -18,20 +18,20 @@ state_align_search.lo: state_align_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -49,25 +49,25 @@ state_align_search.lo: state_align_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
@@ -79,13 +79,13 @@ state_align_search.lo: state_align_search.c /usr/include/stdc-predef.h \
state_align_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
@@ -121,11 +121,11 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -141,15 +141,15 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/stdlib.h:
@@ -191,9 +191,9 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -203,15 +203,15 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -223,9 +223,9 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -233,11 +233,11 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
index d79046e..8933b67 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
@@ -7,11 +7,11 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
/usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
/usr/include/_G_config.h /usr/include/wchar.h \
@@ -20,7 +20,7 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -41,25 +41,25 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
vector.h
/usr/include/stdc-predef.h:
@@ -88,15 +88,15 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
@@ -120,7 +120,7 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -172,7 +172,7 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -180,15 +180,15 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -204,18 +204,18 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
vector.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
index f829c53..96db005 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
@@ -42,17 +42,17 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/mathdef.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
vector.h
/usr/include/stdc-predef.h:
@@ -165,7 +165,7 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -179,9 +179,9 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -189,10 +189,10 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
vector.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3 b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3
new file mode 120000
index 0000000..1b88dfd
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3
@@ -0,0 +1 @@
+libpocketsphinx.so.3.0.0
\ No newline at end of file
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0 b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0
new file mode 100755
index 0000000..5433456
Binary files /dev/null and b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0 differ
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T
new file mode 100755
index 0000000..74b8901
Binary files /dev/null and b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T differ
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
index 10a752f..7303315 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
@@ -215,19 +215,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -241,12 +241,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -255,7 +255,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -263,7 +263,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -297,15 +297,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/libpocketsphinx
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/libpocketsphinx
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -334,7 +334,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/batch.Po b/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
index 0b83380..e250ac5 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
@@ -12,13 +12,13 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h /usr/include/time.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -39,42 +39,42 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
/usr/include/string.h /usr/include/xlocale.h \
/usr/include/arm-linux-gnueabihf/bits/string.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../src/libpocketsphinx/pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../src/libpocketsphinx/acmod.h ../../src/libpocketsphinx/bin_mdef.h \
../../src/libpocketsphinx/mdef.h ../../src/libpocketsphinx/tmat.h \
../../src/libpocketsphinx/hmm.h ../../src/libpocketsphinx/dict.h \
@@ -118,7 +118,7 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
@@ -126,13 +126,13 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdlib.h:
@@ -184,21 +184,21 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -214,11 +214,11 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -226,15 +226,15 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
@@ -246,11 +246,11 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -258,13 +258,13 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../src/libpocketsphinx/pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../src/libpocketsphinx/acmod.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po b/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
index 5337f3d..0d0b36d 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
@@ -21,7 +21,7 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/sigset.h /usr/include/time.h \
/usr/include/arm-linux-gnueabihf/bits/time.h \
/usr/include/arm-linux-gnueabihf/bits/select2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -37,37 +37,37 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
@@ -131,7 +131,7 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/select2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -171,23 +171,23 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -203,11 +203,11 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -215,21 +215,21 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -237,6 +237,6 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po b/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
index ca6812d..496bd6d 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
@@ -17,29 +17,29 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/string3.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
/usr/include/arm-linux-gnueabihf/bits/endian.h \
@@ -57,12 +57,12 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../src/libpocketsphinx/bin_mdef.h ../../src/libpocketsphinx/mdef.h
/usr/include/stdc-predef.h:
@@ -115,19 +115,19 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
@@ -143,11 +143,11 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -155,17 +155,17 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
@@ -205,9 +205,9 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
@@ -215,9 +215,9 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../src/libpocketsphinx/bin_mdef.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch
new file mode 100755
index 0000000..fb0aa58
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch differ
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous
new file mode 100755
index 0000000..41205d7
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous differ
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert
new file mode 100755
index 0000000..fbc6aa4
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert differ
diff --git a/pocketsphinx-5prealpha/src/programs/Makefile b/pocketsphinx-5prealpha/src/programs/Makefile
index 6d6a830..8261bf0 100644
--- a/pocketsphinx-5prealpha/src/programs/Makefile
+++ b/pocketsphinx-5prealpha/src/programs/Makefile
@@ -192,19 +192,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -218,12 +218,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -232,7 +232,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -240,7 +240,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -274,15 +274,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/programs
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/programs
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -311,7 +311,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch b/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch
new file mode 100755
index 0000000..306d8ef
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# pocketsphinx_batch - temporary wrapper script for .libs/pocketsphinx_batch
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The pocketsphinx_batch program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../src/libpocketsphinx -I../../include -g -O2 -Wall -o \$progdir/\$file batch.o -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase ../../src/libpocketsphinx/.libs/libpocketsphinx.so /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_batch:pocketsphinx_batch:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_batch:pocketsphinx_batch:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_batch:pocketsphinx_batch:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'pocketsphinx_batch'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous b/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous
new file mode 100755
index 0000000..6d420d2
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# pocketsphinx_continuous - temporary wrapper script for .libs/pocketsphinx_continuous
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The pocketsphinx_continuous program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../src/libpocketsphinx -I../../include -g -O2 -Wall -o \$progdir/\$file continuous.o -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase ../../src/libpocketsphinx/.libs/libpocketsphinx.so /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad/libsphinxad.la /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'pocketsphinx_continuous'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert b/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert
new file mode 100755
index 0000000..acc3249
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# pocketsphinx_mdef_convert - temporary wrapper script for .libs/pocketsphinx_mdef_convert
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The pocketsphinx_mdef_convert program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../src/libpocketsphinx -I../../include -g -O2 -Wall -o \$progdir/\$file mdef_convert.o -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase ../../src/libpocketsphinx/.libs/libpocketsphinx.so /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'pocketsphinx_mdef_convert'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/swig/Makefile b/pocketsphinx-5prealpha/swig/Makefile
index 3ac51c0..46e09be 100644
--- a/pocketsphinx-5prealpha/swig/Makefile
+++ b/pocketsphinx-5prealpha/swig/Makefile
@@ -215,19 +215,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -241,12 +241,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -255,7 +255,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -263,7 +263,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -297,15 +297,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -334,7 +334,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo b/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
index 72df4e2..5eb717e 100644
--- a/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
+++ b/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
@@ -112,27 +112,27 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h
/usr/include/stdc-predef.h:
@@ -455,25 +455,25 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -481,24 +481,24 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0 b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0
new file mode 120000
index 0000000..bfc927b
--- /dev/null
+++ b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0
@@ -0,0 +1 @@
+_pocketsphinx.so.0.0.0
\ No newline at end of file
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0 b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0
new file mode 100755
index 0000000..c636dc3
Binary files /dev/null and b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0 differ
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T
new file mode 100755
index 0000000..6f0f6f8
Binary files /dev/null and b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T differ
diff --git a/pocketsphinx-5prealpha/swig/python/Makefile b/pocketsphinx-5prealpha/swig/python/Makefile
index 62eeb51..e1a4333 100644
--- a/pocketsphinx-5prealpha/swig/python/Makefile
+++ b/pocketsphinx-5prealpha/swig/python/Makefile
@@ -259,19 +259,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -285,12 +285,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -299,7 +299,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -307,7 +307,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -341,15 +341,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -378,7 +378,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -406,7 +406,7 @@ top_builddir = ../..
top_srcdir = ../..
SUBDIRS = test
SWIG_FLAGS = -I$(top_srcdir)/include \
- -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig $(am__append_1)
+ -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig $(am__append_1)
SWIG_DIR = $(top_srcdir)/swig
SWIG_FILES = $(SWIG_DIR)/pocketsphinx.i \
$(SWIG_DIR)/ps_decoder.i \
diff --git a/pocketsphinx-5prealpha/swig/python/pocketsphinx.py b/pocketsphinx-5prealpha/swig/python/pocketsphinx.py
new file mode 100644
index 0000000..a23f67a
--- /dev/null
+++ b/pocketsphinx-5prealpha/swig/python/pocketsphinx.py
@@ -0,0 +1,490 @@
+# This file was automatically generated by SWIG (http://www.swig.org).
+# Version 2.0.11
+#
+# Do not make changes to this file unless you know what you are doing--modify
+# the SWIG interface file instead.
+
+
+
+
+"""
+This documentation was automatically generated using original comments in
+Doxygen format. As some C types and data structures cannot be directly mapped
+into Python types, some non-trivial type conversion could have place.
+Basically a type is replaced with another one that has the closest match, and
+sometimes one argument of generated function comprises several arguments of the
+original function (usually two).
+
+Functions having error code as the return value and returning effective
+value in one of its arguments are transformed so that the effective value is
+returned in a regular fashion and run-time exception is being thrown in case of
+negative error code.
+"""
+
+
+from sys import version_info
+if version_info >= (2,6,0):
+ def swig_import_helper():
+ from os.path import dirname
+ import imp
+ fp = None
+ try:
+ fp, pathname, description = imp.find_module('_pocketsphinx', [dirname(__file__)])
+ except ImportError:
+ import _pocketsphinx
+ return _pocketsphinx
+ if fp is not None:
+ try:
+ _mod = imp.load_module('_pocketsphinx', fp, pathname, description)
+ finally:
+ fp.close()
+ return _mod
+ _pocketsphinx = swig_import_helper()
+ del swig_import_helper
+else:
+ import _pocketsphinx
+del version_info
+try:
+ _swig_property = property
+except NameError:
+ pass # Python < 2.2 doesn't have 'property'.
+def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
+ if (name == "thisown"): return self.this.own(value)
+ if (name == "this"):
+ if type(value).__name__ == 'SwigPyObject':
+ self.__dict__[name] = value
+ return
+ method = class_type.__swig_setmethods__.get(name,None)
+ if method: return method(self,value)
+ if (not static):
+ self.__dict__[name] = value
+ else:
+ raise AttributeError("You cannot add attributes to %s" % self)
+
+def _swig_setattr(self,class_type,name,value):
+ return _swig_setattr_nondynamic(self,class_type,name,value,0)
+
+def _swig_getattr(self,class_type,name):
+ if (name == "thisown"): return self.this.own()
+ method = class_type.__swig_getmethods__.get(name,None)
+ if method: return method(self)
+ raise AttributeError(name)
+
+def _swig_repr(self):
+ try: strthis = "proxy of " + self.this.__repr__()
+ except: strthis = ""
+ return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
+
+try:
+ _object = object
+ _newclass = 1
+except AttributeError:
+ class _object : pass
+ _newclass = 0
+
+
+import sphinxbase
+class Hypothesis(_object):
+ """Proxy of C Hypothesis struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Hypothesis, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Hypothesis, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["hypstr"] = _pocketsphinx.Hypothesis_hypstr_set
+ __swig_getmethods__["hypstr"] = _pocketsphinx.Hypothesis_hypstr_get
+ if _newclass:hypstr = _swig_property(_pocketsphinx.Hypothesis_hypstr_get, _pocketsphinx.Hypothesis_hypstr_set)
+ __swig_setmethods__["best_score"] = _pocketsphinx.Hypothesis_best_score_set
+ __swig_getmethods__["best_score"] = _pocketsphinx.Hypothesis_best_score_get
+ if _newclass:best_score = _swig_property(_pocketsphinx.Hypothesis_best_score_get, _pocketsphinx.Hypothesis_best_score_set)
+ __swig_setmethods__["prob"] = _pocketsphinx.Hypothesis_prob_set
+ __swig_getmethods__["prob"] = _pocketsphinx.Hypothesis_prob_get
+ if _newclass:prob = _swig_property(_pocketsphinx.Hypothesis_prob_get, _pocketsphinx.Hypothesis_prob_set)
+ def __init__(self, *args):
+ """__init__(Hypothesis self, char const * hypstr, int best_score, int prob) -> Hypothesis"""
+ this = _pocketsphinx.new_Hypothesis(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Hypothesis
+ __del__ = lambda self : None;
+Hypothesis_swigregister = _pocketsphinx.Hypothesis_swigregister
+Hypothesis_swigregister(Hypothesis)
+
+class Segment(_object):
+ """Proxy of C Segment struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Segment, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Segment, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["word"] = _pocketsphinx.Segment_word_set
+ __swig_getmethods__["word"] = _pocketsphinx.Segment_word_get
+ if _newclass:word = _swig_property(_pocketsphinx.Segment_word_get, _pocketsphinx.Segment_word_set)
+ __swig_setmethods__["ascore"] = _pocketsphinx.Segment_ascore_set
+ __swig_getmethods__["ascore"] = _pocketsphinx.Segment_ascore_get
+ if _newclass:ascore = _swig_property(_pocketsphinx.Segment_ascore_get, _pocketsphinx.Segment_ascore_set)
+ __swig_setmethods__["lscore"] = _pocketsphinx.Segment_lscore_set
+ __swig_getmethods__["lscore"] = _pocketsphinx.Segment_lscore_get
+ if _newclass:lscore = _swig_property(_pocketsphinx.Segment_lscore_get, _pocketsphinx.Segment_lscore_set)
+ __swig_setmethods__["lback"] = _pocketsphinx.Segment_lback_set
+ __swig_getmethods__["lback"] = _pocketsphinx.Segment_lback_get
+ if _newclass:lback = _swig_property(_pocketsphinx.Segment_lback_get, _pocketsphinx.Segment_lback_set)
+ __swig_setmethods__["prob"] = _pocketsphinx.Segment_prob_set
+ __swig_getmethods__["prob"] = _pocketsphinx.Segment_prob_get
+ if _newclass:prob = _swig_property(_pocketsphinx.Segment_prob_get, _pocketsphinx.Segment_prob_set)
+ __swig_setmethods__["start_frame"] = _pocketsphinx.Segment_start_frame_set
+ __swig_getmethods__["start_frame"] = _pocketsphinx.Segment_start_frame_get
+ if _newclass:start_frame = _swig_property(_pocketsphinx.Segment_start_frame_get, _pocketsphinx.Segment_start_frame_set)
+ __swig_setmethods__["end_frame"] = _pocketsphinx.Segment_end_frame_set
+ __swig_getmethods__["end_frame"] = _pocketsphinx.Segment_end_frame_get
+ if _newclass:end_frame = _swig_property(_pocketsphinx.Segment_end_frame_get, _pocketsphinx.Segment_end_frame_set)
+ def fromIter(*args):
+ """fromIter(ps_seg_t * itor) -> Segment"""
+ return _pocketsphinx.Segment_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ __swig_destroy__ = _pocketsphinx.delete_Segment
+ __del__ = lambda self : None;
+ def __init__(self):
+ """__init__(Segment self) -> Segment"""
+ this = _pocketsphinx.new_Segment()
+ try: self.this.append(this)
+ except: self.this = this
+Segment_swigregister = _pocketsphinx.Segment_swigregister
+Segment_swigregister(Segment)
+
+def Segment_fromIter(*args):
+ """Segment_fromIter(ps_seg_t * itor) -> Segment"""
+ return _pocketsphinx.Segment_fromIter(*args)
+
+class NBest(_object):
+ """Proxy of C NBest struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBest, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBest, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["hypstr"] = _pocketsphinx.NBest_hypstr_set
+ __swig_getmethods__["hypstr"] = _pocketsphinx.NBest_hypstr_get
+ if _newclass:hypstr = _swig_property(_pocketsphinx.NBest_hypstr_get, _pocketsphinx.NBest_hypstr_set)
+ __swig_setmethods__["score"] = _pocketsphinx.NBest_score_set
+ __swig_getmethods__["score"] = _pocketsphinx.NBest_score_get
+ if _newclass:score = _swig_property(_pocketsphinx.NBest_score_get, _pocketsphinx.NBest_score_set)
+ def fromIter(*args):
+ """fromIter(ps_nbest_t * itor) -> NBest"""
+ return _pocketsphinx.NBest_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def hyp(self):
+ """hyp(NBest self) -> Hypothesis"""
+ return _pocketsphinx.NBest_hyp(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_NBest
+ __del__ = lambda self : None;
+ def __init__(self):
+ """__init__(NBest self) -> NBest"""
+ this = _pocketsphinx.new_NBest()
+ try: self.this.append(this)
+ except: self.this = this
+NBest_swigregister = _pocketsphinx.NBest_swigregister
+NBest_swigregister(NBest)
+
+def NBest_fromIter(*args):
+ """NBest_fromIter(ps_nbest_t * itor) -> NBest"""
+ return _pocketsphinx.NBest_fromIter(*args)
+
+class SegmentIterator(_object):
+ """Proxy of C SegmentIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SegmentIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SegmentIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _pocketsphinx.SegmentIterator_ptr_set
+ __swig_getmethods__["ptr"] = _pocketsphinx.SegmentIterator_ptr_get
+ if _newclass:ptr = _swig_property(_pocketsphinx.SegmentIterator_ptr_get, _pocketsphinx.SegmentIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(SegmentIterator self, ps_seg_t * ptr) -> SegmentIterator"""
+ this = _pocketsphinx.new_SegmentIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_SegmentIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(SegmentIterator self) -> Segment"""
+ return _pocketsphinx.SegmentIterator_next(self)
+
+ def __next__(self):
+ """__next__(SegmentIterator self) -> Segment"""
+ return _pocketsphinx.SegmentIterator___next__(self)
+
+SegmentIterator_swigregister = _pocketsphinx.SegmentIterator_swigregister
+SegmentIterator_swigregister(SegmentIterator)
+
+class NBestIterator(_object):
+ """Proxy of C NBestIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBestIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBestIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _pocketsphinx.NBestIterator_ptr_set
+ __swig_getmethods__["ptr"] = _pocketsphinx.NBestIterator_ptr_get
+ if _newclass:ptr = _swig_property(_pocketsphinx.NBestIterator_ptr_get, _pocketsphinx.NBestIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(NBestIterator self, ps_nbest_t * ptr) -> NBestIterator"""
+ this = _pocketsphinx.new_NBestIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_NBestIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(NBestIterator self) -> NBest"""
+ return _pocketsphinx.NBestIterator_next(self)
+
+ def __next__(self):
+ """__next__(NBestIterator self) -> NBest"""
+ return _pocketsphinx.NBestIterator___next__(self)
+
+NBestIterator_swigregister = _pocketsphinx.NBestIterator_swigregister
+NBestIterator_swigregister(NBestIterator)
+
+class Decoder(_object):
+ """Proxy of C Decoder struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Decoder, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Decoder, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(Decoder self) -> Decoder
+ __init__(Decoder self, Config config) -> Decoder
+ """
+ this = _pocketsphinx.new_Decoder(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Decoder
+ __del__ = lambda self : None;
+ def reinit(self, *args):
+ """reinit(Decoder self, Config config)"""
+ return _pocketsphinx.Decoder_reinit(self, *args)
+
+ def load_dict(self, *args):
+ """load_dict(Decoder self, char const * fdict, char const * ffilter, char const * format)"""
+ return _pocketsphinx.Decoder_load_dict(self, *args)
+
+ def save_dict(self, *args):
+ """save_dict(Decoder self, char const * dictfile, char const * format)"""
+ return _pocketsphinx.Decoder_save_dict(self, *args)
+
+ def add_word(self, *args):
+ """add_word(Decoder self, char const * word, char const * phones, int update)"""
+ return _pocketsphinx.Decoder_add_word(self, *args)
+
+ def lookup_word(self, *args):
+ """lookup_word(Decoder self, char const * word) -> char *"""
+ return _pocketsphinx.Decoder_lookup_word(self, *args)
+
+ def get_lattice(self):
+ """get_lattice(Decoder self) -> Lattice"""
+ return _pocketsphinx.Decoder_get_lattice(self)
+
+ def get_config(self):
+ """get_config(Decoder self) -> Config"""
+ return _pocketsphinx.Decoder_get_config(self)
+
+ def default_config():
+ """default_config() -> Config"""
+ return _pocketsphinx.Decoder_default_config()
+
+ if _newclass:default_config = staticmethod(default_config)
+ __swig_getmethods__["default_config"] = lambda x: default_config
+ def file_config(*args):
+ """file_config(char const * path) -> Config"""
+ return _pocketsphinx.Decoder_file_config(*args)
+
+ if _newclass:file_config = staticmethod(file_config)
+ __swig_getmethods__["file_config"] = lambda x: file_config
+ def start_stream(self):
+ """start_stream(Decoder self)"""
+ return _pocketsphinx.Decoder_start_stream(self)
+
+ def start_utt(self):
+ """start_utt(Decoder self)"""
+ return _pocketsphinx.Decoder_start_utt(self)
+
+ def end_utt(self):
+ """end_utt(Decoder self)"""
+ return _pocketsphinx.Decoder_end_utt(self)
+
+ def process_raw(self, *args):
+ """process_raw(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"""
+ return _pocketsphinx.Decoder_process_raw(self, *args)
+
+ def process_cep(self, *args):
+ """process_cep(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"""
+ return _pocketsphinx.Decoder_process_cep(self, *args)
+
+ def hyp(self):
+ """hyp(Decoder self) -> Hypothesis"""
+ return _pocketsphinx.Decoder_hyp(self)
+
+ def get_fe(self):
+ """get_fe(Decoder self) -> FrontEnd"""
+ return _pocketsphinx.Decoder_get_fe(self)
+
+ def get_feat(self):
+ """get_feat(Decoder self) -> Feature"""
+ return _pocketsphinx.Decoder_get_feat(self)
+
+ def get_in_speech(self):
+ """get_in_speech(Decoder self) -> bool"""
+ return _pocketsphinx.Decoder_get_in_speech(self)
+
+ def get_fsg(self, *args):
+ """get_fsg(Decoder self, char const * name) -> FsgModel"""
+ return _pocketsphinx.Decoder_get_fsg(self, *args)
+
+ def set_fsg(self, *args):
+ """set_fsg(Decoder self, char const * name, FsgModel fsg)"""
+ return _pocketsphinx.Decoder_set_fsg(self, *args)
+
+ def set_jsgf_file(self, *args):
+ """set_jsgf_file(Decoder self, char const * name, char const * path)"""
+ return _pocketsphinx.Decoder_set_jsgf_file(self, *args)
+
+ def set_jsgf_string(self, *args):
+ """set_jsgf_string(Decoder self, char const * name, char const * jsgf_string)"""
+ return _pocketsphinx.Decoder_set_jsgf_string(self, *args)
+
+ def get_kws(self, *args):
+ """get_kws(Decoder self, char const * name) -> char const *"""
+ return _pocketsphinx.Decoder_get_kws(self, *args)
+
+ def set_kws(self, *args):
+ """set_kws(Decoder self, char const * name, char const * keyfile)"""
+ return _pocketsphinx.Decoder_set_kws(self, *args)
+
+ def set_keyphrase(self, *args):
+ """set_keyphrase(Decoder self, char const * name, char const * keyphrase)"""
+ return _pocketsphinx.Decoder_set_keyphrase(self, *args)
+
+ def set_allphone_file(self, *args):
+ """set_allphone_file(Decoder self, char const * name, char const * lmfile)"""
+ return _pocketsphinx.Decoder_set_allphone_file(self, *args)
+
+ def get_lm(self, *args):
+ """get_lm(Decoder self, char const * name) -> NGramModel"""
+ return _pocketsphinx.Decoder_get_lm(self, *args)
+
+ def set_lm(self, *args):
+ """set_lm(Decoder self, char const * name, NGramModel lm)"""
+ return _pocketsphinx.Decoder_set_lm(self, *args)
+
+ def set_lm_file(self, *args):
+ """set_lm_file(Decoder self, char const * name, char const * path)"""
+ return _pocketsphinx.Decoder_set_lm_file(self, *args)
+
+ def get_logmath(self):
+ """get_logmath(Decoder self) -> LogMath"""
+ return _pocketsphinx.Decoder_get_logmath(self)
+
+ def set_search(self, *args):
+ """set_search(Decoder self, char const * search_name)"""
+ return _pocketsphinx.Decoder_set_search(self, *args)
+
+ def get_search(self):
+ """get_search(Decoder self) -> char const *"""
+ return _pocketsphinx.Decoder_get_search(self)
+
+ def n_frames(self):
+ """n_frames(Decoder self) -> int"""
+ return _pocketsphinx.Decoder_n_frames(self)
+
+ def seg(self):
+ """seg(Decoder self) -> SegmentList"""
+ return _pocketsphinx.Decoder_seg(self)
+
+ def nbest(self):
+ """nbest(Decoder self) -> NBestList"""
+ return _pocketsphinx.Decoder_nbest(self)
+
+Decoder_swigregister = _pocketsphinx.Decoder_swigregister
+Decoder_swigregister(Decoder)
+
+def Decoder_default_config():
+ """Decoder_default_config() -> Config"""
+ return _pocketsphinx.Decoder_default_config()
+
+def Decoder_file_config(*args):
+ """Decoder_file_config(char const * path) -> Config"""
+ return _pocketsphinx.Decoder_file_config(*args)
+
+class Lattice(_object):
+ """Proxy of C Lattice struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Lattice, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Lattice, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(Lattice self, char const * path) -> Lattice
+ __init__(Lattice self, Decoder decoder, char * path) -> Lattice
+ """
+ this = _pocketsphinx.new_Lattice(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Lattice
+ __del__ = lambda self : None;
+ def write(self, *args):
+ """write(Lattice self, char const * path)"""
+ return _pocketsphinx.Lattice_write(self, *args)
+
+ def write_htk(self, *args):
+ """write_htk(Lattice self, char const * path)"""
+ return _pocketsphinx.Lattice_write_htk(self, *args)
+
+Lattice_swigregister = _pocketsphinx.Lattice_swigregister
+Lattice_swigregister(Lattice)
+
+class NBestList(_object):
+ """Proxy of C NBestList struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBestList, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBestList, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(NBestList self) -> NBestIterator"""
+ return _pocketsphinx.NBestList___iter__(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_NBestList
+ __del__ = lambda self : None;
+NBestList_swigregister = _pocketsphinx.NBestList_swigregister
+NBestList_swigregister(NBestList)
+
+class SegmentList(_object):
+ """Proxy of C SegmentList struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SegmentList, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SegmentList, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(SegmentList self) -> SegmentIterator"""
+ return _pocketsphinx.SegmentList___iter__(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_SegmentList
+ __del__ = lambda self : None;
+SegmentList_swigregister = _pocketsphinx.SegmentList_swigregister
+SegmentList_swigregister(SegmentList)
+
+# This file is compatible with both classic and new-style classes.
+
+
diff --git a/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c b/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c
new file mode 100644
index 0000000..48a2631
--- /dev/null
+++ b/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c
@@ -0,0 +1,7482 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 2.0.11
+ *
+ * This file is not intended to be easily readable and contains a number of
+ * coding conventions designed to improve portability and efficiency. Do not make
+ * changes to this file unless you know what you are doing--modify the SWIG
+ * interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+#include
+
+
+
+#ifndef __cplusplus
+typedef int bool;
+#define true 1
+#define false 0
+#endif
+
+#include
+
+typedef ps_decoder_t Decoder;
+typedef ps_decoder_t SegmentList;
+typedef ps_decoder_t NBestList;
+typedef ps_lattice_t Lattice;
+
+
+#define SWIGPYTHON
+#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
+
+/* -----------------------------------------------------------------------------
+ * This section contains generic SWIG labels for method/variable
+ * declarations/attributes, and other compiler dependent labels.
+ * ----------------------------------------------------------------------------- */
+
+/* template workaround for compilers that cannot correctly implement the C++ standard */
+#ifndef SWIGTEMPLATEDISAMBIGUATOR
+# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# elif defined(__HP_aCC)
+/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
+/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# else
+# define SWIGTEMPLATEDISAMBIGUATOR
+# endif
+#endif
+
+/* inline attribute */
+#ifndef SWIGINLINE
+# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
+# define SWIGINLINE inline
+# else
+# define SWIGINLINE
+# endif
+#endif
+
+/* attribute recognised by some compilers to avoid 'unused' warnings */
+#ifndef SWIGUNUSED
+# if defined(__GNUC__)
+# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+# elif defined(__ICC)
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+#endif
+
+#ifndef SWIG_MSC_UNSUPPRESS_4505
+# if defined(_MSC_VER)
+# pragma warning(disable : 4505) /* unreferenced local function has been removed */
+# endif
+#endif
+
+#ifndef SWIGUNUSEDPARM
+# ifdef __cplusplus
+# define SWIGUNUSEDPARM(p)
+# else
+# define SWIGUNUSEDPARM(p) p SWIGUNUSED
+# endif
+#endif
+
+/* internal SWIG method */
+#ifndef SWIGINTERN
+# define SWIGINTERN static SWIGUNUSED
+#endif
+
+/* internal inline SWIG method */
+#ifndef SWIGINTERNINLINE
+# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
+#endif
+
+/* exporting methods */
+#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+# ifndef GCC_HASCLASSVISIBILITY
+# define GCC_HASCLASSVISIBILITY
+# endif
+#endif
+
+#ifndef SWIGEXPORT
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# if defined(STATIC_LINKED)
+# define SWIGEXPORT
+# else
+# define SWIGEXPORT __declspec(dllexport)
+# endif
+# else
+# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
+# define SWIGEXPORT __attribute__ ((visibility("default")))
+# else
+# define SWIGEXPORT
+# endif
+# endif
+#endif
+
+/* calling conventions for Windows */
+#ifndef SWIGSTDCALL
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# define SWIGSTDCALL __stdcall
+# else
+# define SWIGSTDCALL
+# endif
+#endif
+
+/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
+#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
+# define _CRT_SECURE_NO_DEPRECATE
+#endif
+
+/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
+#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
+# define _SCL_SECURE_NO_DEPRECATE
+#endif
+
+
+
+#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
+/* Use debug wrappers with the Python release dll */
+# undef _DEBUG
+# include
+# define _DEBUG
+#else
+# include
+#endif
+
+/* -----------------------------------------------------------------------------
+ * swigrun.swg
+ *
+ * This file contains generic C API SWIG runtime support for pointer
+ * type checking.
+ * ----------------------------------------------------------------------------- */
+
+/* This should only be incremented when either the layout of swig_type_info changes,
+ or for whatever reason, the runtime changes incompatibly */
+#define SWIG_RUNTIME_VERSION "4"
+
+/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
+#ifdef SWIG_TYPE_TABLE
+# define SWIG_QUOTE_STRING(x) #x
+# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
+# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
+#else
+# define SWIG_TYPE_TABLE_NAME
+#endif
+
+/*
+ You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
+ creating a static or dynamic library from the SWIG runtime code.
+ In 99.9% of the cases, SWIG just needs to declare them as 'static'.
+
+ But only do this if strictly necessary, ie, if you have problems
+ with your compiler or suchlike.
+*/
+
+#ifndef SWIGRUNTIME
+# define SWIGRUNTIME SWIGINTERN
+#endif
+
+#ifndef SWIGRUNTIMEINLINE
+# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
+#endif
+
+/* Generic buffer size */
+#ifndef SWIG_BUFFER_SIZE
+# define SWIG_BUFFER_SIZE 1024
+#endif
+
+/* Flags for pointer conversions */
+#define SWIG_POINTER_DISOWN 0x1
+#define SWIG_CAST_NEW_MEMORY 0x2
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_OWN 0x1
+
+
+/*
+ Flags/methods for returning states.
+
+ The SWIG conversion methods, as ConvertPtr, return an integer
+ that tells if the conversion was successful or not. And if not,
+ an error code can be returned (see swigerrors.swg for the codes).
+
+ Use the following macros/flags to set or process the returning
+ states.
+
+ In old versions of SWIG, code such as the following was usually written:
+
+ if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
+ // success code
+ } else {
+ //fail code
+ }
+
+ Now you can be more explicit:
+
+ int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ } else {
+ // fail code
+ }
+
+ which is the same really, but now you can also do
+
+ Type *ptr;
+ int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ if (SWIG_IsNewObj(res) {
+ ...
+ delete *ptr;
+ } else {
+ ...
+ }
+ } else {
+ // fail code
+ }
+
+ I.e., now SWIG_ConvertPtr can return new objects and you can
+ identify the case and take care of the deallocation. Of course that
+ also requires SWIG_ConvertPtr to return new result values, such as
+
+ int SWIG_ConvertPtr(obj, ptr,...) {
+ if () {
+ if () {
+ *ptr = ;
+ return SWIG_NEWOBJ;
+ } else {
+ *ptr = ;
+ return SWIG_OLDOBJ;
+ }
+ } else {
+ return SWIG_BADOBJ;
+ }
+ }
+
+ Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
+ more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
+ SWIG errors code.
+
+ Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
+ allows to return the 'cast rank', for example, if you have this
+
+ int food(double)
+ int fooi(int);
+
+ and you call
+
+ food(1) // cast rank '1' (1 -> 1.0)
+ fooi(1) // cast rank '0'
+
+ just use the SWIG_AddCast()/SWIG_CheckState()
+*/
+
+#define SWIG_OK (0)
+#define SWIG_ERROR (-1)
+#define SWIG_IsOK(r) (r >= 0)
+#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
+
+/* The CastRankLimit says how many bits are used for the cast rank */
+#define SWIG_CASTRANKLIMIT (1 << 8)
+/* The NewMask denotes the object was created (using new/malloc) */
+#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
+/* The TmpMask is for in/out typemaps that use temporal objects */
+#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
+/* Simple returning values */
+#define SWIG_BADOBJ (SWIG_ERROR)
+#define SWIG_OLDOBJ (SWIG_OK)
+#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
+#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
+/* Check, add and del mask methods */
+#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
+#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
+#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
+#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
+#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
+#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
+
+/* Cast-Rank Mode */
+#if defined(SWIG_CASTRANK_MODE)
+# ifndef SWIG_TypeRank
+# define SWIG_TypeRank unsigned long
+# endif
+# ifndef SWIG_MAXCASTRANK /* Default cast allowed */
+# define SWIG_MAXCASTRANK (2)
+# endif
+# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
+# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
+SWIGINTERNINLINE int SWIG_AddCast(int r) {
+ return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
+}
+SWIGINTERNINLINE int SWIG_CheckState(int r) {
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
+}
+#else /* no cast-rank mode */
+# define SWIG_AddCast(r) (r)
+# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
+#endif
+
+
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef void *(*swig_converter_func)(void *, int *);
+typedef struct swig_type_info *(*swig_dycast_func)(void **);
+
+/* Structure to store information on one type */
+typedef struct swig_type_info {
+ const char *name; /* mangled name of this type */
+ const char *str; /* human readable name of this type */
+ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
+ struct swig_cast_info *cast; /* linked list of types that can cast into this type */
+ void *clientdata; /* language specific type data */
+ int owndata; /* flag if the structure owns the clientdata */
+} swig_type_info;
+
+/* Structure to store a type and conversion function used for casting */
+typedef struct swig_cast_info {
+ swig_type_info *type; /* pointer to type that is equivalent to this type */
+ swig_converter_func converter; /* function to cast the void pointers */
+ struct swig_cast_info *next; /* pointer to next cast in linked list */
+ struct swig_cast_info *prev; /* pointer to the previous cast */
+} swig_cast_info;
+
+/* Structure used to store module information
+ * Each module generates one structure like this, and the runtime collects
+ * all of these structures and stores them in a circularly linked list.*/
+typedef struct swig_module_info {
+ swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
+ size_t size; /* Number of types in this module */
+ struct swig_module_info *next; /* Pointer to next element in circularly linked list */
+ swig_type_info **type_initial; /* Array of initially generated type structures */
+ swig_cast_info **cast_initial; /* Array of initially generated casting structures */
+ void *clientdata; /* Language specific module data */
+} swig_module_info;
+
+/*
+ Compare two type names skipping the space characters, therefore
+ "char*" == "char *" and "Class" == "Class", etc.
+
+ Return 0 when the two name types are equivalent, as in
+ strncmp, but skipping ' '.
+*/
+SWIGRUNTIME int
+SWIG_TypeNameComp(const char *f1, const char *l1,
+ const char *f2, const char *l2) {
+ for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
+ while ((*f1 == ' ') && (f1 != l1)) ++f1;
+ while ((*f2 == ' ') && (f2 != l2)) ++f2;
+ if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
+ }
+ return (int)((l1 - f1) - (l2 - f2));
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
+*/
+SWIGRUNTIME int
+SWIG_TypeCmp(const char *nb, const char *tb) {
+ int equiv = 1;
+ const char* te = tb + strlen(tb);
+ const char* ne = nb;
+ while (equiv != 0 && *ne) {
+ for (nb = ne; *ne; ++ne) {
+ if (*ne == '|') break;
+ }
+ equiv = SWIG_TypeNameComp(nb, ne, tb, te);
+ if (*ne) ++ne;
+ }
+ return equiv;
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if not equal, 1 if equal
+*/
+SWIGRUNTIME int
+SWIG_TypeEquiv(const char *nb, const char *tb) {
+ return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
+}
+
+/*
+ Check the typename
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheck(const char *c, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (strcmp(iter->type->name, c) == 0) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (iter->type == from) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Cast a pointer up an inheritance hierarchy
+*/
+SWIGRUNTIMEINLINE void *
+SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
+ return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
+}
+
+/*
+ Dynamic pointer casting. Down an inheritance hierarchy
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
+ swig_type_info *lastty = ty;
+ if (!ty || !ty->dcast) return ty;
+ while (ty && (ty->dcast)) {
+ ty = (*ty->dcast)(ptr);
+ if (ty) lastty = ty;
+ }
+ return lastty;
+}
+
+/*
+ Return the name associated with this type
+*/
+SWIGRUNTIMEINLINE const char *
+SWIG_TypeName(const swig_type_info *ty) {
+ return ty->name;
+}
+
+/*
+ Return the pretty name associated with this type,
+ that is an unmangled type name in a form presentable to the user.
+*/
+SWIGRUNTIME const char *
+SWIG_TypePrettyName(const swig_type_info *type) {
+ /* The "str" field contains the equivalent pretty names of the
+ type, separated by vertical-bar characters. We choose
+ to print the last name, as it is often (?) the most
+ specific. */
+ if (!type) return NULL;
+ if (type->str != NULL) {
+ const char *last_name = type->str;
+ const char *s;
+ for (s = type->str; *s; s++)
+ if (*s == '|') last_name = s+1;
+ return last_name;
+ }
+ else
+ return type->name;
+}
+
+/*
+ Set the clientdata field for a type
+*/
+SWIGRUNTIME void
+SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
+ swig_cast_info *cast = ti->cast;
+ /* if (ti->clientdata == clientdata) return; */
+ ti->clientdata = clientdata;
+
+ while (cast) {
+ if (!cast->converter) {
+ swig_type_info *tc = cast->type;
+ if (!tc->clientdata) {
+ SWIG_TypeClientData(tc, clientdata);
+ }
+ }
+ cast = cast->next;
+ }
+}
+SWIGRUNTIME void
+SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
+ SWIG_TypeClientData(ti, clientdata);
+ ti->owndata = 1;
+}
+
+/*
+ Search for a swig_type_info structure only by mangled name
+ Search is a O(log #types)
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_MangledTypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ swig_module_info *iter = start;
+ do {
+ if (iter->size) {
+ register size_t l = 0;
+ register size_t r = iter->size - 1;
+ do {
+ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
+ register size_t i = (l + r) >> 1;
+ const char *iname = iter->types[i]->name;
+ if (iname) {
+ register int compare = strcmp(name, iname);
+ if (compare == 0) {
+ return iter->types[i];
+ } else if (compare < 0) {
+ if (i) {
+ r = i - 1;
+ } else {
+ break;
+ }
+ } else if (compare > 0) {
+ l = i + 1;
+ }
+ } else {
+ break; /* should never happen */
+ }
+ } while (l <= r);
+ }
+ iter = iter->next;
+ } while (iter != end);
+ return 0;
+}
+
+/*
+ Search for a swig_type_info structure for either a mangled name or a human readable name.
+ It first searches the mangled names of the types, which is a O(log #types)
+ If a type is not found it then searches the human readable names, which is O(#types).
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ /* STEP 1: Search the name field using binary search */
+ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
+ if (ret) {
+ return ret;
+ } else {
+ /* STEP 2: If the type hasn't been found, do a complete search
+ of the str field (the human readable name) */
+ swig_module_info *iter = start;
+ do {
+ register size_t i = 0;
+ for (; i < iter->size; ++i) {
+ if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
+ return iter->types[i];
+ }
+ iter = iter->next;
+ } while (iter != end);
+ }
+
+ /* neither found a match */
+ return 0;
+}
+
+/*
+ Pack binary data into a string
+*/
+SWIGRUNTIME char *
+SWIG_PackData(char *c, void *ptr, size_t sz) {
+ static const char hex[17] = "0123456789abcdef";
+ register const unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register unsigned char uu = *u;
+ *(c++) = hex[(uu & 0xf0) >> 4];
+ *(c++) = hex[uu & 0xf];
+ }
+ return c;
+}
+
+/*
+ Unpack binary data from a string
+*/
+SWIGRUNTIME const char *
+SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
+ register unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register char d = *(c++);
+ register unsigned char uu;
+ if ((d >= '0') && (d <= '9'))
+ uu = ((d - '0') << 4);
+ else if ((d >= 'a') && (d <= 'f'))
+ uu = ((d - ('a'-10)) << 4);
+ else
+ return (char *) 0;
+ d = *(c++);
+ if ((d >= '0') && (d <= '9'))
+ uu |= (d - '0');
+ else if ((d >= 'a') && (d <= 'f'))
+ uu |= (d - ('a'-10));
+ else
+ return (char *) 0;
+ *u = uu;
+ }
+ return c;
+}
+
+/*
+ Pack 'void *' into a string buffer.
+*/
+SWIGRUNTIME char *
+SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
+ char *r = buff;
+ if ((2*sizeof(void *) + 2) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,&ptr,sizeof(void *));
+ if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
+ strcpy(r,name);
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ *ptr = (void *) 0;
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sizeof(void *));
+}
+
+SWIGRUNTIME char *
+SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
+ char *r = buff;
+ size_t lname = (name ? strlen(name) : 0);
+ if ((2*sz + 2 + lname) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,ptr,sz);
+ if (lname) {
+ strncpy(r,name,lname+1);
+ } else {
+ *r = 0;
+ }
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ memset(ptr,0,sz);
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sz);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+/* Errors in SWIG */
+#define SWIG_UnknownError -1
+#define SWIG_IOError -2
+#define SWIG_RuntimeError -3
+#define SWIG_IndexError -4
+#define SWIG_TypeError -5
+#define SWIG_DivisionByZero -6
+#define SWIG_OverflowError -7
+#define SWIG_SyntaxError -8
+#define SWIG_ValueError -9
+#define SWIG_SystemError -10
+#define SWIG_AttributeError -11
+#define SWIG_MemoryError -12
+#define SWIG_NullReferenceError -13
+
+
+
+/* Compatibility macros for Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+
+#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
+#define PyInt_Check(x) PyLong_Check(x)
+#define PyInt_AsLong(x) PyLong_AsLong(x)
+#define PyInt_FromLong(x) PyLong_FromLong(x)
+#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
+#define PyString_Check(name) PyBytes_Check(name)
+#define PyString_FromString(x) PyUnicode_FromString(x)
+#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
+#define PyString_AsString(str) PyBytes_AsString(str)
+#define PyString_Size(str) PyBytes_Size(str)
+#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
+#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
+#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x)
+#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
+
+#endif
+
+#ifndef Py_TYPE
+# define Py_TYPE(op) ((op)->ob_type)
+#endif
+
+/* SWIG APIs for compatibility of both Python 2 & 3 */
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
+#else
+# define SWIG_Python_str_FromFormat PyString_FromFormat
+#endif
+
+
+/* Warning: This function will allocate a new string in Python 3,
+ * so please call SWIG_Python_str_DelForPy3(x) to free the space.
+ */
+SWIGINTERN char*
+SWIG_Python_str_AsChar(PyObject *str)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ char *cstr;
+ char *newstr;
+ Py_ssize_t len;
+ str = PyUnicode_AsUTF8String(str);
+ PyBytes_AsStringAndSize(str, &cstr, &len);
+ newstr = (char *) malloc(len+1);
+ memcpy(newstr, cstr, len+1);
+ Py_XDECREF(str);
+ return newstr;
+#else
+ return PyString_AsString(str);
+#endif
+}
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) )
+#else
+# define SWIG_Python_str_DelForPy3(x)
+#endif
+
+
+SWIGINTERN PyObject*
+SWIG_Python_str_FromChar(const char *c)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromString(c);
+#else
+ return PyString_FromString(c);
+#endif
+}
+
+/* Add PyOS_snprintf for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
+# define PyOS_snprintf _snprintf
+# else
+# define PyOS_snprintf snprintf
+# endif
+#endif
+
+/* A crude PyString_FromFormat implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+
+#ifndef SWIG_PYBUFFER_SIZE
+# define SWIG_PYBUFFER_SIZE 1024
+#endif
+
+static PyObject *
+PyString_FromFormat(const char *fmt, ...) {
+ va_list ap;
+ char buf[SWIG_PYBUFFER_SIZE * 2];
+ int res;
+ va_start(ap, fmt);
+ res = vsnprintf(buf, sizeof(buf), fmt, ap);
+ va_end(ap);
+ return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf);
+}
+#endif
+
+/* Add PyObject_Del for old Pythons */
+#if PY_VERSION_HEX < 0x01060000
+# define PyObject_Del(op) PyMem_DEL((op))
+#endif
+#ifndef PyObject_DEL
+# define PyObject_DEL PyObject_Del
+#endif
+
+/* A crude PyExc_StopIteration exception for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# ifndef PyExc_StopIteration
+# define PyExc_StopIteration PyExc_RuntimeError
+# endif
+# ifndef PyObject_GenericGetAttr
+# define PyObject_GenericGetAttr 0
+# endif
+#endif
+
+/* Py_NotImplemented is defined in 2.1 and up. */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef Py_NotImplemented
+# define Py_NotImplemented PyExc_RuntimeError
+# endif
+#endif
+
+/* A crude PyString_AsStringAndSize implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef PyString_AsStringAndSize
+# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
+# endif
+#endif
+
+/* PySequence_Size for old Pythons */
+#if PY_VERSION_HEX < 0x02000000
+# ifndef PySequence_Size
+# define PySequence_Size PySequence_Length
+# endif
+#endif
+
+/* PyBool_FromLong for old Pythons */
+#if PY_VERSION_HEX < 0x02030000
+static
+PyObject *PyBool_FromLong(long ok)
+{
+ PyObject *result = ok ? Py_True : Py_False;
+ Py_INCREF(result);
+ return result;
+}
+#endif
+
+/* Py_ssize_t for old Pythons */
+/* This code is as recommended by: */
+/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */
+#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
+typedef int Py_ssize_t;
+# define PY_SSIZE_T_MAX INT_MAX
+# define PY_SSIZE_T_MIN INT_MIN
+typedef inquiry lenfunc;
+typedef intargfunc ssizeargfunc;
+typedef intintargfunc ssizessizeargfunc;
+typedef intobjargproc ssizeobjargproc;
+typedef intintobjargproc ssizessizeobjargproc;
+typedef getreadbufferproc readbufferproc;
+typedef getwritebufferproc writebufferproc;
+typedef getsegcountproc segcountproc;
+typedef getcharbufferproc charbufferproc;
+static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))
+{
+ long result = 0;
+ PyObject *i = PyNumber_Int(x);
+ if (i) {
+ result = PyInt_AsLong(i);
+ Py_DECREF(i);
+ }
+ return result;
+}
+#endif
+
+#if PY_VERSION_HEX < 0x02050000
+#define PyInt_FromSize_t(x) PyInt_FromLong((long)x)
+#endif
+
+#if PY_VERSION_HEX < 0x02040000
+#define Py_VISIT(op) \
+ do { \
+ if (op) { \
+ int vret = visit((op), arg); \
+ if (vret) \
+ return vret; \
+ } \
+ } while (0)
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef struct {
+ PyTypeObject type;
+ PyNumberMethods as_number;
+ PyMappingMethods as_mapping;
+ PySequenceMethods as_sequence;
+ PyBufferProcs as_buffer;
+ PyObject *name, *slots;
+} PyHeapTypeObject;
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef destructor freefunc;
+#endif
+
+#if ((PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 6) || \
+ (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION > 0) || \
+ (PY_MAJOR_VERSION > 3))
+# define SWIGPY_USE_CAPSULE
+# define SWIGPY_CAPSULE_NAME ((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME)
+#endif
+
+#if PY_VERSION_HEX < 0x03020000
+#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
+#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
+#endif
+
+/* -----------------------------------------------------------------------------
+ * error manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIME PyObject*
+SWIG_Python_ErrorType(int code) {
+ PyObject* type = 0;
+ switch(code) {
+ case SWIG_MemoryError:
+ type = PyExc_MemoryError;
+ break;
+ case SWIG_IOError:
+ type = PyExc_IOError;
+ break;
+ case SWIG_RuntimeError:
+ type = PyExc_RuntimeError;
+ break;
+ case SWIG_IndexError:
+ type = PyExc_IndexError;
+ break;
+ case SWIG_TypeError:
+ type = PyExc_TypeError;
+ break;
+ case SWIG_DivisionByZero:
+ type = PyExc_ZeroDivisionError;
+ break;
+ case SWIG_OverflowError:
+ type = PyExc_OverflowError;
+ break;
+ case SWIG_SyntaxError:
+ type = PyExc_SyntaxError;
+ break;
+ case SWIG_ValueError:
+ type = PyExc_ValueError;
+ break;
+ case SWIG_SystemError:
+ type = PyExc_SystemError;
+ break;
+ case SWIG_AttributeError:
+ type = PyExc_AttributeError;
+ break;
+ default:
+ type = PyExc_RuntimeError;
+ }
+ return type;
+}
+
+
+SWIGRUNTIME void
+SWIG_Python_AddErrorMsg(const char* mesg)
+{
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+
+ if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ PyErr_Clear();
+ Py_XINCREF(type);
+
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ Py_DECREF(value);
+ } else {
+ PyErr_SetString(PyExc_RuntimeError, mesg);
+ }
+}
+
+#if defined(SWIG_PYTHON_NO_THREADS)
+# if defined(SWIG_PYTHON_THREADS)
+# undef SWIG_PYTHON_THREADS
+# endif
+#endif
+#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
+# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
+# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
+# define SWIG_PYTHON_USE_GIL
+# endif
+# endif
+# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
+# ifndef SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
+# endif
+# ifdef __cplusplus /* C++ code */
+ class SWIG_Python_Thread_Block {
+ bool status;
+ PyGILState_STATE state;
+ public:
+ void end() { if (status) { PyGILState_Release(state); status = false;} }
+ SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
+ ~SWIG_Python_Thread_Block() { end(); }
+ };
+ class SWIG_Python_Thread_Allow {
+ bool status;
+ PyThreadState *save;
+ public:
+ void end() { if (status) { PyEval_RestoreThread(save); status = false; }}
+ SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
+ ~SWIG_Python_Thread_Allow() { end(); }
+ };
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
+# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
+# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
+# else /* C code */
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
+# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
+# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
+# endif
+# else /* Old thread way, not implemented, user must provide it */
+# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
+# define SWIG_PYTHON_THREAD_END_ALLOW
+# endif
+# endif
+#else /* No thread support */
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# define SWIG_PYTHON_THREAD_END_ALLOW
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Python API portion that goes into the runtime
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Constant declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Constant Types */
+#define SWIG_PY_POINTER 4
+#define SWIG_PY_BINARY 5
+
+/* Constant information structure */
+typedef struct swig_const_info {
+ int type;
+ char *name;
+ long lvalue;
+ double dvalue;
+ void *pvalue;
+ swig_type_info **ptype;
+} swig_const_info;
+
+
+/* -----------------------------------------------------------------------------
+ * Wrapper of PyInstanceMethod_New() used in Python 3
+ * It is exported to the generated module, used for -fastproxy
+ * ----------------------------------------------------------------------------- */
+#if PY_VERSION_HEX >= 0x03000000
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func)
+{
+ return PyInstanceMethod_New(func);
+}
+#else
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
+{
+ return NULL;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+
+/* -----------------------------------------------------------------------------
+ * pyrun.swg
+ *
+ * This file contains the runtime support for Python modules
+ * and includes code for managing global variables and pointer
+ * type checking.
+ *
+ * ----------------------------------------------------------------------------- */
+
+/* Common SWIG API */
+
+/* for raw pointers */
+#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
+#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
+
+#ifdef SWIGPYTHON_BUILTIN
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
+#else
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+#endif
+
+#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+
+#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
+#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
+#define swig_owntype int
+
+/* for raw packed data */
+#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+/* for class or struct pointers */
+#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
+
+/* for C or C++ function pointers */
+#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
+#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
+
+/* for C++ member pointers, ie, member methods */
+#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+
+/* Runtime API */
+
+#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
+#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
+#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
+
+#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
+#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
+#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
+#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
+#define SWIG_fail goto fail
+
+
+/* Runtime API implementation */
+
+/* Error manipulation */
+
+SWIGINTERN void
+SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetObject(errtype, obj);
+ Py_DECREF(obj);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+SWIGINTERN void
+SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetString(errtype, msg);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
+
+/* Set a constant value */
+
+#if defined(SWIGPYTHON_BUILTIN)
+
+SWIGINTERN void
+SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {
+ PyObject *s = PyString_InternFromString(key);
+ PyList_Append(seq, s);
+ Py_DECREF(s);
+}
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+ if (public_interface)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, name);
+}
+
+#else
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+}
+
+#endif
+
+/* Append a value to the result obj */
+
+SWIGINTERN PyObject*
+SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {
+#if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyList_Check(result)) {
+ PyObject *o2 = result;
+ result = PyList_New(1);
+ PyList_SetItem(result, 0, o2);
+ }
+ PyList_Append(result,obj);
+ Py_DECREF(obj);
+ }
+ return result;
+#else
+ PyObject* o2;
+ PyObject* o3;
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyTuple_Check(result)) {
+ o2 = result;
+ result = PyTuple_New(1);
+ PyTuple_SET_ITEM(result, 0, o2);
+ }
+ o3 = PyTuple_New(1);
+ PyTuple_SET_ITEM(o3, 0, obj);
+ o2 = result;
+ result = PySequence_Concat(o2, o3);
+ Py_DECREF(o2);
+ Py_DECREF(o3);
+ }
+ return result;
+#endif
+}
+
+/* Unpack the argument tuple */
+
+SWIGINTERN int
+SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
+{
+ if (!args) {
+ if (!min && !max) {
+ return 1;
+ } else {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none",
+ name, (min == max ? "" : "at least "), (int)min);
+ return 0;
+ }
+ }
+ if (!PyTuple_Check(args)) {
+ if (min <= 1 && max >= 1) {
+ register int i;
+ objs[0] = args;
+ for (i = 1; i < max; ++i) {
+ objs[i] = 0;
+ }
+ return 2;
+ }
+ PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
+ return 0;
+ } else {
+ register Py_ssize_t l = PyTuple_GET_SIZE(args);
+ if (l < min) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at least "), (int)min, (int)l);
+ return 0;
+ } else if (l > max) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at most "), (int)max, (int)l);
+ return 0;
+ } else {
+ register int i;
+ for (i = 0; i < l; ++i) {
+ objs[i] = PyTuple_GET_ITEM(args, i);
+ }
+ for (; l < max; ++l) {
+ objs[l] = 0;
+ }
+ return i + 1;
+ }
+ }
+}
+
+/* A functor is a function object with one single object argument */
+#if PY_VERSION_HEX >= 0x02020000
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
+#else
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
+#endif
+
+/*
+ Helper for static pointer initialization for both C and C++ code, for example
+ static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
+*/
+#ifdef __cplusplus
+#define SWIG_STATIC_POINTER(var) var
+#else
+#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Pointer declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
+#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
+
+#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
+
+#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
+#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* How to access Py_None */
+#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# ifndef SWIG_PYTHON_NO_BUILD_NONE
+# ifndef SWIG_PYTHON_BUILD_NONE
+# define SWIG_PYTHON_BUILD_NONE
+# endif
+# endif
+#endif
+
+#ifdef SWIG_PYTHON_BUILD_NONE
+# ifdef Py_None
+# undef Py_None
+# define Py_None SWIG_Py_None()
+# endif
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_Py_None(void)
+{
+ PyObject *none = Py_BuildValue((char*)"");
+ Py_DECREF(none);
+ return none;
+}
+SWIGRUNTIME PyObject *
+SWIG_Py_None(void)
+{
+ static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None();
+ return none;
+}
+#endif
+
+/* The python void return value */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Py_Void(void)
+{
+ PyObject *none = Py_None;
+ Py_INCREF(none);
+ return none;
+}
+
+/* SwigPyClientData */
+
+typedef struct {
+ PyObject *klass;
+ PyObject *newraw;
+ PyObject *newargs;
+ PyObject *destroy;
+ int delargs;
+ int implicitconv;
+ PyTypeObject *pytype;
+} SwigPyClientData;
+
+SWIGRUNTIMEINLINE int
+SWIG_Python_CheckImplicit(swig_type_info *ty)
+{
+ SwigPyClientData *data = (SwigPyClientData *)ty->clientdata;
+ return data ? data->implicitconv : 0;
+}
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_ExceptionType(swig_type_info *desc) {
+ SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0;
+ PyObject *klass = data ? data->klass : 0;
+ return (klass ? klass : PyExc_RuntimeError);
+}
+
+
+SWIGRUNTIME SwigPyClientData *
+SwigPyClientData_New(PyObject* obj)
+{
+ if (!obj) {
+ return 0;
+ } else {
+ SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData));
+ /* the klass element */
+ data->klass = obj;
+ Py_INCREF(data->klass);
+ /* the newraw method and newargs arguments used to create a new raw instance */
+ if (PyClass_Check(obj)) {
+ data->newraw = 0;
+ data->newargs = obj;
+ Py_INCREF(obj);
+ } else {
+#if (PY_VERSION_HEX < 0x02020000)
+ data->newraw = 0;
+#else
+ data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__");
+#endif
+ if (data->newraw) {
+ Py_INCREF(data->newraw);
+ data->newargs = PyTuple_New(1);
+ PyTuple_SetItem(data->newargs, 0, obj);
+ } else {
+ data->newargs = obj;
+ }
+ Py_INCREF(data->newargs);
+ }
+ /* the destroy method, aka as the C++ delete method */
+ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__");
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ data->destroy = 0;
+ }
+ if (data->destroy) {
+ int flags;
+ Py_INCREF(data->destroy);
+ flags = PyCFunction_GET_FLAGS(data->destroy);
+#ifdef METH_O
+ data->delargs = !(flags & (METH_O));
+#else
+ data->delargs = 0;
+#endif
+ } else {
+ data->delargs = 0;
+ }
+ data->implicitconv = 0;
+ data->pytype = 0;
+ return data;
+ }
+}
+
+SWIGRUNTIME void
+SwigPyClientData_Del(SwigPyClientData *data) {
+ Py_XDECREF(data->newraw);
+ Py_XDECREF(data->newargs);
+ Py_XDECREF(data->destroy);
+}
+
+/* =============== SwigPyObject =====================*/
+
+typedef struct {
+ PyObject_HEAD
+ void *ptr;
+ swig_type_info *ty;
+ int own;
+ PyObject *next;
+#ifdef SWIGPYTHON_BUILTIN
+ PyObject *dict;
+#endif
+} SwigPyObject;
+
+SWIGRUNTIME PyObject *
+SwigPyObject_long(SwigPyObject *v)
+{
+ return PyLong_FromVoidPtr(v->ptr);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_format(const char* fmt, SwigPyObject *v)
+{
+ PyObject *res = NULL;
+ PyObject *args = PyTuple_New(1);
+ if (args) {
+ if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) {
+ PyObject *ofmt = SWIG_Python_str_FromChar(fmt);
+ if (ofmt) {
+#if PY_VERSION_HEX >= 0x03000000
+ res = PyUnicode_Format(ofmt,args);
+#else
+ res = PyString_Format(ofmt,args);
+#endif
+ Py_DECREF(ofmt);
+ }
+ Py_DECREF(args);
+ }
+ }
+ return res;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_oct(SwigPyObject *v)
+{
+ return SwigPyObject_format("%o",v);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_hex(SwigPyObject *v)
+{
+ return SwigPyObject_format("%x",v);
+}
+
+SWIGRUNTIME PyObject *
+#ifdef METH_NOARGS
+SwigPyObject_repr(SwigPyObject *v)
+#else
+SwigPyObject_repr(SwigPyObject *v, PyObject *args)
+#endif
+{
+ const char *name = SWIG_TypePrettyName(v->ty);
+ PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v);
+ if (v->next) {
+# ifdef METH_NOARGS
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next);
+# else
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args);
+# endif
+# if PY_VERSION_HEX >= 0x03000000
+ PyObject *joined = PyUnicode_Concat(repr, nrep);
+ Py_DecRef(repr);
+ Py_DecRef(nrep);
+ repr = joined;
+# else
+ PyString_ConcatAndDel(&repr,nrep);
+# endif
+ }
+ return repr;
+}
+
+SWIGRUNTIME int
+SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
+{
+ void *i = v->ptr;
+ void *j = w->ptr;
+ return (i < j) ? -1 : ((i > j) ? 1 : 0);
+}
+
+/* Added for Python 3.x, would it also be useful for Python 2.x? */
+SWIGRUNTIME PyObject*
+SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
+{
+ PyObject* res;
+ if( op != Py_EQ && op != Py_NE ) {
+ Py_INCREF(Py_NotImplemented);
+ return Py_NotImplemented;
+ }
+ res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0);
+ return res;
+}
+
+
+SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void);
+
+#ifdef SWIGPYTHON_BUILTIN
+static swig_type_info *SwigPyObject_stype = 0;
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ SwigPyClientData *cd;
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ assert(cd);
+ assert(cd->pytype);
+ return cd->pytype;
+}
+#else
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce();
+ return type;
+}
+#endif
+
+SWIGRUNTIMEINLINE int
+SwigPyObject_Check(PyObject *op) {
+#ifdef SWIGPYTHON_BUILTIN
+ PyTypeObject *target_tp = SwigPyObject_type();
+ if (PyType_IsSubtype(op->ob_type, target_tp))
+ return 1;
+ return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0);
+#else
+ return (Py_TYPE(op) == SwigPyObject_type())
+ || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0);
+#endif
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own);
+
+SWIGRUNTIME void
+SwigPyObject_dealloc(PyObject *v)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ PyObject *next = sobj->next;
+ if (sobj->own == SWIG_POINTER_OWN) {
+ swig_type_info *ty = sobj->ty;
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ PyObject *destroy = data ? data->destroy : 0;
+ if (destroy) {
+ /* destroy is always a VARARGS method */
+ PyObject *res;
+ if (data->delargs) {
+ /* we need to create a temporary object to carry the destroy operation */
+ PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0);
+ res = SWIG_Python_CallFunctor(destroy, tmp);
+ Py_DECREF(tmp);
+ } else {
+ PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
+ PyObject *mself = PyCFunction_GET_SELF(destroy);
+ res = ((*meth)(mself, v));
+ }
+ Py_XDECREF(res);
+ }
+#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
+ else {
+ const char *name = SWIG_TypePrettyName(ty);
+ printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown"));
+ }
+#endif
+ }
+ Py_XDECREF(next);
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyObject*
+SwigPyObject_append(PyObject* v, PyObject* next)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+#ifndef METH_O
+ PyObject *tmp = 0;
+ if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
+ next = tmp;
+#endif
+ if (!SwigPyObject_Check(next)) {
+ return NULL;
+ }
+ sobj->next = next;
+ Py_INCREF(next);
+ return SWIG_Py_Void();
+}
+
+SWIGRUNTIME PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_next(PyObject* v)
+#else
+SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ if (sobj->next) {
+ Py_INCREF(sobj->next);
+ return sobj->next;
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_disown(PyObject *v)
+#else
+SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = 0;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_acquire(PyObject *v)
+#else
+SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = SWIG_POINTER_OWN;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+SwigPyObject_own(PyObject *v, PyObject *args)
+{
+ PyObject *val = 0;
+#if (PY_VERSION_HEX < 0x02020000)
+ if (!PyArg_ParseTuple(args,(char *)"|O:own",&val))
+#elif (PY_VERSION_HEX < 0x02050000)
+ if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val))
+#else
+ if (!PyArg_UnpackTuple(args, "own", 0, 1, &val))
+#endif
+ {
+ return NULL;
+ }
+ else
+ {
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ PyObject *obj = PyBool_FromLong(sobj->own);
+ if (val) {
+#ifdef METH_NOARGS
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v);
+ } else {
+ SwigPyObject_disown(v);
+ }
+#else
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v,args);
+ } else {
+ SwigPyObject_disown(v,args);
+ }
+#endif
+ }
+ return obj;
+ }
+}
+
+#ifdef METH_O
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"acquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#else
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#endif
+
+#if PY_VERSION_HEX < 0x02020000
+SWIGINTERN PyObject *
+SwigPyObject_getattr(SwigPyObject *sobj,char *name)
+{
+ return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name);
+}
+#endif
+
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_TypeOnce(void) {
+ static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer";
+
+ static PyNumberMethods SwigPyObject_as_number = {
+ (binaryfunc)0, /*nb_add*/
+ (binaryfunc)0, /*nb_subtract*/
+ (binaryfunc)0, /*nb_multiply*/
+ /* nb_divide removed in Python 3 */
+#if PY_VERSION_HEX < 0x03000000
+ (binaryfunc)0, /*nb_divide*/
+#endif
+ (binaryfunc)0, /*nb_remainder*/
+ (binaryfunc)0, /*nb_divmod*/
+ (ternaryfunc)0,/*nb_power*/
+ (unaryfunc)0, /*nb_negative*/
+ (unaryfunc)0, /*nb_positive*/
+ (unaryfunc)0, /*nb_absolute*/
+ (inquiry)0, /*nb_nonzero*/
+ 0, /*nb_invert*/
+ 0, /*nb_lshift*/
+ 0, /*nb_rshift*/
+ 0, /*nb_and*/
+ 0, /*nb_xor*/
+ 0, /*nb_or*/
+#if PY_VERSION_HEX < 0x03000000
+ 0, /*nb_coerce*/
+#endif
+ (unaryfunc)SwigPyObject_long, /*nb_int*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_long, /*nb_long*/
+#else
+ 0, /*nb_reserved*/
+#endif
+ (unaryfunc)0, /*nb_float*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_oct, /*nb_oct*/
+ (unaryfunc)SwigPyObject_hex, /*nb_hex*/
+#endif
+#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */
+#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */
+#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
+#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */
+ 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
+#endif
+ };
+
+ static PyTypeObject swigpyobject_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyObject", /* tp_name */
+ sizeof(SwigPyObject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
+ 0, /* tp_print */
+#if PY_VERSION_HEX < 0x02020000
+ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
+#else
+ (getattrfunc)0, /* tp_getattr */
+#endif
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX >= 0x03000000
+ 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */
+#else
+ (cmpfunc)SwigPyObject_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyObject_repr, /* tp_repr */
+ &SwigPyObject_as_number, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ 0, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigobject_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ swigobject_methods, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpyobject_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpyobject_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpyobject_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpyobject_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
+{
+ SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type());
+ if (sobj) {
+ sobj->ptr = ptr;
+ sobj->ty = ty;
+ sobj->own = own;
+ sobj->next = 0;
+ }
+ return (PyObject *)sobj;
+}
+
+/* -----------------------------------------------------------------------------
+ * Implements a simple Swig Packed type, and use it instead of string
+ * ----------------------------------------------------------------------------- */
+
+typedef struct {
+ PyObject_HEAD
+ void *pack;
+ swig_type_info *ty;
+ size_t size;
+} SwigPyPacked;
+
+SWIGRUNTIME int
+SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
+{
+ char result[SWIG_BUFFER_SIZE];
+ fputs("pack, v->size, 0, sizeof(result))) {
+ fputs("at ", fp);
+ fputs(result, fp);
+ }
+ fputs(v->ty->name,fp);
+ fputs(">", fp);
+ return 0;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_repr(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
+ return SWIG_Python_str_FromFormat("", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromFormat("", v->ty->name);
+ }
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_str(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){
+ return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromChar(v->ty->name);
+ }
+}
+
+SWIGRUNTIME int
+SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
+{
+ size_t i = v->size;
+ size_t j = w->size;
+ int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
+ return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size);
+}
+
+SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void);
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce();
+ return type;
+}
+
+SWIGRUNTIMEINLINE int
+SwigPyPacked_Check(PyObject *op) {
+ return ((op)->ob_type == SwigPyPacked_TypeOnce())
+ || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0);
+}
+
+SWIGRUNTIME void
+SwigPyPacked_dealloc(PyObject *v)
+{
+ if (SwigPyPacked_Check(v)) {
+ SwigPyPacked *sobj = (SwigPyPacked *) v;
+ free(sobj->pack);
+ }
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_TypeOnce(void) {
+ static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer";
+ static PyTypeObject swigpypacked_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX>=0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyPacked", /* tp_name */
+ sizeof(SwigPyPacked), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyPacked_dealloc, /* tp_dealloc */
+ (printfunc)SwigPyPacked_print, /* tp_print */
+ (getattrfunc)0, /* tp_getattr */
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX>=0x03000000
+ 0, /* tp_reserved in 3.0.1 */
+#else
+ (cmpfunc)SwigPyPacked_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyPacked_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ (reprfunc)SwigPyPacked_str, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigpacked_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpypacked_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpypacked_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpypacked_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpypacked_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
+{
+ SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type());
+ if (sobj) {
+ void *pack = malloc(size);
+ if (pack) {
+ memcpy(pack, ptr, size);
+ sobj->pack = pack;
+ sobj->ty = ty;
+ sobj->size = size;
+ } else {
+ PyObject_DEL((PyObject *) sobj);
+ sobj = 0;
+ }
+ }
+ return (PyObject *) sobj;
+}
+
+SWIGRUNTIME swig_type_info *
+SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
+{
+ if (SwigPyPacked_Check(obj)) {
+ SwigPyPacked *sobj = (SwigPyPacked *)obj;
+ if (sobj->size != size) return 0;
+ memcpy(ptr, sobj->pack, size);
+ return sobj->ty;
+ } else {
+ return 0;
+ }
+}
+
+/* -----------------------------------------------------------------------------
+ * pointers/data manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_This(void)
+{
+ return SWIG_Python_str_FromChar("this");
+}
+
+static PyObject *swig_this = NULL;
+
+SWIGRUNTIME PyObject *
+SWIG_This(void)
+{
+ if (swig_this == NULL)
+ swig_this = _SWIG_This();
+ return swig_this;
+}
+
+/* #define SWIG_PYTHON_SLOW_GETSET_THIS */
+
+/* TODO: I don't know how to implement the fast getset in Python 3 right now */
+#if PY_VERSION_HEX>=0x03000000
+#define SWIG_PYTHON_SLOW_GETSET_THIS
+#endif
+
+SWIGRUNTIME SwigPyObject *
+SWIG_Python_GetSwigThis(PyObject *pyobj)
+{
+ PyObject *obj;
+
+ if (SwigPyObject_Check(pyobj))
+ return (SwigPyObject *) pyobj;
+
+#ifdef SWIGPYTHON_BUILTIN
+ (void)obj;
+# ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ pyobj = PyWeakref_GET_OBJECT(pyobj);
+ if (pyobj && SwigPyObject_Check(pyobj))
+ return (SwigPyObject*) pyobj;
+ }
+# endif
+ return NULL;
+#else
+
+ obj = 0;
+
+#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
+ if (PyInstance_Check(pyobj)) {
+ obj = _PyInstance_Lookup(pyobj, SWIG_This());
+ } else {
+ PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0;
+ } else {
+#ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
+ return wobj ? SWIG_Python_GetSwigThis(wobj) : 0;
+ }
+#endif
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+ }
+ }
+#else
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+#endif
+ if (obj && !SwigPyObject_Check(obj)) {
+ /* a PyObject is called 'this', try to get the 'real this'
+ SwigPyObject from it */
+ return SWIG_Python_GetSwigThis(obj);
+ }
+ return (SwigPyObject *)obj;
+#endif
+}
+
+/* Acquire a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_AcquirePtr(PyObject *obj, int own) {
+ if (own == SWIG_POINTER_OWN) {
+ SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj);
+ if (sobj) {
+ int oldown = sobj->own;
+ sobj->own = own;
+ return oldown;
+ }
+ }
+ return 0;
+}
+
+/* Convert a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
+ int res;
+ SwigPyObject *sobj;
+ int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
+
+ if (!obj)
+ return SWIG_ERROR;
+ if (obj == Py_None && !implicit_conv) {
+ if (ptr)
+ *ptr = 0;
+ return SWIG_OK;
+ }
+
+ res = SWIG_ERROR;
+
+ sobj = SWIG_Python_GetSwigThis(obj);
+ if (own)
+ *own = 0;
+ while (sobj) {
+ void *vptr = sobj->ptr;
+ if (ty) {
+ swig_type_info *to = sobj->ty;
+ if (to == ty) {
+ /* no type cast needed */
+ if (ptr) *ptr = vptr;
+ break;
+ } else {
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) {
+ sobj = (SwigPyObject *)sobj->next;
+ } else {
+ if (ptr) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ if (newmemory == SWIG_CAST_NEW_MEMORY) {
+ assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */
+ if (own)
+ *own = *own | SWIG_CAST_NEW_MEMORY;
+ }
+ }
+ break;
+ }
+ }
+ } else {
+ if (ptr) *ptr = vptr;
+ break;
+ }
+ }
+ if (sobj) {
+ if (own)
+ *own = *own | sobj->own;
+ if (flags & SWIG_POINTER_DISOWN) {
+ sobj->own = 0;
+ }
+ res = SWIG_OK;
+ } else {
+ if (implicit_conv) {
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ if (data && !data->implicitconv) {
+ PyObject *klass = data->klass;
+ if (klass) {
+ PyObject *impconv;
+ data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/
+ impconv = SWIG_Python_CallFunctor(klass, obj);
+ data->implicitconv = 0;
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ impconv = 0;
+ }
+ if (impconv) {
+ SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv);
+ if (iobj) {
+ void *vptr;
+ res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0);
+ if (SWIG_IsOK(res)) {
+ if (ptr) {
+ *ptr = vptr;
+ /* transfer the ownership to 'ptr' */
+ iobj->own = 0;
+ res = SWIG_AddCast(res);
+ res = SWIG_AddNewMask(res);
+ } else {
+ res = SWIG_AddCast(res);
+ }
+ }
+ }
+ Py_DECREF(impconv);
+ }
+ }
+ }
+ }
+ if (!SWIG_IsOK(res) && obj == Py_None) {
+ if (ptr)
+ *ptr = 0;
+ if (PyErr_Occurred())
+ PyErr_Clear();
+ res = SWIG_OK;
+ }
+ }
+ return res;
+}
+
+/* Convert a function ptr value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {
+ if (!PyCFunction_Check(obj)) {
+ return SWIG_ConvertPtr(obj, ptr, ty, 0);
+ } else {
+ void *vptr = 0;
+
+ /* here we get the method pointer for callbacks */
+ const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
+ const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0;
+ if (desc)
+ desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0;
+ if (!desc)
+ return SWIG_ERROR;
+ if (ty) {
+ swig_cast_info *tc = SWIG_TypeCheck(desc,ty);
+ if (tc) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ assert(!newmemory); /* newmemory handling not yet implemented */
+ } else {
+ return SWIG_ERROR;
+ }
+ } else {
+ *ptr = vptr;
+ }
+ return SWIG_OK;
+ }
+}
+
+/* Convert a packed value value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
+ swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz);
+ if (!to) return SWIG_ERROR;
+ if (ty) {
+ if (to != ty) {
+ /* check type cast? */
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) return SWIG_ERROR;
+ }
+ }
+ return SWIG_OK;
+}
+
+/* -----------------------------------------------------------------------------
+ * Create a new pointer object
+ * ----------------------------------------------------------------------------- */
+
+/*
+ Create a new instance object, without calling __init__, and set the
+ 'this' attribute.
+*/
+
+SWIGRUNTIME PyObject*
+SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
+{
+#if (PY_VERSION_HEX >= 0x02020000)
+ PyObject *inst = 0;
+ PyObject *newraw = data->newraw;
+ if (newraw) {
+ inst = PyObject_Call(newraw, data->newargs, NULL);
+ if (inst) {
+#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ }
+ }
+#else
+ PyObject *key = SWIG_This();
+ PyObject_SetAttr(inst, key, swig_this);
+#endif
+ }
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
+ if (inst) {
+ PyObject_SetAttr(inst, SWIG_This(), swig_this);
+ Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
+ }
+#else
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+#endif
+ }
+ return inst;
+#else
+#if (PY_VERSION_HEX >= 0x02010000)
+ PyObject *inst = 0;
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+ return (PyObject *) inst;
+#else
+ PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type);
+ if (inst == NULL) {
+ return NULL;
+ }
+ inst->in_class = (PyClassObject *)data->newargs;
+ Py_INCREF(inst->in_class);
+ inst->in_dict = PyDict_New();
+ if (inst->in_dict == NULL) {
+ Py_DECREF(inst);
+ return NULL;
+ }
+#ifdef Py_TPFLAGS_HAVE_WEAKREFS
+ inst->in_weakreflist = NULL;
+#endif
+#ifdef Py_TPFLAGS_GC
+ PyObject_GC_Init(inst);
+#endif
+ PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this);
+ return (PyObject *) inst;
+#endif
+#endif
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
+{
+ PyObject *dict;
+#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ }
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ return;
+ }
+#endif
+ dict = PyObject_GetAttrString(inst, (char*)"__dict__");
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ Py_DECREF(dict);
+}
+
+
+SWIGINTERN PyObject *
+SWIG_Python_InitShadowInstance(PyObject *args) {
+ PyObject *obj[2];
+ if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) {
+ return NULL;
+ } else {
+ SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]);
+ if (sthis) {
+ SwigPyObject_append((PyObject*) sthis, obj[1]);
+ } else {
+ SWIG_Python_SetSwigThis(obj[0], obj[1]);
+ }
+ return SWIG_Py_Void();
+ }
+}
+
+/* Create a new pointer object */
+
+SWIGRUNTIME PyObject *
+SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {
+ SwigPyClientData *clientdata;
+ PyObject * robj;
+ int own;
+
+ if (!ptr)
+ return SWIG_Py_Void();
+
+ clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0;
+ own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0;
+ if (clientdata && clientdata->pytype) {
+ SwigPyObject *newobj;
+ if (flags & SWIG_BUILTIN_TP_INIT) {
+ newobj = (SwigPyObject*) self;
+ if (newobj->ptr) {
+ PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0);
+ while (newobj->next)
+ newobj = (SwigPyObject *) newobj->next;
+ newobj->next = next_self;
+ newobj = (SwigPyObject *)next_self;
+ }
+ } else {
+ newobj = PyObject_New(SwigPyObject, clientdata->pytype);
+ }
+ if (newobj) {
+ newobj->ptr = ptr;
+ newobj->ty = type;
+ newobj->own = own;
+ newobj->next = 0;
+#ifdef SWIGPYTHON_BUILTIN
+ newobj->dict = 0;
+#endif
+ return (PyObject*) newobj;
+ }
+ return SWIG_Py_Void();
+ }
+
+ assert(!(flags & SWIG_BUILTIN_TP_INIT));
+
+ robj = SwigPyObject_New(ptr, type, own);
+ if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) {
+ PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj);
+ Py_DECREF(robj);
+ robj = inst;
+ }
+ return robj;
+}
+
+/* Create a new packed object */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
+ return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();
+}
+
+/* -----------------------------------------------------------------------------*
+ * Get type list
+ * -----------------------------------------------------------------------------*/
+
+#ifdef SWIG_LINK_RUNTIME
+void *SWIG_ReturnGlobalTypeList(void *);
+#endif
+
+SWIGRUNTIME swig_module_info *
+SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
+ static void *type_pointer = (void *)0;
+ /* first check if module already created */
+ if (!type_pointer) {
+#ifdef SWIG_LINK_RUNTIME
+ type_pointer = SWIG_ReturnGlobalTypeList((void *)0);
+#else
+# ifdef SWIGPY_USE_CAPSULE
+ type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0);
+# else
+ type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
+ (char*)"type_pointer" SWIG_TYPE_TABLE_NAME);
+# endif
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ type_pointer = (void *)0;
+ }
+#endif
+ }
+ return (swig_module_info *) type_pointer;
+}
+
+#if PY_MAJOR_VERSION < 2
+/* PyModule_AddObject function was introduced in Python 2.0. The following function
+ is copied out of Python/modsupport.c in python version 2.3.4 */
+SWIGINTERN int
+PyModule_AddObject(PyObject *m, char *name, PyObject *o)
+{
+ PyObject *dict;
+ if (!PyModule_Check(m)) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs module as first arg");
+ return SWIG_ERROR;
+ }
+ if (!o) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs non-NULL value");
+ return SWIG_ERROR;
+ }
+
+ dict = PyModule_GetDict(m);
+ if (dict == NULL) {
+ /* Internal error -- modules must have a dict! */
+ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
+ PyModule_GetName(m));
+ return SWIG_ERROR;
+ }
+ if (PyDict_SetItemString(dict, name, o))
+ return SWIG_ERROR;
+ Py_DECREF(o);
+ return SWIG_OK;
+}
+#endif
+
+SWIGRUNTIME void
+#ifdef SWIGPY_USE_CAPSULE
+SWIG_Python_DestroyModule(PyObject *obj)
+#else
+SWIG_Python_DestroyModule(void *vptr)
+#endif
+{
+#ifdef SWIGPY_USE_CAPSULE
+ swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME);
+#else
+ swig_module_info *swig_module = (swig_module_info *) vptr;
+#endif
+ swig_type_info **types = swig_module->types;
+ size_t i;
+ for (i =0; i < swig_module->size; ++i) {
+ swig_type_info *ty = types[i];
+ if (ty->owndata) {
+ SwigPyClientData *data = (SwigPyClientData *) ty->clientdata;
+ if (data) SwigPyClientData_Del(data);
+ }
+ }
+ Py_DECREF(SWIG_This());
+ swig_this = NULL;
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetModule(swig_module_info *swig_module) {
+#if PY_VERSION_HEX >= 0x03000000
+ /* Add a dummy module object into sys.modules */
+ PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION);
+#else
+ static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */
+ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
+#endif
+#ifdef SWIGPY_USE_CAPSULE
+ PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#else
+ PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#endif
+}
+
+/* The python cached type query */
+SWIGRUNTIME PyObject *
+SWIG_Python_TypeCache(void) {
+ static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New();
+ return cache;
+}
+
+SWIGRUNTIME swig_type_info *
+SWIG_Python_TypeQuery(const char *type)
+{
+ PyObject *cache = SWIG_Python_TypeCache();
+ PyObject *key = SWIG_Python_str_FromChar(type);
+ PyObject *obj = PyDict_GetItem(cache, key);
+ swig_type_info *descriptor;
+ if (obj) {
+#ifdef SWIGPY_USE_CAPSULE
+ descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL);
+#else
+ descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj);
+#endif
+ } else {
+ swig_module_info *swig_module = SWIG_GetModule(0);
+ descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
+ if (descriptor) {
+#ifdef SWIGPY_USE_CAPSULE
+ obj = PyCapsule_New((void*) descriptor, NULL, NULL);
+#else
+ obj = PyCObject_FromVoidPtr(descriptor, NULL);
+#endif
+ PyDict_SetItem(cache, key, obj);
+ Py_DECREF(obj);
+ }
+ }
+ Py_DECREF(key);
+ return descriptor;
+}
+
+/*
+ For backward compatibility only
+*/
+#define SWIG_POINTER_EXCEPTION 0
+#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
+#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
+
+SWIGRUNTIME int
+SWIG_Python_AddErrMesg(const char* mesg, int infront)
+{
+ if (PyErr_Occurred()) {
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+ PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ Py_XINCREF(type);
+ PyErr_Clear();
+ if (infront) {
+ PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str));
+ } else {
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ }
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ }
+ return 1;
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIME int
+SWIG_Python_ArgFail(int argnum)
+{
+ if (PyErr_Occurred()) {
+ /* add information about failing argument */
+ char mesg[256];
+ PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum);
+ return SWIG_Python_AddErrMesg(mesg, 1);
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIMEINLINE const char *
+SwigPyObject_GetDesc(PyObject *self)
+{
+ SwigPyObject *v = (SwigPyObject *)self;
+ swig_type_info *ty = v ? v->ty : 0;
+ return ty ? ty->str : "";
+}
+
+SWIGRUNTIME void
+SWIG_Python_TypeError(const char *type, PyObject *obj)
+{
+ if (type) {
+#if defined(SWIG_COBJECT_TYPES)
+ if (obj && SwigPyObject_Check(obj)) {
+ const char *otype = (const char *) SwigPyObject_GetDesc(obj);
+ if (otype) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received",
+ type, otype);
+ return;
+ }
+ } else
+#endif
+ {
+ const char *otype = (obj ? obj->ob_type->tp_name : 0);
+ if (otype) {
+ PyObject *str = PyObject_Str(obj);
+ const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0;
+ if (cstr) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received",
+ type, otype, cstr);
+ SWIG_Python_str_DelForPy3(cstr);
+ } else {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received",
+ type, otype);
+ }
+ Py_XDECREF(str);
+ return;
+ }
+ }
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected", type);
+ } else {
+ PyErr_Format(PyExc_TypeError, "unexpected type is received");
+ }
+}
+
+
+/* Convert a pointer value, signal an exception on a type mismatch */
+SWIGRUNTIME void *
+SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {
+ void *result;
+ if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) {
+ PyErr_Clear();
+#if SWIG_POINTER_EXCEPTION
+ if (flags) {
+ SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj);
+ SWIG_Python_ArgFail(argnum);
+ }
+#endif
+ }
+ return result;
+}
+
+#ifdef SWIGPYTHON_BUILTIN
+SWIGRUNTIME int
+SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
+ PyTypeObject *tp = obj->ob_type;
+ PyObject *descr;
+ PyObject *encoded_name;
+ descrsetfunc f;
+ int res = -1;
+
+# ifdef Py_USING_UNICODE
+ if (PyString_Check(name)) {
+ name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL);
+ if (!name)
+ return -1;
+ } else if (!PyUnicode_Check(name))
+# else
+ if (!PyString_Check(name))
+# endif
+ {
+ PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name);
+ return -1;
+ } else {
+ Py_INCREF(name);
+ }
+
+ if (!tp->tp_dict) {
+ if (PyType_Ready(tp) < 0)
+ goto done;
+ }
+
+ descr = _PyType_Lookup(tp, name);
+ f = NULL;
+ if (descr != NULL)
+ f = descr->ob_type->tp_descr_set;
+ if (!f) {
+ if (PyString_Check(name)) {
+ encoded_name = name;
+ Py_INCREF(name);
+ } else {
+ encoded_name = PyUnicode_AsUTF8String(name);
+ }
+ PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
+ Py_DECREF(encoded_name);
+ } else {
+ res = f(descr, obj, value);
+ }
+
+ done:
+ Py_DECREF(name);
+ return res;
+}
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+
+#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
+
+#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
+
+
+
+ #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0)
+
+
+/* -------- TYPES TABLE (BEGIN) -------- */
+
+#define SWIGTYPE_p_Config swig_types[0]
+#define SWIGTYPE_p_Decoder swig_types[1]
+#define SWIGTYPE_p_Feature swig_types[2]
+#define SWIGTYPE_p_FrontEnd swig_types[3]
+#define SWIGTYPE_p_FsgModel swig_types[4]
+#define SWIGTYPE_p_Hypothesis swig_types[5]
+#define SWIGTYPE_p_Lattice swig_types[6]
+#define SWIGTYPE_p_LogMath swig_types[7]
+#define SWIGTYPE_p_NBest swig_types[8]
+#define SWIGTYPE_p_NBestIterator swig_types[9]
+#define SWIGTYPE_p_NBestList swig_types[10]
+#define SWIGTYPE_p_NGramModel swig_types[11]
+#define SWIGTYPE_p_Segment swig_types[12]
+#define SWIGTYPE_p_SegmentIterator swig_types[13]
+#define SWIGTYPE_p_SegmentList swig_types[14]
+#define SWIGTYPE_p_char swig_types[15]
+#define SWIGTYPE_p_int swig_types[16]
+#define SWIGTYPE_p_ps_nbest_t swig_types[17]
+#define SWIGTYPE_p_ps_seg_t swig_types[18]
+static swig_type_info *swig_types[20];
+static swig_module_info swig_module = {swig_types, 19, 0, 0, 0, 0};
+#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
+#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
+
+/* -------- TYPES TABLE (END) -------- */
+
+#if (PY_VERSION_HEX <= 0x02000000)
+# if !defined(SWIG_PYTHON_CLASSIC)
+# error "This python version requires swig to be run with the '-classic' option"
+# endif
+#endif
+
+/*-----------------------------------------------
+ @(target):= _pocketsphinx.so
+ ------------------------------------------------*/
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_init PyInit__pocketsphinx
+
+#else
+# define SWIG_init init_pocketsphinx
+
+#endif
+#define SWIG_name "_pocketsphinx"
+
+#define SWIGVERSION 0x020011
+#define SWIG_VERSION SWIGVERSION
+
+
+#define SWIG_as_voidptr(a) (void *)((const void *)(a))
+#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
+
+
+typedef cmd_ln_t Config;
+typedef feat_t Feature;
+typedef fe_t FrontEnd;
+typedef fsg_model_t FsgModel;
+typedef logmath_t LogMath;
+typedef ngram_model_t NGramModel;
+typedef ngram_model_t NGramModelSet;
+
+
+
+// TODO: make private with %immutable
+typedef struct {
+ char *hypstr;
+ int best_score;
+ int prob;
+} Hypothesis;
+
+typedef struct {
+ char *word;
+ int32 ascore;
+ int32 lscore;
+ int32 lback;
+ int32 prob;
+ int start_frame;
+ int end_frame;
+} Segment;
+
+typedef struct {
+ char *hypstr;
+ int32 score;
+} NBest;
+
+
+
+SWIGINTERN swig_type_info*
+SWIG_pchar_descriptor(void)
+{
+ static int init = 0;
+ static swig_type_info* info = 0;
+ if (!init) {
+ info = SWIG_TypeQuery("_p_char");
+ init = 1;
+ }
+ return info;
+}
+
+
+SWIGINTERN int
+SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
+{
+#if PY_VERSION_HEX>=0x03000000
+ if (PyUnicode_Check(obj))
+#else
+ if (PyString_Check(obj))
+#endif
+ {
+ char *cstr; Py_ssize_t len;
+#if PY_VERSION_HEX>=0x03000000
+ if (!alloc && cptr) {
+ /* We can't allow converting without allocation, since the internal
+ representation of string in Python 3 is UCS-2/UCS-4 but we require
+ a UTF-8 representation.
+ TODO(bhy) More detailed explanation */
+ return SWIG_RuntimeError;
+ }
+ obj = PyUnicode_AsUTF8String(obj);
+ PyBytes_AsStringAndSize(obj, &cstr, &len);
+ if(alloc) *alloc = SWIG_NEWOBJ;
+#else
+ PyString_AsStringAndSize(obj, &cstr, &len);
+#endif
+ if (cptr) {
+ if (alloc) {
+ /*
+ In python the user should not be able to modify the inner
+ string representation. To warranty that, if you define
+ SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
+ buffer is always returned.
+
+ The default behavior is just to return the pointer value,
+ so, be careful.
+ */
+#if defined(SWIG_PYTHON_SAFE_CSTRINGS)
+ if (*alloc != SWIG_OLDOBJ)
+#else
+ if (*alloc == SWIG_NEWOBJ)
+#endif
+ {
+ *cptr = (char *)memcpy((char *)malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1));
+ *alloc = SWIG_NEWOBJ;
+ }
+ else {
+ *cptr = cstr;
+ *alloc = SWIG_OLDOBJ;
+ }
+ } else {
+ #if PY_VERSION_HEX>=0x03000000
+ assert(0); /* Should never reach here in Python 3 */
+ #endif
+ *cptr = SWIG_Python_str_AsChar(obj);
+ }
+ }
+ if (psize) *psize = len + 1;
+#if PY_VERSION_HEX>=0x03000000
+ Py_XDECREF(obj);
+#endif
+ return SWIG_OK;
+ } else {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ if (pchar_descriptor) {
+ void* vptr = 0;
+ if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
+ if (cptr) *cptr = (char *) vptr;
+ if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
+ if (alloc) *alloc = SWIG_OLDOBJ;
+ return SWIG_OK;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+
+
+
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtrAndSize(const char* carray, size_t size)
+{
+ if (carray) {
+ if (size > INT_MAX) {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ return pchar_descriptor ?
+ SWIG_InternalNewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void();
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromStringAndSize(carray, (int)(size));
+#else
+ return PyString_FromStringAndSize(carray, (int)(size));
+#endif
+ }
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtr(const char *cptr)
+{
+ return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0));
+}
+
+
+#include
+#if !defined(SWIG_NO_LLONG_MAX)
+# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
+# define LLONG_MAX __LONG_LONG_MAX__
+# define LLONG_MIN (-LLONG_MAX - 1LL)
+# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
+# endif
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_double (PyObject *obj, double *val)
+{
+ int res = SWIG_TypeError;
+ if (PyFloat_Check(obj)) {
+ if (val) *val = PyFloat_AsDouble(obj);
+ return SWIG_OK;
+ } else if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ double v = PyLong_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ double d = PyFloat_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = d;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_AddCast(SWIG_OK));
+ } else {
+ PyErr_Clear();
+ }
+ }
+ }
+#endif
+ return res;
+}
+
+
+#include
+
+
+#include
+
+
+SWIGINTERNINLINE int
+SWIG_CanCastAsInteger(double *d, double min, double max) {
+ double x = *d;
+ if ((min <= x && x <= max)) {
+ double fx = floor(x);
+ double cx = ceil(x);
+ double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */
+ if ((errno == EDOM) || (errno == ERANGE)) {
+ errno = 0;
+ } else {
+ double summ, reps, diff;
+ if (rd < x) {
+ diff = x - rd;
+ } else if (rd > x) {
+ diff = rd - x;
+ } else {
+ return 1;
+ }
+ summ = rd + x;
+ reps = diff/summ;
+ if (reps < 8*DBL_EPSILON) {
+ *d = rd;
+ return 1;
+ }
+ }
+ }
+ return 0;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_long (PyObject *obj, long* val)
+{
+ if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ long v = PyInt_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) {
+ if (val) *val = (long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_int (PyObject * obj, int *val)
+{
+ long v;
+ int res = SWIG_AsVal_long (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if ((v < INT_MIN || v > INT_MAX)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (int)(v);
+ }
+ }
+ return res;
+}
+
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_int (int value)
+{
+ return PyInt_FromLong((long) value);
+}
+
+SWIGINTERN Hypothesis *new_Hypothesis(char const *hypstr,int best_score,int prob){
+ Hypothesis *h = (Hypothesis *)ckd_malloc(sizeof *h);
+ if (hypstr)
+ h->hypstr = ckd_salloc(hypstr);
+ else
+ h->hypstr = NULL;
+ h->best_score = best_score;
+ h->prob = prob;
+ return h;
+ }
+SWIGINTERN void delete_Hypothesis(Hypothesis *self){
+ if (self->hypstr)
+ ckd_free(self->hypstr);
+ ckd_free(self);
+ }
+SWIGINTERN Segment *Segment_fromIter(ps_seg_t *itor){
+ Segment *seg;
+ if (!itor)
+ return NULL;
+ seg = (Segment *)ckd_malloc(sizeof(Segment));
+ seg->word = ckd_salloc(ps_seg_word(itor));
+ seg->prob = ps_seg_prob(itor, &(seg->ascore), &(seg->lscore), &(seg->lback));
+ ps_seg_frames(itor, &seg->start_frame, &seg->end_frame);
+ return seg;
+ }
+SWIGINTERN void delete_Segment(Segment *self){
+ ckd_free(self->word);
+ ckd_free(self);
+ }
+SWIGINTERN NBest *NBest_fromIter(ps_nbest_t *itor){
+ NBest *nbest;
+ if (!itor)
+ return NULL;
+ nbest = (NBest *)ckd_malloc(sizeof(NBest));
+ nbest->hypstr = ckd_salloc(ps_nbest_hyp(itor, &(nbest->score)));
+ return nbest;
+ }
+SWIGINTERN Hypothesis *NBest_hyp(NBest *self){
+ return self->hypstr ? new_Hypothesis(self->hypstr, self->score, 0) : NULL;
+ }
+SWIGINTERN void delete_NBest(NBest *self){
+ ckd_free(self->hypstr);
+ ckd_free(self);
+ }
+
+typedef struct {
+ ps_seg_t *ptr;
+} SegmentIterator;
+
+SWIGINTERN SegmentIterator *new_SegmentIterator(ps_seg_t *ptr){
+ SegmentIterator *iter = (SegmentIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_SegmentIterator(SegmentIterator *self){
+ if (self->ptr)
+ ps_seg_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN Segment *SegmentIterator_next(SegmentIterator *self){
+ if (self->ptr) {
+ Segment *value =Segment_fromIter(self->ptr);
+ self->ptr =ps_seg_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN Segment *SegmentIterator___next__(SegmentIterator *self){
+ if (self->ptr) {
+ Segment *value =Segment_fromIter(self->ptr);
+ self->ptr =ps_seg_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+
+typedef struct {
+ ps_nbest_t *ptr;
+} NBestIterator;
+
+SWIGINTERN NBestIterator *new_NBestIterator(ps_nbest_t *ptr){
+ NBestIterator *iter = (NBestIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_NBestIterator(NBestIterator *self){
+ if (self->ptr)
+ ps_nbest_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN NBest *NBestIterator_next(NBestIterator *self){
+ if (self->ptr) {
+ NBest *value =NBest_fromIter(self->ptr);
+ self->ptr =ps_nbest_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NBest *NBestIterator___next__(NBestIterator *self){
+ if (self->ptr) {
+ NBest *value =NBest_fromIter(self->ptr);
+ self->ptr =ps_nbest_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN Decoder *new_Decoder__SWIG_0(int *errcode){
+ Decoder *d = ps_init(cmd_ln_init(NULL, ps_args(), FALSE, NULL));
+ *errcode = d ? 0 : -1;
+ return d;
+ }
+SWIGINTERN Decoder *new_Decoder__SWIG_1(Config *config,int *errcode){
+ Decoder *d = ps_init(config);
+ *errcode = d ? 0 : -1;
+ return d;
+ }
+SWIGINTERN void delete_Decoder(Decoder *self){
+ ps_free(self);
+ }
+SWIGINTERN void Decoder_reinit(Decoder *self,Config *config,int *errcode){
+ *errcode = ps_reinit(self, config);
+ }
+SWIGINTERN void Decoder_load_dict(Decoder *self,char const *fdict,char const *ffilter,char const *format,int *errcode){
+ *errcode = ps_load_dict(self, fdict, ffilter, format);
+ }
+SWIGINTERN void Decoder_save_dict(Decoder *self,char const *dictfile,char const *format,int *errcode){
+ *errcode = ps_save_dict(self, dictfile, format);
+ }
+SWIGINTERN void Decoder_add_word(Decoder *self,char const *word,char const *phones,int update,int *errcode){
+ *errcode = ps_add_word(self, word, phones, update);
+ }
+SWIGINTERN char *Decoder_lookup_word(Decoder *self,char const *word){
+ return ps_lookup_word(self, word);
+ }
+SWIGINTERN Lattice *Decoder_get_lattice(Decoder *self){
+ return ps_lattice_retain(ps_get_lattice(self));
+ }
+SWIGINTERN Config *Decoder_get_config(Decoder *self){
+ return cmd_ln_retain(ps_get_config(self));
+ }
+SWIGINTERN Config *Decoder_default_config(void){
+ return cmd_ln_parse_r(NULL, ps_args(), 0, NULL, FALSE);
+ }
+SWIGINTERN Config *Decoder_file_config(char const *path){
+ return cmd_ln_parse_file_r(NULL, ps_args(), path, FALSE);
+ }
+SWIGINTERN void Decoder_start_stream(Decoder *self,int *errcode){
+ *errcode = ps_start_stream(self);
+ }
+SWIGINTERN void Decoder_start_utt(Decoder *self,int *errcode){
+ *errcode = ps_start_utt(self);
+ }
+SWIGINTERN void Decoder_end_utt(Decoder *self,int *errcode){
+ *errcode = ps_end_utt(self);
+ }
+
+SWIGINTERN int
+SWIG_AsVal_bool (PyObject *obj, bool *val)
+{
+ int r = PyObject_IsTrue(obj);
+ if (r == -1)
+ return SWIG_ERROR;
+ if (val) *val = r ? true : false;
+ return SWIG_OK;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val)
+{
+#if PY_VERSION_HEX < 0x03000000
+ if (PyInt_Check(obj)) {
+ long v = PyInt_AsLong(obj);
+ if (v >= 0) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ return SWIG_OverflowError;
+ }
+ } else
+#endif
+ if (PyLong_Check(obj)) {
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+#if PY_VERSION_HEX >= 0x03000000
+ {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (v < 0) {
+ return SWIG_OverflowError;
+ }
+ } else {
+ PyErr_Clear();
+ }
+ }
+#endif
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
+ if (val) *val = (unsigned long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERNINLINE int
+SWIG_AsVal_size_t (PyObject * obj, size_t *val)
+{
+ unsigned long v;
+ int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0);
+ if (SWIG_IsOK(res) && val) *val = (size_t)(v);
+ return res;
+}
+
+SWIGINTERN int Decoder_process_raw(Decoder *self,char const *SDATA,size_t NSAMP,bool no_search,bool full_utt,int *errcode){
+ NSAMP /= sizeof(int16);
+ return *errcode = ps_process_raw(self, (int16 *)SDATA, NSAMP, no_search, full_utt);
+ }
+SWIGINTERN int Decoder_process_cep(Decoder *self,char const *SDATA,size_t NSAMP,bool no_search,bool full_utt,int *errcode){
+ mfcc_t **feats;
+ int ncep = fe_get_output_size(ps_get_fe(self));
+ NSAMP /= ncep * sizeof(mfcc_t);
+ feats = ckd_calloc_2d(NSAMP, ncep, sizeof(mfcc_t));
+ memcpy(feats[0], SDATA, NSAMP * ncep * sizeof(mfcc_t));
+ *errcode = ps_process_cep(self, feats, NSAMP, no_search, full_utt);
+ ckd_free_2d(feats);
+ return *errcode;
+ }
+SWIGINTERN Hypothesis *Decoder_hyp(Decoder *self){
+ char const *hyp;
+ int32 best_score, prob;
+ hyp = ps_get_hyp(self, &best_score);
+ if (hyp)
+ prob = ps_get_prob(self);
+ return hyp ? new_Hypothesis(hyp, best_score, prob) : NULL;
+ }
+SWIGINTERN FrontEnd *Decoder_get_fe(Decoder *self){
+ return ps_get_fe(self);
+ }
+SWIGINTERN Feature *Decoder_get_feat(Decoder *self){
+ return ps_get_feat(self);
+ }
+SWIGINTERN bool Decoder_get_in_speech(Decoder *self){
+ return ps_get_in_speech(self);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_bool (bool value)
+{
+ return PyBool_FromLong(value ? 1 : 0);
+}
+
+SWIGINTERN FsgModel *Decoder_get_fsg(Decoder *self,char const *name){
+ return fsg_model_retain(ps_get_fsg(self, name));
+ }
+SWIGINTERN void Decoder_set_fsg(Decoder *self,char const *name,FsgModel *fsg,int *errcode){
+ *errcode = ps_set_fsg(self, name, fsg);
+ }
+SWIGINTERN void Decoder_set_jsgf_file(Decoder *self,char const *name,char const *path,int *errcode){
+ *errcode = ps_set_jsgf_file(self, name, path);
+ }
+SWIGINTERN void Decoder_set_jsgf_string(Decoder *self,char const *name,char const *jsgf_string,int *errcode){
+ *errcode = ps_set_jsgf_string(self, name, jsgf_string);
+ }
+SWIGINTERN char const *Decoder_get_kws(Decoder *self,char const *name){
+ return ps_get_kws(self, name);
+ }
+SWIGINTERN void Decoder_set_kws(Decoder *self,char const *name,char const *keyfile,int *errcode){
+ *errcode = ps_set_kws(self, name, keyfile);
+ }
+SWIGINTERN void Decoder_set_keyphrase(Decoder *self,char const *name,char const *keyphrase,int *errcode){
+ *errcode = ps_set_keyphrase(self, name, keyphrase);
+ }
+SWIGINTERN void Decoder_set_allphone_file(Decoder *self,char const *name,char const *lmfile,int *errcode){
+ *errcode = ps_set_allphone_file(self, name, lmfile);
+ }
+SWIGINTERN NGramModel *Decoder_get_lm(Decoder *self,char const *name){
+ return ngram_model_retain(ps_get_lm(self, name));
+ }
+SWIGINTERN void Decoder_set_lm(Decoder *self,char const *name,NGramModel *lm,int *errcode){
+ *errcode = ps_set_lm(self, name, lm);
+ }
+SWIGINTERN void Decoder_set_lm_file(Decoder *self,char const *name,char const *path,int *errcode){
+ *errcode = ps_set_lm_file(self, name, path);
+ }
+SWIGINTERN LogMath *Decoder_get_logmath(Decoder *self){
+ return logmath_retain(ps_get_logmath(self));
+ }
+SWIGINTERN void Decoder_set_search(Decoder *self,char const *search_name,int *errcode){
+ *errcode = ps_set_search(self, search_name);
+ }
+SWIGINTERN char const *Decoder_get_search(Decoder *self){
+ return ps_get_search(self);
+ }
+SWIGINTERN int Decoder_n_frames(Decoder *self){
+ return ps_get_n_frames(self);
+ }
+SWIGINTERN SegmentList *Decoder_seg(Decoder *self){
+ return self;
+ }
+SWIGINTERN NBestList *Decoder_nbest(Decoder *self){
+ return self;
+ }
+SWIGINTERN Lattice *new_Lattice__SWIG_0(char const *path){
+ return ps_lattice_read(NULL, path);
+ }
+SWIGINTERN Lattice *new_Lattice__SWIG_1(Decoder *decoder,char *path){
+ return ps_lattice_read(decoder, path);
+ }
+SWIGINTERN void delete_Lattice(Lattice *self){
+ ps_lattice_free(self);
+ }
+SWIGINTERN void Lattice_write(Lattice *self,char const *path,int *errcode){
+ *errcode = ps_lattice_write(self, path);
+ }
+SWIGINTERN void Lattice_write_htk(Lattice *self,char const *path,int *errcode){
+ *errcode = ps_lattice_write_htk(self, path);
+ }
+SWIGINTERN NBestIterator *NBestList___iter__(NBestList *self){
+ return new_NBestIterator(ps_nbest(self));
+ }
+SWIGINTERN SegmentIterator *SegmentList___iter__(SegmentList *self){
+ return new_SegmentIterator(ps_seg_iter(self));
+ }
+#ifdef __cplusplus
+extern "C" {
+#endif
+SWIGINTERN PyObject *_wrap_Hypothesis_hypstr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_hypstr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_hypstr_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Hypothesis_hypstr_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->hypstr) free((char*)arg1->hypstr);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->hypstr = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->hypstr = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_hypstr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_hypstr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_hypstr_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (char *) ((arg1)->hypstr);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_best_score_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_best_score_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_best_score_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Hypothesis_best_score_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->best_score = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_best_score_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_best_score_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_best_score_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (int) ((arg1)->best_score);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_prob_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_prob_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_prob_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Hypothesis_prob_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->prob = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_prob_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_prob_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_prob_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (int) ((arg1)->prob);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Hypothesis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int arg2 ;
+ int arg3 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_Hypothesis",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Hypothesis" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_Hypothesis" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_Hypothesis" "', argument " "3"" of type '" "int""'");
+ }
+ arg3 = (int)(val3);
+ result = (Hypothesis *)new_Hypothesis((char const *)arg1,arg2,arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Hypothesis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Hypothesis",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Hypothesis" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ delete_Hypothesis(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Hypothesis_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Hypothesis, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_Segment_word_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_word_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_word_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Segment_word_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->word) free((char*)arg1->word);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->word = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->word = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_word_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_word_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_word_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (char *) ((arg1)->word);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_ascore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_ascore_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_ascore_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_ascore_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->ascore = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_ascore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_ascore_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_ascore_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->ascore);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lscore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_lscore_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lscore_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_lscore_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->lscore = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lscore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_lscore_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lscore_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->lscore);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lback_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_lback_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lback_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_lback_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->lback = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lback_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_lback_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lback_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->lback);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_prob_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_prob_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_prob_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_prob_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->prob = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_prob_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_prob_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_prob_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->prob);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_start_frame_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_start_frame_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_start_frame_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_start_frame_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->start_frame = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_start_frame_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_start_frame_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_start_frame_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (int) ((arg1)->start_frame);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_end_frame_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_end_frame_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_end_frame_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_end_frame_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->end_frame = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_end_frame_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_end_frame_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_end_frame_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (int) ((arg1)->end_frame);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_seg_t *arg1 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_fromIter" "', argument " "1"" of type '" "ps_seg_t *""'");
+ }
+ arg1 = (ps_seg_t *)(argp1);
+ result = (Segment *)Segment_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Segment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Segment",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Segment" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ delete_Segment(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Segment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_Segment")) SWIG_fail;
+ result = (Segment *)calloc(1, sizeof(Segment));
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Segment_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Segment, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBest_hypstr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBest_hypstr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hypstr_set" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NBest_hypstr_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->hypstr) free((char*)arg1->hypstr);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->hypstr = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->hypstr = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_hypstr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_hypstr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hypstr_get" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = (char *) ((arg1)->hypstr);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_score_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBest_score_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_score_set" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NBest_score_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->score = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_score_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_score_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_score_get" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = ((arg1)->score);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_nbest_t *arg1 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_fromIter" "', argument " "1"" of type '" "ps_nbest_t *""'");
+ }
+ arg1 = (ps_nbest_t *)(argp1);
+ result = (NBest *)NBest_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_hyp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_hyp",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hyp" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = (Hypothesis *)NBest_hyp(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBest",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBest" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ delete_NBest(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NBest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_NBest")) SWIG_fail;
+ result = (NBest *)calloc(1, sizeof(NBest));
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBest_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBest, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ ps_seg_t *arg2 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:SegmentIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_ptr_set" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ps_seg_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SegmentIterator_ptr_set" "', argument " "2"" of type '" "ps_seg_t *""'");
+ }
+ arg2 = (ps_seg_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ps_seg_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_ptr_get" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ result = (ps_seg_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_SegmentIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_seg_t *arg1 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_SegmentIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_SegmentIterator" "', argument " "1"" of type '" "ps_seg_t *""'");
+ }
+ arg1 = (ps_seg_t *)(argp1);
+ result = (SegmentIterator *)new_SegmentIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_SegmentIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_SegmentIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_SegmentIterator" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ delete_SegmentIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_next" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (Segment *)SegmentIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator___next__" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (Segment *)SegmentIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *SegmentIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_SegmentIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBestIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ ps_nbest_t *arg2 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBestIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_ptr_set" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ps_nbest_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NBestIterator_ptr_set" "', argument " "2"" of type '" "ps_nbest_t *""'");
+ }
+ arg2 = (ps_nbest_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ps_nbest_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_ptr_get" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ result = (ps_nbest_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NBestIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_nbest_t *arg1 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NBestIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NBestIterator" "', argument " "1"" of type '" "ps_nbest_t *""'");
+ }
+ arg1 = (ps_nbest_t *)(argp1);
+ result = (NBestIterator *)new_NBestIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBestIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBestIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBestIterator" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ delete_NBestIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_next" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NBest *)NBestIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator___next__" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NBest *)NBestIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBestIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBestIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Decoder__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ int *arg1 = (int *) 0 ;
+ Decoder *result = 0 ;
+
+ int errcode;
+ arg1 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)":new_Decoder")) SWIG_fail;
+ result = (Decoder *)new_Decoder__SWIG_0(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Decoder, SWIG_POINTER_NEW | 0 );
+ {
+ if (*arg1 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "new_Decoder returned %d", *arg1);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Decoder__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Decoder *result = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Decoder",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Decoder" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ result = (Decoder *)new_Decoder__SWIG_1(arg1,arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Decoder, SWIG_POINTER_NEW | 0 );
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "new_Decoder returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Decoder(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[2];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 1) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 0) {
+ return _wrap_new_Decoder__SWIG_0(self, args);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Config, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Decoder__SWIG_1(self, args);
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_Decoder'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " Decoder::Decoder(int *)\n"
+ " Decoder::Decoder(Config *,int *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Decoder(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Decoder",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Decoder" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ delete_Decoder(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_reinit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ Config *arg2 = (Config *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_reinit",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_reinit" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_reinit" "', argument " "2"" of type '" "Config *""'");
+ }
+ arg2 = (Config *)(argp2);
+ Decoder_reinit(arg1,arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_reinit returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_load_dict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ char *arg4 = (char *) 0 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int res4 ;
+ char *buf4 = 0 ;
+ int alloc4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_load_dict",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_load_dict" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_load_dict" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_load_dict" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "Decoder_load_dict" "', argument " "4"" of type '" "char const *""'");
+ }
+ arg4 = (char *)(buf4);
+ Decoder_load_dict(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_load_dict returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_save_dict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_save_dict",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_save_dict" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_save_dict" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_save_dict" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_save_dict(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_save_dict returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_add_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int arg4 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_add_word",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_add_word" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_add_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_add_word" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_add_word" "', argument " "4"" of type '" "int""'");
+ }
+ arg4 = (int)(val4);
+ Decoder_add_word(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_add_word returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_lookup_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_lookup_word",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_lookup_word" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_lookup_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Decoder_lookup_word(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ free((char*)result);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_lattice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_lattice" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Lattice *)Decoder_get_lattice(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_config",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_config" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Config *)Decoder_get_config(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_default_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":Decoder_default_config")) SWIG_fail;
+ result = (Config *)Decoder_default_config();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_file_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_file_config",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_file_config" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Config *)Decoder_file_config((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_start_stream(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_start_stream",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_start_stream" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_start_stream(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_start_stream returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_start_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_start_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_start_utt" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_start_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_start_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_end_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_end_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_end_utt" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_end_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_end_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_process_raw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ size_t arg3 ;
+ bool arg4 ;
+ bool arg5 ;
+ int *arg6 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ Py_ssize_t size2 = 0 ;
+ void const *buf2 = 0 ;
+ bool val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ int errcode;
+ arg6 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_process_raw",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_process_raw" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ {
+ res2 = PyObject_AsReadBuffer(obj1, &buf2, &size2);
+ if (res2<0) {
+ PyErr_Clear();
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_process_raw" "', argument " "2"" of type '" "(const char* SDATA, size_t NSAMP)""'");
+ }
+ arg2 = (char *) buf2;
+ arg3 = (size_t) (size2 / sizeof(char const));
+ }
+ ecode4 = SWIG_AsVal_bool(obj2, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_process_raw" "', argument " "4"" of type '" "bool""'");
+ }
+ arg4 = (bool)(val4);
+ ecode5 = SWIG_AsVal_bool(obj3, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Decoder_process_raw" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (int)Decoder_process_raw(arg1,(char const *)arg2,arg3,arg4,arg5,arg6);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg6 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_process_raw returned %d", *arg6);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_process_cep(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ size_t arg3 ;
+ bool arg4 ;
+ bool arg5 ;
+ int *arg6 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ Py_ssize_t size2 = 0 ;
+ void const *buf2 = 0 ;
+ bool val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ int errcode;
+ arg6 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_process_cep",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_process_cep" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ {
+ res2 = PyObject_AsReadBuffer(obj1, &buf2, &size2);
+ if (res2<0) {
+ PyErr_Clear();
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_process_cep" "', argument " "2"" of type '" "(const char* SDATA, size_t NSAMP)""'");
+ }
+ arg2 = (char *) buf2;
+ arg3 = (size_t) (size2 / sizeof(char const));
+ }
+ ecode4 = SWIG_AsVal_bool(obj2, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_process_cep" "', argument " "4"" of type '" "bool""'");
+ }
+ arg4 = (bool)(val4);
+ ecode5 = SWIG_AsVal_bool(obj3, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Decoder_process_cep" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (int)Decoder_process_cep(arg1,(char const *)arg2,arg3,arg4,arg5,arg6);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg6 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_process_cep returned %d", *arg6);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_hyp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_hyp",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_hyp" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Hypothesis *)Decoder_hyp(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_fe(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FrontEnd *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_fe",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_fe" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (FrontEnd *)Decoder_get_fe(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FrontEnd, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_feat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Feature *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_feat",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_feat" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Feature *)Decoder_get_feat(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Feature, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_in_speech(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_in_speech",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_in_speech" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (bool)Decoder_get_in_speech(arg1);
+ resultobj = SWIG_From_bool((bool)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_fsg",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_fsg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_fsg" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (FsgModel *)Decoder_get_fsg(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ FsgModel *arg3 = (FsgModel *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_fsg",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_fsg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_fsg" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_fsg" "', argument " "3"" of type '" "FsgModel *""'");
+ }
+ arg3 = (FsgModel *)(argp3);
+ Decoder_set_fsg(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_fsg returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_jsgf_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_jsgf_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_jsgf_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_jsgf_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_jsgf_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_jsgf_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_jsgf_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_jsgf_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_jsgf_string",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_jsgf_string" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_jsgf_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_jsgf_string" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_jsgf_string(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_jsgf_string returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_kws(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_kws",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_kws" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_kws" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Decoder_get_kws(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_kws(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_kws",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_kws" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_kws" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_kws" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_kws(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_kws returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_keyphrase(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_keyphrase",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_keyphrase" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_keyphrase" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_keyphrase" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_keyphrase(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_keyphrase returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_allphone_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_allphone_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_allphone_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_allphone_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_allphone_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_allphone_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_allphone_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_lm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_lm",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_lm" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_lm" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)Decoder_get_lm(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_lm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ NGramModel *arg3 = (NGramModel *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_lm",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_lm" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_lm" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_lm" "', argument " "3"" of type '" "NGramModel *""'");
+ }
+ arg3 = (NGramModel *)(argp3);
+ Decoder_set_lm(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_lm returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_lm_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_lm_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_lm_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_lm_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_lm_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_lm_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_lm_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_logmath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_logmath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_logmath" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (LogMath *)Decoder_get_logmath(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_search(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_set_search",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_search" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_search" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Decoder_set_search(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_search returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_search(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_search",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_search" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (char *)Decoder_get_search(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_n_frames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_n_frames",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_n_frames" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (int)Decoder_n_frames(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_seg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentList *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_seg",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_seg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (SegmentList *)Decoder_seg(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentList, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_nbest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestList *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_nbest",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_nbest" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (NBestList *)Decoder_nbest(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestList, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Decoder_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Decoder, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Lattice__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Lattice" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Lattice *)new_Lattice__SWIG_0((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Lattice__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:new_Lattice",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Lattice" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_Lattice" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (Lattice *)new_Lattice__SWIG_1(arg1,arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, SWIG_POINTER_NEW | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Lattice(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[3];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 2) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Lattice__SWIG_0(self, args);
+ }
+ }
+ if (argc == 2) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Decoder, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Lattice__SWIG_1(self, args);
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_Lattice'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " Lattice::Lattice(char const *)\n"
+ " Lattice::Lattice(Decoder *,char *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Lattice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Lattice" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ delete_Lattice(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Lattice_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Lattice_write",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Lattice_write" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Lattice_write" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Lattice_write(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Lattice_write returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Lattice_write_htk(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Lattice_write_htk",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Lattice_write_htk" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Lattice_write_htk" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Lattice_write_htk(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Lattice_write_htk returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Lattice_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Lattice, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBestList___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestList *arg1 = (NBestList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestList___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestList, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestList___iter__" "', argument " "1"" of type '" "NBestList *""'");
+ }
+ arg1 = (NBestList *)(argp1);
+ result = (NBestIterator *)NBestList___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBestList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestList *arg1 = (NBestList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBestList",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestList, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBestList" "', argument " "1"" of type '" "NBestList *""'");
+ }
+ arg1 = (NBestList *)(argp1);
+ free((char *) arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBestList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBestList, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_SegmentList___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentList *arg1 = (SegmentList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentList___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentList, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentList___iter__" "', argument " "1"" of type '" "SegmentList *""'");
+ }
+ arg1 = (SegmentList *)(argp1);
+ result = (SegmentIterator *)SegmentList___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_SegmentList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentList *arg1 = (SegmentList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_SegmentList",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentList, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_SegmentList" "', argument " "1"" of type '" "SegmentList *""'");
+ }
+ arg1 = (SegmentList *)(argp1);
+ free((char *) arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *SegmentList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_SegmentList, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+static PyMethodDef SwigMethods[] = {
+ { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL},
+ { (char *)"Hypothesis_hypstr_set", _wrap_Hypothesis_hypstr_set, METH_VARARGS, (char *)"Hypothesis_hypstr_set(Hypothesis self, char * hypstr)"},
+ { (char *)"Hypothesis_hypstr_get", _wrap_Hypothesis_hypstr_get, METH_VARARGS, (char *)"Hypothesis_hypstr_get(Hypothesis self) -> char *"},
+ { (char *)"Hypothesis_best_score_set", _wrap_Hypothesis_best_score_set, METH_VARARGS, (char *)"Hypothesis_best_score_set(Hypothesis self, int best_score)"},
+ { (char *)"Hypothesis_best_score_get", _wrap_Hypothesis_best_score_get, METH_VARARGS, (char *)"Hypothesis_best_score_get(Hypothesis self) -> int"},
+ { (char *)"Hypothesis_prob_set", _wrap_Hypothesis_prob_set, METH_VARARGS, (char *)"Hypothesis_prob_set(Hypothesis self, int prob)"},
+ { (char *)"Hypothesis_prob_get", _wrap_Hypothesis_prob_get, METH_VARARGS, (char *)"Hypothesis_prob_get(Hypothesis self) -> int"},
+ { (char *)"new_Hypothesis", _wrap_new_Hypothesis, METH_VARARGS, (char *)"new_Hypothesis(char const * hypstr, int best_score, int prob) -> Hypothesis"},
+ { (char *)"delete_Hypothesis", _wrap_delete_Hypothesis, METH_VARARGS, (char *)"delete_Hypothesis(Hypothesis self)"},
+ { (char *)"Hypothesis_swigregister", Hypothesis_swigregister, METH_VARARGS, NULL},
+ { (char *)"Segment_word_set", _wrap_Segment_word_set, METH_VARARGS, (char *)"Segment_word_set(Segment self, char * word)"},
+ { (char *)"Segment_word_get", _wrap_Segment_word_get, METH_VARARGS, (char *)"Segment_word_get(Segment self) -> char *"},
+ { (char *)"Segment_ascore_set", _wrap_Segment_ascore_set, METH_VARARGS, (char *)"Segment_ascore_set(Segment self, int32 ascore)"},
+ { (char *)"Segment_ascore_get", _wrap_Segment_ascore_get, METH_VARARGS, (char *)"Segment_ascore_get(Segment self) -> int32"},
+ { (char *)"Segment_lscore_set", _wrap_Segment_lscore_set, METH_VARARGS, (char *)"Segment_lscore_set(Segment self, int32 lscore)"},
+ { (char *)"Segment_lscore_get", _wrap_Segment_lscore_get, METH_VARARGS, (char *)"Segment_lscore_get(Segment self) -> int32"},
+ { (char *)"Segment_lback_set", _wrap_Segment_lback_set, METH_VARARGS, (char *)"Segment_lback_set(Segment self, int32 lback)"},
+ { (char *)"Segment_lback_get", _wrap_Segment_lback_get, METH_VARARGS, (char *)"Segment_lback_get(Segment self) -> int32"},
+ { (char *)"Segment_prob_set", _wrap_Segment_prob_set, METH_VARARGS, (char *)"Segment_prob_set(Segment self, int32 prob)"},
+ { (char *)"Segment_prob_get", _wrap_Segment_prob_get, METH_VARARGS, (char *)"Segment_prob_get(Segment self) -> int32"},
+ { (char *)"Segment_start_frame_set", _wrap_Segment_start_frame_set, METH_VARARGS, (char *)"Segment_start_frame_set(Segment self, int start_frame)"},
+ { (char *)"Segment_start_frame_get", _wrap_Segment_start_frame_get, METH_VARARGS, (char *)"Segment_start_frame_get(Segment self) -> int"},
+ { (char *)"Segment_end_frame_set", _wrap_Segment_end_frame_set, METH_VARARGS, (char *)"Segment_end_frame_set(Segment self, int end_frame)"},
+ { (char *)"Segment_end_frame_get", _wrap_Segment_end_frame_get, METH_VARARGS, (char *)"Segment_end_frame_get(Segment self) -> int"},
+ { (char *)"Segment_fromIter", _wrap_Segment_fromIter, METH_VARARGS, (char *)"Segment_fromIter(ps_seg_t * itor) -> Segment"},
+ { (char *)"delete_Segment", _wrap_delete_Segment, METH_VARARGS, (char *)"delete_Segment(Segment self)"},
+ { (char *)"new_Segment", _wrap_new_Segment, METH_VARARGS, (char *)"new_Segment() -> Segment"},
+ { (char *)"Segment_swigregister", Segment_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBest_hypstr_set", _wrap_NBest_hypstr_set, METH_VARARGS, (char *)"NBest_hypstr_set(NBest self, char * hypstr)"},
+ { (char *)"NBest_hypstr_get", _wrap_NBest_hypstr_get, METH_VARARGS, (char *)"NBest_hypstr_get(NBest self) -> char *"},
+ { (char *)"NBest_score_set", _wrap_NBest_score_set, METH_VARARGS, (char *)"NBest_score_set(NBest self, int32 score)"},
+ { (char *)"NBest_score_get", _wrap_NBest_score_get, METH_VARARGS, (char *)"NBest_score_get(NBest self) -> int32"},
+ { (char *)"NBest_fromIter", _wrap_NBest_fromIter, METH_VARARGS, (char *)"NBest_fromIter(ps_nbest_t * itor) -> NBest"},
+ { (char *)"NBest_hyp", _wrap_NBest_hyp, METH_VARARGS, (char *)"NBest_hyp(NBest self) -> Hypothesis"},
+ { (char *)"delete_NBest", _wrap_delete_NBest, METH_VARARGS, (char *)"delete_NBest(NBest self)"},
+ { (char *)"new_NBest", _wrap_new_NBest, METH_VARARGS, (char *)"new_NBest() -> NBest"},
+ { (char *)"NBest_swigregister", NBest_swigregister, METH_VARARGS, NULL},
+ { (char *)"SegmentIterator_ptr_set", _wrap_SegmentIterator_ptr_set, METH_VARARGS, (char *)"SegmentIterator_ptr_set(SegmentIterator self, ps_seg_t * ptr)"},
+ { (char *)"SegmentIterator_ptr_get", _wrap_SegmentIterator_ptr_get, METH_VARARGS, (char *)"SegmentIterator_ptr_get(SegmentIterator self) -> ps_seg_t *"},
+ { (char *)"new_SegmentIterator", _wrap_new_SegmentIterator, METH_VARARGS, (char *)"new_SegmentIterator(ps_seg_t * ptr) -> SegmentIterator"},
+ { (char *)"delete_SegmentIterator", _wrap_delete_SegmentIterator, METH_VARARGS, (char *)"delete_SegmentIterator(SegmentIterator self)"},
+ { (char *)"SegmentIterator_next", _wrap_SegmentIterator_next, METH_VARARGS, (char *)"SegmentIterator_next(SegmentIterator self) -> Segment"},
+ { (char *)"SegmentIterator___next__", _wrap_SegmentIterator___next__, METH_VARARGS, (char *)"SegmentIterator___next__(SegmentIterator self) -> Segment"},
+ { (char *)"SegmentIterator_swigregister", SegmentIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBestIterator_ptr_set", _wrap_NBestIterator_ptr_set, METH_VARARGS, (char *)"NBestIterator_ptr_set(NBestIterator self, ps_nbest_t * ptr)"},
+ { (char *)"NBestIterator_ptr_get", _wrap_NBestIterator_ptr_get, METH_VARARGS, (char *)"NBestIterator_ptr_get(NBestIterator self) -> ps_nbest_t *"},
+ { (char *)"new_NBestIterator", _wrap_new_NBestIterator, METH_VARARGS, (char *)"new_NBestIterator(ps_nbest_t * ptr) -> NBestIterator"},
+ { (char *)"delete_NBestIterator", _wrap_delete_NBestIterator, METH_VARARGS, (char *)"delete_NBestIterator(NBestIterator self)"},
+ { (char *)"NBestIterator_next", _wrap_NBestIterator_next, METH_VARARGS, (char *)"NBestIterator_next(NBestIterator self) -> NBest"},
+ { (char *)"NBestIterator___next__", _wrap_NBestIterator___next__, METH_VARARGS, (char *)"NBestIterator___next__(NBestIterator self) -> NBest"},
+ { (char *)"NBestIterator_swigregister", NBestIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Decoder", _wrap_new_Decoder, METH_VARARGS, (char *)"\n"
+ "Decoder()\n"
+ "new_Decoder(Config config) -> Decoder\n"
+ ""},
+ { (char *)"delete_Decoder", _wrap_delete_Decoder, METH_VARARGS, (char *)"delete_Decoder(Decoder self)"},
+ { (char *)"Decoder_reinit", _wrap_Decoder_reinit, METH_VARARGS, (char *)"Decoder_reinit(Decoder self, Config config)"},
+ { (char *)"Decoder_load_dict", _wrap_Decoder_load_dict, METH_VARARGS, (char *)"Decoder_load_dict(Decoder self, char const * fdict, char const * ffilter, char const * format)"},
+ { (char *)"Decoder_save_dict", _wrap_Decoder_save_dict, METH_VARARGS, (char *)"Decoder_save_dict(Decoder self, char const * dictfile, char const * format)"},
+ { (char *)"Decoder_add_word", _wrap_Decoder_add_word, METH_VARARGS, (char *)"Decoder_add_word(Decoder self, char const * word, char const * phones, int update)"},
+ { (char *)"Decoder_lookup_word", _wrap_Decoder_lookup_word, METH_VARARGS, (char *)"Decoder_lookup_word(Decoder self, char const * word) -> char *"},
+ { (char *)"Decoder_get_lattice", _wrap_Decoder_get_lattice, METH_VARARGS, (char *)"Decoder_get_lattice(Decoder self) -> Lattice"},
+ { (char *)"Decoder_get_config", _wrap_Decoder_get_config, METH_VARARGS, (char *)"Decoder_get_config(Decoder self) -> Config"},
+ { (char *)"Decoder_default_config", _wrap_Decoder_default_config, METH_VARARGS, (char *)"Decoder_default_config() -> Config"},
+ { (char *)"Decoder_file_config", _wrap_Decoder_file_config, METH_VARARGS, (char *)"Decoder_file_config(char const * path) -> Config"},
+ { (char *)"Decoder_start_stream", _wrap_Decoder_start_stream, METH_VARARGS, (char *)"Decoder_start_stream(Decoder self)"},
+ { (char *)"Decoder_start_utt", _wrap_Decoder_start_utt, METH_VARARGS, (char *)"Decoder_start_utt(Decoder self)"},
+ { (char *)"Decoder_end_utt", _wrap_Decoder_end_utt, METH_VARARGS, (char *)"Decoder_end_utt(Decoder self)"},
+ { (char *)"Decoder_process_raw", _wrap_Decoder_process_raw, METH_VARARGS, (char *)"Decoder_process_raw(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"},
+ { (char *)"Decoder_process_cep", _wrap_Decoder_process_cep, METH_VARARGS, (char *)"Decoder_process_cep(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"},
+ { (char *)"Decoder_hyp", _wrap_Decoder_hyp, METH_VARARGS, (char *)"Decoder_hyp(Decoder self) -> Hypothesis"},
+ { (char *)"Decoder_get_fe", _wrap_Decoder_get_fe, METH_VARARGS, (char *)"Decoder_get_fe(Decoder self) -> FrontEnd"},
+ { (char *)"Decoder_get_feat", _wrap_Decoder_get_feat, METH_VARARGS, (char *)"Decoder_get_feat(Decoder self) -> Feature"},
+ { (char *)"Decoder_get_in_speech", _wrap_Decoder_get_in_speech, METH_VARARGS, (char *)"Decoder_get_in_speech(Decoder self) -> bool"},
+ { (char *)"Decoder_get_fsg", _wrap_Decoder_get_fsg, METH_VARARGS, (char *)"Decoder_get_fsg(Decoder self, char const * name) -> FsgModel"},
+ { (char *)"Decoder_set_fsg", _wrap_Decoder_set_fsg, METH_VARARGS, (char *)"Decoder_set_fsg(Decoder self, char const * name, FsgModel fsg)"},
+ { (char *)"Decoder_set_jsgf_file", _wrap_Decoder_set_jsgf_file, METH_VARARGS, (char *)"Decoder_set_jsgf_file(Decoder self, char const * name, char const * path)"},
+ { (char *)"Decoder_set_jsgf_string", _wrap_Decoder_set_jsgf_string, METH_VARARGS, (char *)"Decoder_set_jsgf_string(Decoder self, char const * name, char const * jsgf_string)"},
+ { (char *)"Decoder_get_kws", _wrap_Decoder_get_kws, METH_VARARGS, (char *)"Decoder_get_kws(Decoder self, char const * name) -> char const *"},
+ { (char *)"Decoder_set_kws", _wrap_Decoder_set_kws, METH_VARARGS, (char *)"Decoder_set_kws(Decoder self, char const * name, char const * keyfile)"},
+ { (char *)"Decoder_set_keyphrase", _wrap_Decoder_set_keyphrase, METH_VARARGS, (char *)"Decoder_set_keyphrase(Decoder self, char const * name, char const * keyphrase)"},
+ { (char *)"Decoder_set_allphone_file", _wrap_Decoder_set_allphone_file, METH_VARARGS, (char *)"Decoder_set_allphone_file(Decoder self, char const * name, char const * lmfile)"},
+ { (char *)"Decoder_get_lm", _wrap_Decoder_get_lm, METH_VARARGS, (char *)"Decoder_get_lm(Decoder self, char const * name) -> NGramModel"},
+ { (char *)"Decoder_set_lm", _wrap_Decoder_set_lm, METH_VARARGS, (char *)"Decoder_set_lm(Decoder self, char const * name, NGramModel lm)"},
+ { (char *)"Decoder_set_lm_file", _wrap_Decoder_set_lm_file, METH_VARARGS, (char *)"Decoder_set_lm_file(Decoder self, char const * name, char const * path)"},
+ { (char *)"Decoder_get_logmath", _wrap_Decoder_get_logmath, METH_VARARGS, (char *)"Decoder_get_logmath(Decoder self) -> LogMath"},
+ { (char *)"Decoder_set_search", _wrap_Decoder_set_search, METH_VARARGS, (char *)"Decoder_set_search(Decoder self, char const * search_name)"},
+ { (char *)"Decoder_get_search", _wrap_Decoder_get_search, METH_VARARGS, (char *)"Decoder_get_search(Decoder self) -> char const *"},
+ { (char *)"Decoder_n_frames", _wrap_Decoder_n_frames, METH_VARARGS, (char *)"Decoder_n_frames(Decoder self) -> int"},
+ { (char *)"Decoder_seg", _wrap_Decoder_seg, METH_VARARGS, (char *)"Decoder_seg(Decoder self) -> SegmentList"},
+ { (char *)"Decoder_nbest", _wrap_Decoder_nbest, METH_VARARGS, (char *)"Decoder_nbest(Decoder self) -> NBestList"},
+ { (char *)"Decoder_swigregister", Decoder_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Lattice", _wrap_new_Lattice, METH_VARARGS, (char *)"\n"
+ "Lattice(char const * path)\n"
+ "new_Lattice(Decoder decoder, char * path) -> Lattice\n"
+ ""},
+ { (char *)"delete_Lattice", _wrap_delete_Lattice, METH_VARARGS, (char *)"delete_Lattice(Lattice self)"},
+ { (char *)"Lattice_write", _wrap_Lattice_write, METH_VARARGS, (char *)"Lattice_write(Lattice self, char const * path)"},
+ { (char *)"Lattice_write_htk", _wrap_Lattice_write_htk, METH_VARARGS, (char *)"Lattice_write_htk(Lattice self, char const * path)"},
+ { (char *)"Lattice_swigregister", Lattice_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBestList___iter__", _wrap_NBestList___iter__, METH_VARARGS, (char *)"NBestList___iter__(NBestList self) -> NBestIterator"},
+ { (char *)"delete_NBestList", _wrap_delete_NBestList, METH_VARARGS, (char *)"delete_NBestList(NBestList self)"},
+ { (char *)"NBestList_swigregister", NBestList_swigregister, METH_VARARGS, NULL},
+ { (char *)"SegmentList___iter__", _wrap_SegmentList___iter__, METH_VARARGS, (char *)"SegmentList___iter__(SegmentList self) -> SegmentIterator"},
+ { (char *)"delete_SegmentList", _wrap_delete_SegmentList, METH_VARARGS, (char *)"delete_SegmentList(SegmentList self)"},
+ { (char *)"SegmentList_swigregister", SegmentList_swigregister, METH_VARARGS, NULL},
+ { NULL, NULL, 0, NULL }
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
+
+static swig_type_info _swigt__p_Config = {"_p_Config", "Config *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Decoder = {"_p_Decoder", "Decoder *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Feature = {"_p_Feature", "Feature *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FrontEnd = {"_p_FrontEnd", "FrontEnd *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FsgModel = {"_p_FsgModel", "FsgModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Hypothesis = {"_p_Hypothesis", "Hypothesis *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Lattice = {"_p_Lattice", "Lattice *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_LogMath = {"_p_LogMath", "LogMath *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBest = {"_p_NBest", "NBest *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBestIterator = {"_p_NBestIterator", "NBestIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBestList = {"_p_NBestList", "NBestList *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModel = {"_p_NGramModel", "NGramModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Segment = {"_p_Segment", "Segment *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_SegmentIterator = {"_p_SegmentIterator", "SegmentIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_SegmentList = {"_p_SegmentList", "SegmentList *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ps_nbest_t = {"_p_ps_nbest_t", "ps_nbest_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ps_seg_t = {"_p_ps_seg_t", "ps_seg_t *", 0, 0, (void*)0, 0};
+
+static swig_type_info *swig_type_initial[] = {
+ &_swigt__p_Config,
+ &_swigt__p_Decoder,
+ &_swigt__p_Feature,
+ &_swigt__p_FrontEnd,
+ &_swigt__p_FsgModel,
+ &_swigt__p_Hypothesis,
+ &_swigt__p_Lattice,
+ &_swigt__p_LogMath,
+ &_swigt__p_NBest,
+ &_swigt__p_NBestIterator,
+ &_swigt__p_NBestList,
+ &_swigt__p_NGramModel,
+ &_swigt__p_Segment,
+ &_swigt__p_SegmentIterator,
+ &_swigt__p_SegmentList,
+ &_swigt__p_char,
+ &_swigt__p_int,
+ &_swigt__p_ps_nbest_t,
+ &_swigt__p_ps_seg_t,
+};
+
+static swig_cast_info _swigc__p_Config[] = { {&_swigt__p_Config, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Decoder[] = { {&_swigt__p_Decoder, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Feature[] = { {&_swigt__p_Feature, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FrontEnd[] = { {&_swigt__p_FrontEnd, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FsgModel[] = { {&_swigt__p_FsgModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Hypothesis[] = { {&_swigt__p_Hypothesis, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Lattice[] = { {&_swigt__p_Lattice, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_LogMath[] = { {&_swigt__p_LogMath, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBest[] = { {&_swigt__p_NBest, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBestIterator[] = { {&_swigt__p_NBestIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBestList[] = { {&_swigt__p_NBestList, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModel[] = { {&_swigt__p_NGramModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Segment[] = { {&_swigt__p_Segment, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_SegmentIterator[] = { {&_swigt__p_SegmentIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_SegmentList[] = { {&_swigt__p_SegmentList, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ps_nbest_t[] = { {&_swigt__p_ps_nbest_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ps_seg_t[] = { {&_swigt__p_ps_seg_t, 0, 0, 0},{0, 0, 0, 0}};
+
+static swig_cast_info *swig_cast_initial[] = {
+ _swigc__p_Config,
+ _swigc__p_Decoder,
+ _swigc__p_Feature,
+ _swigc__p_FrontEnd,
+ _swigc__p_FsgModel,
+ _swigc__p_Hypothesis,
+ _swigc__p_Lattice,
+ _swigc__p_LogMath,
+ _swigc__p_NBest,
+ _swigc__p_NBestIterator,
+ _swigc__p_NBestList,
+ _swigc__p_NGramModel,
+ _swigc__p_Segment,
+ _swigc__p_SegmentIterator,
+ _swigc__p_SegmentList,
+ _swigc__p_char,
+ _swigc__p_int,
+ _swigc__p_ps_nbest_t,
+ _swigc__p_ps_seg_t,
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
+
+static swig_const_info swig_const_table[] = {
+{0, 0, 0, 0.0, 0, 0}};
+
+#ifdef __cplusplus
+}
+#endif
+/* -----------------------------------------------------------------------------
+ * Type initialization:
+ * This problem is tough by the requirement that no dynamic
+ * memory is used. Also, since swig_type_info structures store pointers to
+ * swig_cast_info structures and swig_cast_info structures store pointers back
+ * to swig_type_info structures, we need some lookup code at initialization.
+ * The idea is that swig generates all the structures that are needed.
+ * The runtime then collects these partially filled structures.
+ * The SWIG_InitializeModule function takes these initial arrays out of
+ * swig_module, and does all the lookup, filling in the swig_module.types
+ * array with the correct data and linking the correct swig_cast_info
+ * structures together.
+ *
+ * The generated swig_type_info structures are assigned staticly to an initial
+ * array. We just loop through that array, and handle each type individually.
+ * First we lookup if this type has been already loaded, and if so, use the
+ * loaded structure instead of the generated one. Then we have to fill in the
+ * cast linked list. The cast data is initially stored in something like a
+ * two-dimensional array. Each row corresponds to a type (there are the same
+ * number of rows as there are in the swig_type_initial array). Each entry in
+ * a column is one of the swig_cast_info structures for that type.
+ * The cast_initial array is actually an array of arrays, because each row has
+ * a variable number of columns. So to actually build the cast linked list,
+ * we find the array of casts associated with the type, and loop through it
+ * adding the casts to the list. The one last trick we need to do is making
+ * sure the type pointer in the swig_cast_info struct is correct.
+ *
+ * First off, we lookup the cast->type name to see if it is already loaded.
+ * There are three cases to handle:
+ * 1) If the cast->type has already been loaded AND the type we are adding
+ * casting info to has not been loaded (it is in this module), THEN we
+ * replace the cast->type pointer with the type pointer that has already
+ * been loaded.
+ * 2) If BOTH types (the one we are adding casting info to, and the
+ * cast->type) are loaded, THEN the cast info has already been loaded by
+ * the previous module so we just ignore it.
+ * 3) Finally, if cast->type has not already been loaded, then we add that
+ * swig_cast_info to the linked list (because the cast->type) pointer will
+ * be correct.
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#if 0
+} /* c-mode */
+#endif
+#endif
+
+#if 0
+#define SWIGRUNTIME_DEBUG
+#endif
+
+
+SWIGRUNTIME void
+SWIG_InitializeModule(void *clientdata) {
+ size_t i;
+ swig_module_info *module_head, *iter;
+ int found, init;
+
+ /* check to see if the circular list has been setup, if not, set it up */
+ if (swig_module.next==0) {
+ /* Initialize the swig_module */
+ swig_module.type_initial = swig_type_initial;
+ swig_module.cast_initial = swig_cast_initial;
+ swig_module.next = &swig_module;
+ init = 1;
+ } else {
+ init = 0;
+ }
+
+ /* Try and load any already created modules */
+ module_head = SWIG_GetModule(clientdata);
+ if (!module_head) {
+ /* This is the first module loaded for this interpreter */
+ /* so set the swig module into the interpreter */
+ SWIG_SetModule(clientdata, &swig_module);
+ module_head = &swig_module;
+ } else {
+ /* the interpreter has loaded a SWIG module, but has it loaded this one? */
+ found=0;
+ iter=module_head;
+ do {
+ if (iter==&swig_module) {
+ found=1;
+ break;
+ }
+ iter=iter->next;
+ } while (iter!= module_head);
+
+ /* if the is found in the list, then all is done and we may leave */
+ if (found) return;
+ /* otherwise we must add out module into the list */
+ swig_module.next = module_head->next;
+ module_head->next = &swig_module;
+ }
+
+ /* When multiple interpreters are used, a module could have already been initialized in
+ a different interpreter, but not yet have a pointer in this interpreter.
+ In this case, we do not want to continue adding types... everything should be
+ set up already */
+ if (init == 0) return;
+
+ /* Now work on filling in swig_module.types */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: size %d\n", swig_module.size);
+#endif
+ for (i = 0; i < swig_module.size; ++i) {
+ swig_type_info *type = 0;
+ swig_type_info *ret;
+ swig_cast_info *cast;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+#endif
+
+ /* if there is another module already loaded */
+ if (swig_module.next != &swig_module) {
+ type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
+ }
+ if (type) {
+ /* Overwrite clientdata field */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found type %s\n", type->name);
+#endif
+ if (swig_module.type_initial[i]->clientdata) {
+ type->clientdata = swig_module.type_initial[i]->clientdata;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name);
+#endif
+ }
+ } else {
+ type = swig_module.type_initial[i];
+ }
+
+ /* Insert casting types */
+ cast = swig_module.cast_initial[i];
+ while (cast->type) {
+ /* Don't need to add information already in the list */
+ ret = 0;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: look cast %s\n", cast->type->name);
+#endif
+ if (swig_module.next != &swig_module) {
+ ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name);
+#endif
+ }
+ if (ret) {
+ if (type == swig_module.type_initial[i]) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: skip old type %s\n", ret->name);
+#endif
+ cast->type = ret;
+ ret = 0;
+ } else {
+ /* Check for casting already in the list */
+ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name);
+#endif
+ if (!ocast) ret = 0;
+ }
+ }
+
+ if (!ret) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name);
+#endif
+ if (type->cast) {
+ type->cast->prev = cast;
+ cast->next = type->cast;
+ }
+ type->cast = cast;
+ }
+ cast++;
+ }
+ /* Set entry in modules->types array equal to the type */
+ swig_module.types[i] = type;
+ }
+ swig_module.types[i] = 0;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+ for (i = 0; i < swig_module.size; ++i) {
+ int j = 0;
+ swig_cast_info *cast = swig_module.cast_initial[i];
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+ while (cast->type) {
+ printf("SWIG_InitializeModule: cast type %s\n", cast->type->name);
+ cast++;
+ ++j;
+ }
+ printf("---- Total casts: %d\n",j);
+ }
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+#endif
+}
+
+/* This function will propagate the clientdata field of type to
+* any new swig_type_info structures that have been added into the list
+* of equivalent types. It is like calling
+* SWIG_TypeClientData(type, clientdata) a second time.
+*/
+SWIGRUNTIME void
+SWIG_PropagateClientData(void) {
+ size_t i;
+ swig_cast_info *equiv;
+ static int init_run = 0;
+
+ if (init_run) return;
+ init_run = 1;
+
+ for (i = 0; i < swig_module.size; i++) {
+ if (swig_module.types[i]->clientdata) {
+ equiv = swig_module.types[i]->cast;
+ while (equiv) {
+ if (!equiv->converter) {
+ if (equiv->type && !equiv->type->clientdata)
+ SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
+ }
+ equiv = equiv->next;
+ }
+ }
+ }
+}
+
+#ifdef __cplusplus
+#if 0
+{
+ /* c-mode */
+#endif
+}
+#endif
+
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* Python-specific SWIG API */
+#define SWIG_newvarlink() SWIG_Python_newvarlink()
+#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
+#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
+
+ /* -----------------------------------------------------------------------------
+ * global variable support code.
+ * ----------------------------------------------------------------------------- */
+
+ typedef struct swig_globalvar {
+ char *name; /* Name of global variable */
+ PyObject *(*get_attr)(void); /* Return the current value */
+ int (*set_attr)(PyObject *); /* Set the value */
+ struct swig_globalvar *next;
+ } swig_globalvar;
+
+ typedef struct swig_varlinkobject {
+ PyObject_HEAD
+ swig_globalvar *vars;
+ } swig_varlinkobject;
+
+ SWIGINTERN PyObject *
+ swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_InternFromString("");
+#else
+ return PyString_FromString("");
+#endif
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_str(swig_varlinkobject *v) {
+#if PY_VERSION_HEX >= 0x03000000
+ PyObject *str = PyUnicode_InternFromString("(");
+ PyObject *tail;
+ PyObject *joined;
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ tail = PyUnicode_FromString(var->name);
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ if (var->next) {
+ tail = PyUnicode_InternFromString(", ");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ }
+ }
+ tail = PyUnicode_InternFromString(")");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+#else
+ PyObject *str = PyString_FromString("(");
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ PyString_ConcatAndDel(&str,PyString_FromString(var->name));
+ if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", "));
+ }
+ PyString_ConcatAndDel(&str,PyString_FromString(")"));
+#endif
+ return str;
+ }
+
+ SWIGINTERN int
+ swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {
+ char *tmp;
+ PyObject *str = swig_varlink_str(v);
+ fprintf(fp,"Swig global variables ");
+ fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str));
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(str);
+ return 0;
+ }
+
+ SWIGINTERN void
+ swig_varlink_dealloc(swig_varlinkobject *v) {
+ swig_globalvar *var = v->vars;
+ while (var) {
+ swig_globalvar *n = var->next;
+ free(var->name);
+ free(var);
+ var = n;
+ }
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_getattr(swig_varlinkobject *v, char *n) {
+ PyObject *res = NULL;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->get_attr)();
+ break;
+ }
+ var = var->next;
+ }
+ if (res == NULL && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN int
+ swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {
+ int res = 1;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->set_attr)(p);
+ break;
+ }
+ var = var->next;
+ }
+ if (res == 1 && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN PyTypeObject*
+ swig_varlink_type(void) {
+ static char varlink__doc__[] = "Swig var link object";
+ static PyTypeObject varlink_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"swigvarlink", /* tp_name */
+ sizeof(swig_varlinkobject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor) swig_varlink_dealloc, /* tp_dealloc */
+ (printfunc) swig_varlink_print, /* tp_print */
+ (getattrfunc) swig_varlink_getattr, /* tp_getattr */
+ (setattrfunc) swig_varlink_setattr, /* tp_setattr */
+ 0, /* tp_compare */
+ (reprfunc) swig_varlink_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ 0, /* tp_hash */
+ 0, /* tp_call */
+ (reprfunc) swig_varlink_str, /* tp_str */
+ 0, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ 0, /* tp_flags */
+ varlink__doc__, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ varlink_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ varlink_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&varlink_type) < 0)
+ return NULL;
+#endif
+ }
+ return &varlink_type;
+ }
+
+ /* Create a variable linking object for use later */
+ SWIGINTERN PyObject *
+ SWIG_Python_newvarlink(void) {
+ swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type());
+ if (result) {
+ result->vars = 0;
+ }
+ return ((PyObject*) result);
+ }
+
+ SWIGINTERN void
+ SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {
+ swig_varlinkobject *v = (swig_varlinkobject *) p;
+ swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar));
+ if (gv) {
+ size_t size = strlen(name)+1;
+ gv->name = (char *)malloc(size);
+ if (gv->name) {
+ strncpy(gv->name,name,size);
+ gv->get_attr = get_attr;
+ gv->set_attr = set_attr;
+ gv->next = v->vars;
+ }
+ }
+ v->vars = gv;
+ }
+
+ SWIGINTERN PyObject *
+ SWIG_globals(void) {
+ static PyObject *_SWIG_globals = 0;
+ if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink();
+ return _SWIG_globals;
+ }
+
+ /* -----------------------------------------------------------------------------
+ * constants/methods manipulation
+ * ----------------------------------------------------------------------------- */
+
+ /* Install Constants */
+ SWIGINTERN void
+ SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {
+ PyObject *obj = 0;
+ size_t i;
+ for (i = 0; constants[i].type; ++i) {
+ switch(constants[i].type) {
+ case SWIG_PY_POINTER:
+ obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
+ break;
+ case SWIG_PY_BINARY:
+ obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
+ break;
+ default:
+ obj = 0;
+ break;
+ }
+ if (obj) {
+ PyDict_SetItemString(d, constants[i].name, obj);
+ Py_DECREF(obj);
+ }
+ }
+ }
+
+ /* -----------------------------------------------------------------------------*/
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ /* -----------------------------------------------------------------------------*/
+
+ SWIGINTERN void
+ SWIG_Python_FixMethods(PyMethodDef *methods,
+ swig_const_info *const_table,
+ swig_type_info **types,
+ swig_type_info **types_initial) {
+ size_t i;
+ for (i = 0; methods[i].ml_name; ++i) {
+ const char *c = methods[i].ml_doc;
+ if (c && (c = strstr(c, "swig_ptr: "))) {
+ int j;
+ swig_const_info *ci = 0;
+ const char *name = c + 10;
+ for (j = 0; const_table[j].type; ++j) {
+ if (strncmp(const_table[j].name, name,
+ strlen(const_table[j].name)) == 0) {
+ ci = &(const_table[j]);
+ break;
+ }
+ }
+ if (ci) {
+ void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0;
+ if (ptr) {
+ size_t shift = (ci->ptype) - types;
+ swig_type_info *ty = types_initial[shift];
+ size_t ldoc = (c - methods[i].ml_doc);
+ size_t lptr = strlen(ty->name)+2*sizeof(void*)+2;
+ char *ndoc = (char*)malloc(ldoc + lptr + 10);
+ if (ndoc) {
+ char *buff = ndoc;
+ strncpy(buff, methods[i].ml_doc, ldoc);
+ buff += ldoc;
+ strncpy(buff, "swig_ptr: ", 10);
+ buff += 10;
+ SWIG_PackVoidPtr(buff, ptr, ty->name, lptr);
+ methods[i].ml_doc = ndoc;
+ }
+ }
+ }
+ }
+ }
+ }
+
+#ifdef __cplusplus
+}
+#endif
+
+/* -----------------------------------------------------------------------------*
+ * Partial Init method
+ * -----------------------------------------------------------------------------*/
+
+#ifdef __cplusplus
+extern "C"
+#endif
+
+SWIGEXPORT
+#if PY_VERSION_HEX >= 0x03000000
+PyObject*
+#else
+void
+#endif
+SWIG_init(void) {
+ PyObject *m, *d, *md;
+#if PY_VERSION_HEX >= 0x03000000
+ static struct PyModuleDef SWIG_module = {
+# if PY_VERSION_HEX >= 0x03020000
+ PyModuleDef_HEAD_INIT,
+# else
+ {
+ PyObject_HEAD_INIT(NULL)
+ NULL, /* m_init */
+ 0, /* m_index */
+ NULL, /* m_copy */
+ },
+# endif
+ (char *) SWIG_name,
+ NULL,
+ -1,
+ SwigMethods,
+ NULL,
+ NULL,
+ NULL,
+ NULL
+ };
+#endif
+
+#if defined(SWIGPYTHON_BUILTIN)
+ static SwigPyClientData SwigPyObject_clientdata = {
+ 0, 0, 0, 0, 0, 0, 0
+ };
+ static PyGetSetDef this_getset_def = {
+ (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
+ };
+ static SwigPyGetSet thisown_getset_closure = {
+ (PyCFunction) SwigPyObject_own,
+ (PyCFunction) SwigPyObject_own
+ };
+ static PyGetSetDef thisown_getset_def = {
+ (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
+ };
+ PyObject *metatype_args;
+ PyTypeObject *builtin_pytype;
+ int builtin_base_count;
+ swig_type_info *builtin_basetype;
+ PyObject *tuple;
+ PyGetSetDescrObject *static_getset;
+ PyTypeObject *metatype;
+ SwigPyClientData *cd;
+ PyObject *public_interface, *public_symbol;
+ PyObject *this_descr;
+ PyObject *thisown_descr;
+ int i;
+
+ (void)builtin_pytype;
+ (void)builtin_base_count;
+ (void)builtin_basetype;
+ (void)tuple;
+ (void)static_getset;
+
+ /* metatype is used to implement static member variables. */
+ metatype_args = Py_BuildValue("(s(O){})", "SwigPyObjectType", &PyType_Type);
+ assert(metatype_args);
+ metatype = (PyTypeObject *) PyType_Type.tp_call((PyObject *) &PyType_Type, metatype_args, NULL);
+ assert(metatype);
+ Py_DECREF(metatype_args);
+ metatype->tp_setattro = (setattrofunc) &SwigPyObjectType_setattro;
+ assert(PyType_Ready(metatype) >= 0);
+#endif
+
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial);
+
+#if PY_VERSION_HEX >= 0x03000000
+ m = PyModule_Create(&SWIG_module);
+#else
+ m = Py_InitModule((char *) SWIG_name, SwigMethods);
+#endif
+ md = d = PyModule_GetDict(m);
+ (void)md;
+
+ SWIG_InitializeModule(0);
+
+#ifdef SWIGPYTHON_BUILTIN
+ SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject");
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ if (!cd) {
+ SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
+ SwigPyObject_clientdata.pytype = SwigPyObject_TypeOnce();
+ } else if (SwigPyObject_TypeOnce()->tp_basicsize != cd->pytype->tp_basicsize) {
+ PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules.");
+# if PY_VERSION_HEX >= 0x03000000
+ return NULL;
+# else
+ return;
+# endif
+ }
+
+ /* All objects have a 'this' attribute */
+ this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def);
+ (void)this_descr;
+
+ /* All objects have a 'thisown' attribute */
+ thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def);
+ (void)thisown_descr;
+
+ public_interface = PyList_New(0);
+ public_symbol = 0;
+ (void)public_symbol;
+
+ PyDict_SetItemString(md, "__all__", public_interface);
+ Py_DECREF(public_interface);
+ for (i = 0; SwigMethods[i].ml_name != NULL; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name);
+ for (i = 0; swig_const_table[i].name != 0; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name);
+#endif
+
+ SWIG_InstallConstants(d,swig_const_table);
+
+#if PY_VERSION_HEX >= 0x03000000
+ return m;
+#else
+ return;
+#endif
+}
+
diff --git a/pocketsphinx-5prealpha/swig/python/test/Makefile b/pocketsphinx-5prealpha/swig/python/test/Makefile
index 5909db7..c84bb37 100644
--- a/pocketsphinx-5prealpha/swig/python/test/Makefile
+++ b/pocketsphinx-5prealpha/swig/python/test/Makefile
@@ -124,19 +124,19 @@ am__can_run_installinfo = \
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -150,12 +150,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -164,7 +164,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -172,7 +172,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -206,15 +206,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python/test
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python/test
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python/test
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python/test
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -243,7 +243,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/test/Makefile b/pocketsphinx-5prealpha/test/Makefile
index 93e2f60..5dda652 100644
--- a/pocketsphinx-5prealpha/test/Makefile
+++ b/pocketsphinx-5prealpha/test/Makefile
@@ -184,19 +184,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -210,12 +210,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -224,7 +224,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -232,7 +232,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -266,15 +266,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -303,7 +303,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/test/regression/Makefile b/pocketsphinx-5prealpha/test/regression/Makefile
index 70b44c4..7285885 100644
--- a/pocketsphinx-5prealpha/test/regression/Makefile
+++ b/pocketsphinx-5prealpha/test/regression/Makefile
@@ -328,19 +328,19 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
$(TEST_LOG_FLAGS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -354,12 +354,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -368,7 +368,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -376,7 +376,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -410,15 +410,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test/regression
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test/regression
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test/regression
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test/regression
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -447,7 +447,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/pocketsphinx-5prealpha/test/testfuncs.sh b/pocketsphinx-5prealpha/test/testfuncs.sh
index 9af5d08..2a32aea 100644
--- a/pocketsphinx-5prealpha/test/testfuncs.sh
+++ b/pocketsphinx-5prealpha/test/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speech2text/pocketsphinx-5prealpha
+# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
builddir=../".."
sourcedir=../".."
tests=$sourcedir/test
diff --git a/pocketsphinx-5prealpha/test/unit/Makefile b/pocketsphinx-5prealpha/test/unit/Makefile
index 50d468d..d8bf41d 100644
--- a/pocketsphinx-5prealpha/test/unit/Makefile
+++ b/pocketsphinx-5prealpha/test/unit/Makefile
@@ -519,19 +519,19 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -545,12 +545,12 @@ EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
GREP = /bin/grep
-GST_CFLAGS =
-GST_LIBS =
+GST_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GST_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
GST_MAJORMINOR = 1.0
GST_PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex _*\(gst_\|Gst\|GST_\).*
-GStreamer_CFLAGS =
-GStreamer_LIBS =
+GStreamer_CFLAGS = -pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include
+GStreamer_LIBS = -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0
HAVE_DOXYGEN = no
HAVE_PKGCONFIG = yes
INSTALL = /usr/bin/install -c
@@ -559,7 +559,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -567,7 +567,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -601,15 +601,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test/unit
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test/unit
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test/unit
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/test/unit
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -638,7 +638,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/process-output.py b/process-output.py
new file mode 100644
index 0000000..d78154d
--- /dev/null
+++ b/process-output.py
@@ -0,0 +1,20 @@
+import sys
+import os
+from datetime import datetime
+
+speech_rec_lib = os.environ['SPEECH_RECOGNITION']
+def log_speech_input(speech_input):
+ with open(speech_rec_lib + "/output/log.txt", 'a') as f:
+ line = speech_input
+ time = datetime.now().strftime("%m/%d/%Y, %H:%M:%S")
+ line = time + ': ' + line
+ line = line.strip()
+ f.write(line + '\n')
+
+def process_speech_input(speech_input):
+ print(speech_input)
+ log_speech_input(speech_input)
+
+if __name__ == "__main__":
+ speech_input = sys.stdin.read()
+ process_speech_input(speech_input)
diff --git a/record.py b/record.py
new file mode 100644
index 0000000..64f8d21
--- /dev/null
+++ b/record.py
@@ -0,0 +1,135 @@
+"""INITIAL CODE FROM: https://stackoverflow.com/questions/892199/detect-record-audio-in-python"""
+
+
+from sys import byteorder
+from array import array
+from struct import pack
+import pyaudio
+import signal
+import wave
+
+THRESHOLD = 1100
+CHUNK_SIZE = 1024
+FORMAT = pyaudio.paInt16
+RATE = 16000
+AMOUNT_OF_SILENCE = 15 # represents an arbitrary unit. the greater this value, the "longer" period of constant silence is required before the recording stops
+def is_silent(snd_data):
+ "Returns 'True' if below the 'silent' threshold"
+ return max(snd_data) < THRESHOLD
+
+def normalize(snd_data):
+ "Average the volume out"
+ MAXIMUM = 16384
+ times = float(MAXIMUM)/max(abs(i) for i in snd_data)
+
+ r = array('h')
+ for i in snd_data:
+ r.append(int(i*times))
+ return r
+
+def trim(snd_data):
+ "Trim the blank spots at the start and end"
+ def _trim(snd_data):
+ snd_started = False
+ r = array('h')
+
+ for i in snd_data:
+ if not snd_started and abs(i)>THRESHOLD:
+ snd_started = True
+ r.append(i)
+
+ elif snd_started:
+ r.append(i)
+ return r
+
+ # Trim to the left
+ snd_data = _trim(snd_data)
+
+ # Trim to the right
+ snd_data.reverse()
+ snd_data = _trim(snd_data)
+ snd_data.reverse()
+ return snd_data
+
+def add_silence(snd_data, seconds):
+ "Add silence to the start and end of 'snd_data' of length 'seconds' (float)"
+ r = array('h', [0 for i in xrange(int(seconds*RATE))])
+ r.extend(snd_data)
+ r.extend([0 for i in xrange(int(seconds*RATE))])
+ return r
+
+def record():
+ """
+ Record a word or words from the microphone and
+ return the data as an array of signed shorts.
+
+ Normalizes the audio, trims silence from the
+ start and end, and pads with 0.5 seconds of
+ blank sound to make sure VLC et al can play
+ it without getting chopped off.
+ """
+ p = pyaudio.PyAudio()
+ stream = p.open(format=FORMAT, channels=1, rate=RATE,
+ input=True, output=True,
+ frames_per_buffer=CHUNK_SIZE)
+ num_silent = 0
+ snd_started = False # if true, the recording will not wait for the user to start talking
+
+ # handle the user force closing the script without the required amount of silence
+ global interrupted
+ interrupted = False
+ def interrupt_handler(signal, frame):
+ global interrupted
+ interrupted = True
+ signal.signal(signal.SIGINT, interrupt_handler)
+
+ r = array('h')
+
+ while 1:
+ # little endian, signed short
+ snd_data = array('h', stream.read(CHUNK_SIZE))
+ if byteorder == 'big':
+ snd_data.byteswap()
+ r.extend(snd_data)
+
+ silent = is_silent(snd_data)
+
+ if silent and snd_started:
+ num_silent += 1 # leaky bucket
+ elif not silent and snd_started:
+ if num_silent > 0:
+ num_silent -= 1 # leaky bucket
+ elif not silent and not snd_started:
+ print("User started to speak")
+ snd_started = True
+ if (snd_started and num_silent > AMOUNT_OF_SILENCE) or interrupted:
+ break
+
+ sample_width = p.get_sample_size(FORMAT)
+ stream.stop_stream()
+ stream.close()
+ p.terminate()
+
+ r = normalize(r)
+ r = trim(r)
+ r = add_silence(r, 0.5)
+ return sample_width, r
+
+def record_to_file(path):
+ "Records from the microphone and outputs the resulting data to 'path'"
+ sample_width, data = record()
+ data = pack('<' + ('h'*len(data)), *data)
+
+ wf = wave.open(path, 'wb')
+ wf.setnchannels(1)
+ wf.setsampwidth(sample_width)
+ wf.setframerate(RATE)
+ wf.writeframes(data)
+ print("Done recording")
+ return (data, wf)
+
+def start_recording():
+ return record_to_file('./inputs/raw_recording.wav') # returns raw data AND OPEN wave file
+if __name__ == "__main__":
+ start_recording()
+
diff --git a/snowboy-decode.c b/snowboy-decode.c
new file mode 100644
index 0000000..8628af8
--- /dev/null
+++ b/snowboy-decode.c
@@ -0,0 +1,26 @@
+#include
+#include
+#include
+#define BILLION 1000000000.0;
+
+
+int main(void) {
+ struct timespec start, end;
+ if (getenv("SPEECH_RECOGNITION") == NULL) {
+ system("echo Please set the SPEECH_RECOGNITION environment variable to point to the git repository");
+ return 1;
+ }
+ system("export LD_LIBRARY_PATH=/usr/local/lib");
+ while (system("python klauba.py") == 0) {
+ system("echo Starting to decode...");
+ clock_gettime(CLOCK_REALTIME, &start);
+ system("\
+ pocketsphinx_continuous \
+ -infile ./inputs/raw_recording.wav \
+ -remove_noise yes \
+ -lm ./models/corpus/Corpus_V3/100.lm \
+ -dict ./models/corpus/Corpus_V3/100.dic \
+ 2>./output/decode-details.log | python $SPEECH_RECOGNITION/process-output.py");
+ system("echo Done decoding...");
+ }
+}
diff --git a/sphinxbase-5prealpha/Makefile b/sphinxbase-5prealpha/Makefile
index 5d59206..cdd1570 100644
--- a/sphinxbase-5prealpha/Makefile
+++ b/sphinxbase-5prealpha/Makefile
@@ -236,13 +236,13 @@ distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -277,7 +277,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -310,13 +310,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -348,7 +348,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/autom4te.cache/requests b/sphinxbase-5prealpha/autom4te.cache/requests
index ead23ac..da4708a 100644
--- a/sphinxbase-5prealpha/autom4te.cache/requests
+++ b/sphinxbase-5prealpha/autom4te.cache/requests
@@ -44,190 +44,190 @@
'configure.ac'
],
{
- 'AC_LIBTOOL_GCJ' => 1,
- 'AC_DEFUN_ONCE' => 1,
- '_LT_AC_LOCK' => 1,
- '_LT_LINKER_OPTION' => 1,
- 'AC_LIBTOOL_CXX' => 1,
- '_LT_PROG_FC' => 1,
- 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'AC_LIBTOOL_CONFIG' => 1,
+ 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
'_LT_CC_BASENAME' => 1,
- 'AM_SILENT_RULES' => 1,
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
- 'AC_LTDL_DLLIB' => 1,
- 'AM_PROG_INSTALL_STRIP' => 1,
- 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
- 'AC_LTDL_SHLIBPATH' => 1,
- '_LT_REQUIRED_DARWIN_CHECKS' => 1,
- '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
- 'AM_PATH_PYTHON' => 1,
- 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
- 'AM_SANITY_CHECK' => 1,
+ 'AC_LIBTOOL_FC' => 1,
+ '_AM_SET_OPTIONS' => 1,
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
+ '_LT_DLL_DEF_P' => 1,
'_AM_IF_OPTION' => 1,
- 'LT_PROG_GCJ' => 1,
- 'AC_WITH_LTDL' => 1,
- 'AC_PROG_NM' => 1,
+ '_LTDL_SETUP' => 1,
+ 'AC_ENABLE_FAST_INSTALL' => 1,
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AC_LTDL_DLLIB' => 1,
+ '_LT_WITH_SYSROOT' => 1,
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
+ '_LT_AC_TAGVAR' => 1,
+ '_LT_LIBOBJ' => 1,
+ 'AC_DEPLIBS_CHECK_METHOD' => 1,
+ 'LT_SYS_DLSEARCH_PATH' => 1,
+ 'AC_PROG_LD' => 1,
+ '_AM_MANGLE_OPTION' => 1,
+ '_LT_AC_SYS_COMPILER' => 1,
+ 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'AC_CHECK_LIBM' => 1,
+ 'AC_LIBTOOL_CXX' => 1,
+ '_LT_AC_LOCK' => 1,
+ 'include' => 1,
+ 'AC_PROG_EGREP' => 1,
+ 'LT_LIB_M' => 1,
+ 'AC_LTDL_SYSSEARCHPATH' => 1,
+ '_LT_AC_LANG_C_CONFIG' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AM_DISABLE_STATIC' => 1,
+ 'm4_pattern_allow' => 1,
+ 'AC_PYTHON_DEVEL' => 1,
+ '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AC_LIBTOOL_PICMODE' => 1,
+ 'LT_PROG_GCJ' => 1,
+ '_AC_PROG_LIBTOOL' => 1,
+ 'AM_PROG_INSTALL_STRIP' => 1,
+ 'AC_PROG_LD_GNU' => 1,
'AM_SET_LEADING_DOT' => 1,
- 'LT_SYS_MODULE_PATH' => 1,
+ 'AC_LIBLTDL_INSTALLABLE' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
- '_LT_PROG_LTMAIN' => 1,
- 'AM_PROG_CC_C_O' => 1,
- '_AM_MANGLE_OPTION' => 1,
'm4_pattern_forbid' => 1,
- '_LT_AC_LANG_CXX_CONFIG' => 1,
- 'AC_LIBTOOL_FC' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
- 'AM_DISABLE_STATIC' => 1,
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
- '_LT_DLL_DEF_P' => 1,
+ 'LT_AC_PROG_SED' => 1,
+ 'AC_LIBTOOL_OBJDIR' => 1,
+ 'AM_PROG_INSTALL_SH' => 1,
+ '_m4_warn' => 1,
+ 'LT_SYS_MODULE_PATH' => 1,
+ 'AC_LIB_LTDL' => 1,
+ '_AM_CONFIG_MACRO_DIRS' => 1,
+ '_LT_AC_LANG_F77' => 1,
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
- 'AM_SET_DEPDIR' => 1,
+ 'LT_SYS_MODULE_EXT' => 1,
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
+ 'LT_OUTPUT' => 1,
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
+ 'AC_LIBTOOL_F77' => 1,
+ 'LTOPTIONS_VERSION' => 1,
+ 'AC_LTDL_DLSYM_USCORE' => 1,
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
'AC_LTDL_SYMBOL_USCORE' => 1,
- 'LT_FUNC_DLSYM_USCORE' => 1,
- 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
- '_AM_PROG_TAR' => 1,
- '_LT_AC_FILE_LTDLL_C' => 1,
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
+ 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
+ 'AM_DEP_TRACK' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ '_LT_AC_LANG_CXX' => 1,
+ '_LT_AC_LANG_GCJ' => 1,
+ 'AC_LTDL_OBJDIR' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
+ 'AC_DISABLE_SHARED' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'LT_AC_PROG_GCJ' => 1,
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
+ 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'LTDL_INIT' => 1,
+ 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
'm4_include' => 1,
'LT_LIB_DLLOAD' => 1,
- 'AC_LIB_LTDL' => 1,
+ 'LT_FUNC_DLSYM_USCORE' => 1,
+ 'AC_LIBTOOL_SETUP' => 1,
+ '_LT_LINKER_OPTION' => 1,
+ 'LTDL_INSTALLABLE' => 1,
+ 'AX_PKG_SWIG' => 1,
+ 'AC_ENABLE_SHARED' => 1,
+ 'LT_LANG' => 1,
+ 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
'AM_PROG_LIBTOOL' => 1,
- 'AC_LIBTOOL_OBJDIR' => 1,
- 'AC_DISABLE_SHARED' => 1,
- 'AM_PYTHON_CHECK_VERSION' => 1,
- 'LT_SYS_SYMBOL_USCORE' => 1,
+ 'AC_PATH_TOOL_PREFIX' => 1,
+ '_LT_AC_LANG_RC_CONFIG' => 1,
+ 'AC_DEFUN_ONCE' => 1,
'LT_PROG_GO' => 1,
- 'AC_PROG_EGREP' => 1,
- '_LT_AC_LANG_C_CONFIG' => 1,
'AC_LIBTOOL_PROG_CC_C_O' => 1,
- 'AX_PYTHON_DEVEL' => 1,
- 'AC_LIBLTDL_INSTALLABLE' => 1,
- 'LT_PATH_NM' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- '_AM_DEPENDENCIES' => 1,
- 'LT_INIT' => 1,
- 'AC_LIBTOOL_F77' => 1,
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
- 'AM_MISSING_HAS_RUN' => 1,
- '_LT_PATH_TOOL_PREFIX' => 1,
- '_LT_AC_LANG_RC_CONFIG' => 1,
- 'AC_LTDL_DLSYM_USCORE' => 1,
- 'AC_PATH_TOOL_PREFIX' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AC_LIBTOOL_DLOPEN_SELF' => 1,
- 'LT_AC_PROG_SED' => 1,
- '_LT_WITH_SYSROOT' => 1,
- 'AM_PROG_NM' => 1,
- '_LT_AC_SHELL_INIT' => 1,
- 'AU_DEFUN' => 1,
+ '_AM_AUTOCONF_VERSION' => 1,
+ 'AM_ENABLE_SHARED' => 1,
+ 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AM_PROG_LD' => 1,
- 'LT_SYS_DLSEARCH_PATH' => 1,
- 'm4_pattern_allow' => 1,
- '_LT_COMPILER_OPTION' => 1,
- 'AC_LIBTOOL_CONFIG' => 1,
+ 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
'AC_LIBLTDL_CONVENIENCE' => 1,
- 'LTVERSION_VERSION' => 1,
- 'AM_RUN_LOG' => 1,
- 'AC_LIBTOOL_LINKER_OPTION' => 1,
- 'LT_SYS_MODULE_EXT' => 1,
- '_LT_PROG_ECHO_BACKSLASH' => 1,
- 'AC_LIBTOOL_DLOPEN' => 1,
- 'LTDL_INIT' => 1,
- '_LT_AC_CHECK_DLFCN' => 1,
- 'AC_LIBTOOL_PICMODE' => 1,
- 'AC_LIBTOOL_RC' => 1,
- 'AM_DISABLE_SHARED' => 1,
- '_LT_AC_SYS_COMPILER' => 1,
+ 'AM_SANITY_CHECK' => 1,
+ 'AM_ENABLE_STATIC' => 1,
+ 'AC_WITH_LTDL' => 1,
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
- 'AC_LIBTOOL_COMPILER_OPTION' => 1,
- 'include' => 1,
- '_LT_AC_LANG_CXX' => 1,
- '_LT_AC_LANG_F77' => 1,
- 'AM_MISSING_PROG' => 1,
- 'LT_SUPPORTED_TAG' => 1,
- 'AC_PROG_LD' => 1,
- '_AM_CONFIG_MACRO_DIRS' => 1,
- 'LT_SYS_DLOPEN_DEPLIBS' => 1,
- '_LT_AC_LANG_GCJ' => 1,
- 'LTDL_CONVENIENCE' => 1,
- '_LT_LINKER_BOILERPLATE' => 1,
- 'AC_LIBTOOL_SETUP' => 1,
- 'AC_ENABLE_STATIC' => 1,
- 'AC_LTDL_SHLIBEXT' => 1,
- 'AC_PROG_LD_GNU' => 1,
- '_LT_PROG_F77' => 1,
+ 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
+ 'LTOBSOLETE_VERSION' => 1,
+ 'AU_DEFUN' => 1,
+ '_LT_PROG_LTMAIN' => 1,
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'AM_RUN_LOG' => 1,
'_LT_AC_PROG_CXXCPP' => 1,
- '_AM_SET_OPTION' => 1,
- 'AM_PROG_INSTALL_SH' => 1,
- '_m4_warn' => 1,
- '_AM_SET_OPTIONS' => 1,
- 'AM_ENABLE_SHARED' => 1,
- 'LT_FUNC_ARGZ' => 1,
- '_LT_LIBOBJ' => 1,
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- 'AM_DEP_TRACK' => 1,
- 'LTSUGAR_VERSION' => 1,
- '_LT_PROG_CXX' => 1,
- 'AM_ENABLE_STATIC' => 1,
- 'AC_CHECK_LIBM' => 1,
'LT_PROG_RC' => 1,
- '_AC_AM_CONFIG_HEADER_HOOK' => 1,
- '_LT_AC_TAGVAR' => 1,
+ '_LT_COMPILER_OPTION' => 1,
'AC_PROG_LD_RELOAD_FLAG' => 1,
- 'AC_LTDL_SYSSEARCHPATH' => 1,
- '_LT_AC_LANG_GCJ_CONFIG' => 1,
- '_AC_PROG_LIBTOOL' => 1,
- 'AC_CONFIG_MACRO_DIR' => 1,
'LT_WITH_LTDL' => 1,
- 'LTOPTIONS_VERSION' => 1,
- 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
- 'LT_LANG' => 1,
- '_LT_COMPILER_BOILERPLATE' => 1,
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
- 'AC_LTDL_PREOPEN' => 1,
- 'AX_PKG_SWIG' => 1,
'LT_CMD_MAX_LEN' => 1,
- 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
- '_AM_PROG_CC_C_O' => 1,
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
- 'LT_AC_PROG_GCJ' => 1,
- 'LT_LIB_M' => 1,
- 'AC_DISABLE_FAST_INSTALL' => 1,
- 'AM_MAKE_INCLUDE' => 1,
+ '_LT_AC_LANG_CXX_CONFIG' => 1,
+ 'AC_DISABLE_STATIC' => 1,
+ 'AC_PATH_MAGIC' => 1,
+ 'AM_AUX_DIR_EXPAND' => 1,
+ '_LT_AC_LANG_GCJ_CONFIG' => 1,
+ 'AC_LIBTOOL_DLOPEN' => 1,
+ 'AM_CONDITIONAL' => 1,
+ 'LT_AC_PROG_EGREP' => 1,
+ 'AM_MISSING_HAS_RUN' => 1,
+ '_LT_PROG_F77' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ '_LT_PROG_CXX' => 1,
+ 'AC_LTDL_SHLIBPATH' => 1,
'LT_SYS_DLOPEN_SELF' => 1,
- 'AC_DEPLIBS_CHECK_METHOD' => 1,
- 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
- 'AC_LTDL_OBJDIR' => 1,
- '_LT_PREPARE_SED_QUOTE_VARS' => 1,
- 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
- 'AC_DEFUN' => 1,
+ 'LT_SYS_SYMBOL_USCORE' => 1,
+ 'AC_ENABLE_STATIC' => 1,
+ '_LT_AC_FILE_LTDLL_C' => 1,
+ 'AM_PYTHON_CHECK_VERSION' => 1,
'AC_LIBTOOL_WIN32_DLL' => 1,
- 'AM_CONDITIONAL' => 1,
+ 'AM_DISABLE_SHARED' => 1,
+ 'LTVERSION_VERSION' => 1,
+ '_AM_PROG_CC_C_O' => 1,
+ 'LTDL_CONVENIENCE' => 1,
+ 'AM_PROG_NM' => 1,
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'AM_SET_DEPDIR' => 1,
+ 'LT_SYS_DLOPEN_DEPLIBS' => 1,
+ 'LT_INIT' => 1,
+ 'AC_LTDL_PREOPEN' => 1,
+ '_LT_PREPARE_SED_QUOTE_VARS' => 1,
+ '_LT_LINKER_BOILERPLATE' => 1,
+ 'AX_PYTHON_DEVEL' => 1,
+ 'AC_LIBTOOL_RC' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_CONFIG_MACRO_DIR' => 1,
'LT_AC_PROG_RC' => 1,
- 'LTOBSOLETE_VERSION' => 1,
- 'LTDL_INSTALLABLE' => 1,
- 'LT_OUTPUT' => 1,
- 'AC_DISABLE_STATIC' => 1,
+ 'LT_PATH_LD' => 1,
+ 'AC_DISABLE_FAST_INSTALL' => 1,
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
'_LT_AC_LANG_F77_CONFIG' => 1,
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
- 'AC_PATH_MAGIC' => 1,
- 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
- 'AM_SUBST_NOTMAKE' => 1,
- '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- '_LTDL_SETUP' => 1,
'AC_LTDL_ENABLE_INSTALL' => 1,
- 'AC_PYTHON_DEVEL' => 1,
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
- 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- '_AM_AUTOCONF_VERSION' => 1,
- 'LT_AC_PROG_EGREP' => 1,
- 'AC_ENABLE_SHARED' => 1,
- 'AM_AUX_DIR_EXPAND' => 1,
+ 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
+ '_LT_PROG_ECHO_BACKSLASH' => 1,
+ '_LT_AC_SHELL_INIT' => 1,
+ '_LT_REQUIRED_DARWIN_CHECKS' => 1,
+ '_LT_PROG_FC' => 1,
+ 'AM_PATH_PYTHON' => 1,
+ 'LTSUGAR_VERSION' => 1,
+ 'AC_LIBTOOL_COMPILER_OPTION' => 1,
+ 'AC_LIBTOOL_GCJ' => 1,
+ '_AM_SET_OPTION' => 1,
+ 'AM_SUBST_NOTMAKE' => 1,
+ 'LT_PATH_NM' => 1,
+ 'LT_FUNC_ARGZ' => 1,
+ '_AM_PROG_TAR' => 1,
+ '_LT_AC_CHECK_DLFCN' => 1,
+ '_LT_PATH_TOOL_PREFIX' => 1,
+ 'AC_LTDL_SHLIBEXT' => 1,
'AM_INIT_AUTOMAKE' => 1,
- 'AC_ENABLE_FAST_INSTALL' => 1,
- 'LT_PATH_LD' => 1
+ 'AC_LIBTOOL_DLOPEN_SELF' => 1,
+ 'AM_MISSING_PROG' => 1,
+ 'AC_DEFUN' => 1,
+ 'AC_PROG_NM' => 1,
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ '_AM_DEPENDENCIES' => 1,
+ 'AM_MAKE_INCLUDE' => 1
}
], 'Autom4te::Request' ),
bless( [
@@ -242,66 +242,66 @@
'configure.ac'
],
{
- 'AM_PROG_AR' => 1,
- 'LT_INIT' => 1,
- 'AC_CONFIG_FILES' => 1,
+ 'AC_CANONICAL_TARGET' => 1,
+ '_AM_COND_ELSE' => 1,
+ 'AC_DEFINE_TRACE_LITERAL' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'AC_CANONICAL_BUILD' => 1,
+ '_AM_MAKEFILE_INCLUDE' => 1,
+ 'AC_CONFIG_SUBDIRS' => 1,
+ '_m4_warn' => 1,
'AC_CONFIG_HEADERS' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- 'AM_CONDITIONAL' => 1,
- 'AC_FC_SRCEXT' => 1,
+ 'AC_CONFIG_FILES' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'AC_CONFIG_AUX_DIR' => 1,
+ 'm4_pattern_forbid' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ 'AM_PROG_F77_C_O' => 1,
'AM_POT_TOOLS' => 1,
+ 'm4_include' => 1,
+ 'AM_PROG_FC_C_O' => 1,
'_AM_COND_ENDIF' => 1,
- 'AM_PATH_GUILE' => 1,
+ 'AM_NLS' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
+ 'AM_CONDITIONAL' => 1,
+ '_AM_COND_IF' => 1,
+ 'AC_INIT' => 1,
+ 'AM_XGETTEXT_OPTION' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'sinclude' => 1,
+ 'AM_MAKEFILE_INCLUDE' => 1,
+ 'm4_pattern_allow' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AM_PROG_AR' => 1,
+ 'AC_LIBSOURCE' => 1,
+ 'AM_PROG_CXX_C_O' => 1,
'AM_ENABLE_MULTILIB' => 1,
- 'AC_SUBST' => 1,
'LT_SUPPORTED_TAG' => 1,
- 'AC_CANONICAL_SYSTEM' => 1,
- 'AC_LIBSOURCE' => 1,
- 'AC_INIT' => 1,
- 'AM_PROG_MKDIR_P' => 1,
- 'AM_PROG_LIBTOOL' => 1,
'include' => 1,
- 'AM_SILENT_RULES' => 1,
- 'AM_PROG_MOC' => 1,
+ 'AM_PATH_GUILE' => 1,
'AM_MAINTAINER_MODE' => 1,
- 'm4_include' => 1,
- 'AM_XGETTEXT_OPTION' => 1,
- 'AC_FC_PP_DEFINE' => 1,
- 'AC_CANONICAL_BUILD' => 1,
+ 'AC_FC_FREEFORM' => 1,
'AC_SUBST_TRACE' => 1,
- 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
- 'AC_CONFIG_LIBOBJ_DIR' => 1,
- 'AM_MAKEFILE_INCLUDE' => 1,
- '_AM_COND_ELSE' => 1,
- 'm4_pattern_allow' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AC_CONFIG_SUBDIRS' => 1,
- 'AC_CANONICAL_TARGET' => 1,
- 'AC_CONFIG_AUX_DIR' => 1,
- 'AM_GNU_GETTEXT' => 1,
- 'AC_CANONICAL_HOST' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AM_PROG_MOC' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_FC_PP_SRCEXT' => 1,
+ 'AC_SUBST' => 1,
+ 'AC_FC_PP_DEFINE' => 1,
+ 'AC_FC_SRCEXT' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'm4_sinclude' => 1,
- '_AM_COND_IF' => 1,
- 'AM_NLS' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- 'AC_FC_FREEFORM' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- 'AM_PROG_F77_C_O' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
'AH_OUTPUT' => 1,
- 'AM_PROG_FC_C_O' => 1,
- 'sinclude' => 1,
+ 'AC_CANONICAL_HOST' => 1,
+ 'LT_INIT' => 1,
+ 'AC_CANONICAL_SYSTEM' => 1,
'AC_CONFIG_LINKS' => 1,
- '_m4_warn' => 1,
- '_AM_MAKEFILE_INCLUDE' => 1,
- 'm4_pattern_forbid' => 1,
- 'AC_DEFINE_TRACE_LITERAL' => 1,
- 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
- 'AM_PROG_CC_C_O' => 1,
- 'AC_FC_PP_SRCEXT' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AM_PROG_CXX_C_O' => 1
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AM_GNU_GETTEXT' => 1,
+ 'AC_CONFIG_LIBOBJ_DIR' => 1
}
], 'Autom4te::Request' )
);
diff --git a/sphinxbase-5prealpha/config.log b/sphinxbase-5prealpha/config.log
index 845e821..7e6d353 100644
--- a/sphinxbase-5prealpha/config.log
+++ b/sphinxbase-5prealpha/config.log
@@ -950,9 +950,9 @@ configure:15001: checking for swig
configure:15019: found /usr/bin/swig
configure:15031: result: /usr/bin/swig
configure:15045: checking SWIG version
-configure:15048: result: 3.0.8
+configure:15048: result: 3.0.10
configure:15097: checking for SWIG library
-configure:15100: result: /usr/share/swig3.0
+configure:15100: result: /usr/share/swig/3.0.10
configure:15237: checking that generated files are newer than configure
configure:15243: result: done
configure:15295: creating ./config.status
@@ -1144,7 +1144,7 @@ lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
## Output variables. ##
## ----------------- ##
-ACLOCAL='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15'
+ACLOCAL='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
@@ -1154,9 +1154,9 @@ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
-AUTOCONF='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf'
-AUTOHEADER='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader'
-AUTOMAKE='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15'
+AUTOCONF='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf'
+AUTOHEADER='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader'
+AUTOMAKE='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15'
AWK='gawk'
BUILD_DOXYGEN_FALSE=''
BUILD_DOXYGEN_TRUE='#'
@@ -1198,7 +1198,7 @@ LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
-MAKEINFO='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo'
+MAKEINFO='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
@@ -1231,7 +1231,7 @@ SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
SWIG='/usr/bin/swig'
-SWIG_LIB='/usr/share/swig3.0'
+SWIG_LIB='/usr/share/swig/3.0.10'
USE_LAPACK_FALSE='#'
USE_LAPACK_TRUE=''
USE_THREADS_FALSE='#'
@@ -1274,7 +1274,7 @@ host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh'
+install_sh='${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
@@ -1337,21 +1337,3 @@ target_alias=''
#define HAVE_PYTHON "2.7"
configure: exit 0
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by sphinxbase config.status 5prealpha, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status include/config.h
-
-on pi
-
-config.status:1171: creating include/config.h
-config.status:1352: include/config.h is unchanged
diff --git a/sphinxbase-5prealpha/config.status b/sphinxbase-5prealpha/config.status
index e9ffc18..622a9ad 100755
--- a/sphinxbase-5prealpha/config.status
+++ b/sphinxbase-5prealpha/config.status
@@ -437,7 +437,7 @@ Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
-ac_pwd='/home/pi/speech2text/sphinxbase-5prealpha'
+ac_pwd='/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha'
srcdir='.'
INSTALL='/usr/bin/install -c'
MKDIR_P='/bin/mkdir -p'
@@ -861,7 +861,7 @@ S["LTLIBOBJS"]=""
S["LIBOBJS"]=""
S["BUILD_SWIG_FALSE"]="#"
S["BUILD_SWIG_TRUE"]=""
-S["SWIG_LIB"]="/usr/share/swig3.0"
+S["SWIG_LIB"]="/usr/share/swig/3.0.10"
S["SWIG"]="/usr/bin/swig"
S["PYTHON_EXTRA_LDFLAGS"]="-Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions"
S["PYTHON_EXTRA_LIBS"]="-lpthread -ldl -lutil -lm"
@@ -954,12 +954,12 @@ S["mkdir_p"]="$(MKDIR_P)"
S["MKDIR_P"]="/bin/mkdir -p"
S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh"
-S["MAKEINFO"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo"
-S["AUTOHEADER"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader"
-S["AUTOMAKE"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15"
-S["AUTOCONF"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf"
-S["ACLOCAL"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15"
+S["install_sh"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh"
+S["MAKEINFO"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo"
+S["AUTOHEADER"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader"
+S["AUTOMAKE"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15"
+S["AUTOCONF"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf"
+S["ACLOCAL"]="${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15"
S["VERSION"]="5prealpha"
S["PACKAGE"]="sphinxbase"
S["CYGPATH_W"]="echo"
diff --git a/sphinxbase-5prealpha/doc/Makefile b/sphinxbase-5prealpha/doc/Makefile
index 5d62d26..b51ee9a 100644
--- a/sphinxbase-5prealpha/doc/Makefile
+++ b/sphinxbase-5prealpha/doc/Makefile
@@ -155,13 +155,13 @@ MANS = $(man_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxyfile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -196,7 +196,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -229,13 +229,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/doc
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/doc
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/doc
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/doc
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -267,7 +267,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/include/Makefile b/sphinxbase-5prealpha/include/Makefile
index a53ba69..3d6dbdb 100644
--- a/sphinxbase-5prealpha/include/Makefile
+++ b/sphinxbase-5prealpha/include/Makefile
@@ -216,13 +216,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -257,7 +257,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -290,13 +290,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/include
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/include
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/include
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/include
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -328,7 +328,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/include/sphinxbase/Makefile b/sphinxbase-5prealpha/include/sphinxbase/Makefile
index ddccef2..8ba101e 100644
--- a/sphinxbase-5prealpha/include/sphinxbase/Makefile
+++ b/sphinxbase-5prealpha/include/sphinxbase/Makefile
@@ -173,13 +173,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -214,7 +214,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -247,13 +247,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/include/sphinxbase
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/include/sphinxbase
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/include/sphinxbase
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/include/sphinxbase
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -285,7 +285,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/sphinxbase.pc b/sphinxbase-5prealpha/sphinxbase.pc
new file mode 100644
index 0000000..41cb95b
--- /dev/null
+++ b/sphinxbase-5prealpha/sphinxbase.pc
@@ -0,0 +1,15 @@
+prefix=/usr/local
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+libs="-lpthread -lm -lblas -llapack "
+datadir=${prefix}/share/sphinxbase
+
+Name: SphinxBase
+Description: Shared components for Sphinx speech recognition
+Version: 5prealpha
+URL: http://www.cmusphinx.org/
+Libs: -L${libdir} -lsphinxbase -lsphinxad -lpthread -lm -lblas -llapack
+Libs.private: ${libs}
+Cflags: -I${includedir} -I${includedir}/sphinxbase
+
diff --git a/sphinxbase-5prealpha/src/Makefile b/sphinxbase-5prealpha/src/Makefile
index 323fbe4..3918e17 100644
--- a/sphinxbase-5prealpha/src/Makefile
+++ b/sphinxbase-5prealpha/src/Makefile
@@ -184,13 +184,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -258,13 +258,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3 b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3
new file mode 120000
index 0000000..b801397
--- /dev/null
+++ b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3
@@ -0,0 +1 @@
+libsphinxad.so.3.0.0
\ No newline at end of file
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0 b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0
new file mode 100755
index 0000000..94accf2
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T
new file mode 100755
index 0000000..4837f4b
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T differ
diff --git a/sphinxbase-5prealpha/src/libsphinxad/Makefile b/sphinxbase-5prealpha/src/libsphinxad/Makefile
index b533dbc..376b27f 100644
--- a/sphinxbase-5prealpha/src/libsphinxad/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxad/Makefile
@@ -207,13 +207,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -248,7 +248,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -281,13 +281,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxad
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxad
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -319,7 +319,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3 b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3
new file mode 120000
index 0000000..1fd6fd0
--- /dev/null
+++ b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3
@@ -0,0 +1 @@
+libsphinxbase.so.3.0.0
\ No newline at end of file
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0 b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0
new file mode 100755
index 0000000..9f528e3
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/Makefile
index b6dc934..a608b06 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/Makefile
@@ -245,13 +245,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -286,7 +286,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -319,13 +319,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -357,7 +357,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
index 85a8b79..e70a4ef 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
@@ -179,13 +179,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -220,7 +220,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -253,13 +253,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/fe
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/fe
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -291,7 +291,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
index db50327..21fcb8c 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
@@ -173,13 +173,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -214,7 +214,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -247,13 +247,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/feat
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/feat
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/feat
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/feat
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -285,7 +285,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
index aa2356f..029d5ad 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
@@ -189,13 +189,13 @@ CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/ylwrap jsgf_parser.c jsgf_parser.h
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -230,7 +230,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -263,13 +263,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/lm
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/lm
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/lm
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/lm
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -301,7 +301,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
index c050624..74e41b2 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
@@ -184,13 +184,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -258,13 +258,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/util
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/util
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/util
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/util
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg
new file mode 100755
index 0000000..be5c1fc
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg differ
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch
new file mode 100755
index 0000000..989ebe8
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch differ
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
index 2451cef..f9d0e72 100644
--- a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
@@ -184,13 +184,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -258,13 +258,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_adtools
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_adtools
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg
new file mode 100755
index 0000000..c88e8cb
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_cont_seg - temporary wrapper script for .libs/sphinx_cont_seg
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_cont_seg program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -g -O2 -Wall -o \$progdir/\$file cont_seg.o ../../src/libsphinxbase/.libs/libsphinxbase.so ../../src/libsphinxad/.libs/libsphinxad.so -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la ../../src/libsphinxad/libsphinxad.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_cont_seg:sphinx_cont_seg:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_cont_seg:sphinx_cont_seg:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_cont_seg:sphinx_cont_seg:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_cont_seg'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch
new file mode 100755
index 0000000..b7b1cd9
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_pitch - temporary wrapper script for .libs/sphinx_pitch
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_pitch program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -g -O2 -Wall -o \$progdir/\$file sphinx_pitch.o ../../src/libsphinxbase/.libs/libsphinxbase.so ../../src/libsphinxad/.libs/libsphinxad.so -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la ../../src/libsphinxad/libsphinxad.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_pitch:sphinx_pitch:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_pitch:sphinx_pitch:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_pitch:sphinx_pitch:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_pitch'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview b/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview
new file mode 100755
index 0000000..3a5f696
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview differ
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
index ea880db..e09fd1a 100644
--- a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
@@ -176,13 +176,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -217,7 +217,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -250,13 +250,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_cepview
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_cepview
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_cepview
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_cepview
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -288,7 +288,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview b/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview
new file mode 100755
index 0000000..c0664c8
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_cepview - temporary wrapper script for .libs/sphinx_cepview
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_cepview program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_cepview; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -g -O2 -Wall -o \$progdir/\$file main_cepview.o ../../src/libsphinxbase/.libs/libsphinxbase.so -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_cepview:sphinx_cepview:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_cepview:sphinx_cepview:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_cepview:sphinx_cepview:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_cepview'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe b/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe
new file mode 100755
index 0000000..a18d02c
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe differ
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/Makefile b/sphinxbase-5prealpha/src/sphinx_fe/Makefile
index 2b76808..99129a9 100644
--- a/sphinxbase-5prealpha/src/sphinx_fe/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_fe/Makefile
@@ -179,13 +179,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -220,7 +220,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -253,13 +253,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_fe
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_fe
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -291,7 +291,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe b/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe
new file mode 100755
index 0000000..cb578e3
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_fe - temporary wrapper script for .libs/sphinx_fe
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_fe program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_fe; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -I../../src/libsphinxbase/fe -g -O2 -Wall -o \$progdir/\$file sphinx_fe.o ../../src/libsphinxbase/.libs/libsphinxbase.so -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_fe:sphinx_fe:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_fe:sphinx_fe:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_fe:sphinx_fe:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_fe'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg
new file mode 100755
index 0000000..42dba82
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg differ
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
index 73524d8..02ee714 100644
--- a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
@@ -176,13 +176,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -217,7 +217,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -250,13 +250,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -288,7 +288,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg
new file mode 100755
index 0000000..148b7d2
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_jsgf2fsg - temporary wrapper script for .libs/sphinx_jsgf2fsg
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_jsgf2fsg program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -g -O2 -Wall -o \$progdir/\$file main.o ../../src/libsphinxbase/.libs/libsphinxbase.so -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_jsgf2fsg'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert
new file mode 100755
index 0000000..1f3623f
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert differ
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval
new file mode 100755
index 0000000..9d3b736
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval differ
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
index f2f8f21..6fdd3fc 100644
--- a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
@@ -184,13 +184,13 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -258,13 +258,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_lmtools
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_lmtools
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert
new file mode 100755
index 0000000..d8f17bc
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_lm_convert - temporary wrapper script for .libs/sphinx_lm_convert
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_lm_convert program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -I../../src/libsphinxlm -g -O2 -Wall -o \$progdir/\$file sphinx_lm_convert.o ../../src/libsphinxbase/.libs/libsphinxbase.so ../../src/libsphinxbase/lm/.libs/libsphinxlm.a -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_lm_convert:sphinx_lm_convert:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_lm_convert:sphinx_lm_convert:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_lm_convert:sphinx_lm_convert:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_lm_convert'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval
new file mode 100755
index 0000000..008f9a8
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval
@@ -0,0 +1,228 @@
+#! /bin/bash
+
+# sphinx_lm_eval - temporary wrapper script for .libs/sphinx_lm_eval
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-0.1
+#
+# The sphinx_lm_eval program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command="(cd /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=/usr/local/lib:; export LD_LIBRARY_PATH; PATH=/home/pi/bin:/home/pi/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; gcc -I../../include -I../../include -I../../src/libsphinxlm -g -O2 -Wall -o \$progdir/\$file sphinx_lm_eval.o ../../src/libsphinxbase/.libs/libsphinxbase.so ../../src/libsphinxbase/lm/.libs/libsphinxlm.a -lpthread -lm -lblas -llapack -Wl,-rpath -Wl,/home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs)"
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_lm_eval:sphinx_lm_eval:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-0.1" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_lm_eval:sphinx_lm_eval:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_lm_eval:sphinx_lm_eval:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program=lt-'sphinx_lm_eval'
+ progdir="$thisdir/.libs"
+
+ if test ! -f "$progdir/$program" ||
+ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \
+ test "X$file" != "X$progdir/$program"; }; then
+
+ file="$$-$program"
+
+ if test ! -d "$progdir"; then
+ mkdir "$progdir"
+ else
+ rm -f "$progdir/$file"
+ fi
+
+ # relink executable if necessary
+ if test -n "$relink_command"; then
+ if relink_command_output=`eval $relink_command 2>&1`; then :
+ else
+ $ECHO "$relink_command_output" >&2
+ rm -f "$progdir/$file"
+ exit 1
+ fi
+ fi
+
+ mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
+ { rm -f "$progdir/$program";
+ mv -f "$progdir/$file" "$progdir/$program"; }
+ rm -f "$progdir/$file"
+ fi
+
+ if test -f "$progdir/$program"; then
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/swig/Makefile b/sphinxbase-5prealpha/swig/Makefile
index ac6f870..6498e2f 100644
--- a/sphinxbase-5prealpha/swig/Makefile
+++ b/sphinxbase-5prealpha/swig/Makefile
@@ -215,13 +215,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -256,7 +256,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -289,13 +289,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/swig
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/swig
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/swig
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/swig
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -327,7 +327,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0 b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0
new file mode 120000
index 0000000..1b0b70b
--- /dev/null
+++ b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0
@@ -0,0 +1 @@
+_sphinxbase.so.0.0.0
\ No newline at end of file
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0 b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0
new file mode 100755
index 0000000..4391e47
Binary files /dev/null and b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0 differ
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T
new file mode 100755
index 0000000..4382d63
Binary files /dev/null and b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T differ
diff --git a/sphinxbase-5prealpha/swig/python/Makefile b/sphinxbase-5prealpha/swig/python/Makefile
index 021cb12..1f3034e 100644
--- a/sphinxbase-5prealpha/swig/python/Makefile
+++ b/sphinxbase-5prealpha/swig/python/Makefile
@@ -217,13 +217,13 @@ CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/py-compile
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -258,7 +258,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -291,13 +291,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/swig/python
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/swig/python
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/swig/python
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/swig/python
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -329,7 +329,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/swig/python/sphinxbase.py b/sphinxbase-5prealpha/swig/python/sphinxbase.py
new file mode 100644
index 0000000..f67d5c6
--- /dev/null
+++ b/sphinxbase-5prealpha/swig/python/sphinxbase.py
@@ -0,0 +1,495 @@
+# This file was automatically generated by SWIG (http://www.swig.org).
+# Version 2.0.11
+#
+# Do not make changes to this file unless you know what you are doing--modify
+# the SWIG interface file instead.
+
+
+
+
+"""
+This documentation was automatically generated using original comments in
+Doxygen format. As some C types and data structures cannot be directly mapped
+into Python types, some non-trivial type conversion could have place.
+Basically a type is replaced with another one that has the closest match, and
+sometimes one argument of generated function comprises several arguments of the
+original function (usually two).
+
+Functions having error code as the return value and returning effective
+value in one of its arguments are transformed so that the effective value is
+returned in a regular fashion and run-time exception is being thrown in case of
+negative error code.
+"""
+
+
+from sys import version_info
+if version_info >= (2,6,0):
+ def swig_import_helper():
+ from os.path import dirname
+ import imp
+ fp = None
+ try:
+ fp, pathname, description = imp.find_module('_sphinxbase', [dirname(__file__)])
+ except ImportError:
+ import _sphinxbase
+ return _sphinxbase
+ if fp is not None:
+ try:
+ _mod = imp.load_module('_sphinxbase', fp, pathname, description)
+ finally:
+ fp.close()
+ return _mod
+ _sphinxbase = swig_import_helper()
+ del swig_import_helper
+else:
+ import _sphinxbase
+del version_info
+try:
+ _swig_property = property
+except NameError:
+ pass # Python < 2.2 doesn't have 'property'.
+def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
+ if (name == "thisown"): return self.this.own(value)
+ if (name == "this"):
+ if type(value).__name__ == 'SwigPyObject':
+ self.__dict__[name] = value
+ return
+ method = class_type.__swig_setmethods__.get(name,None)
+ if method: return method(self,value)
+ if (not static):
+ self.__dict__[name] = value
+ else:
+ raise AttributeError("You cannot add attributes to %s" % self)
+
+def _swig_setattr(self,class_type,name,value):
+ return _swig_setattr_nondynamic(self,class_type,name,value,0)
+
+def _swig_getattr(self,class_type,name):
+ if (name == "thisown"): return self.this.own()
+ method = class_type.__swig_getmethods__.get(name,None)
+ if method: return method(self)
+ raise AttributeError(name)
+
+def _swig_repr(self):
+ try: strthis = "proxy of " + self.this.__repr__()
+ except: strthis = ""
+ return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
+
+try:
+ _object = object
+ _newclass = 1
+except AttributeError:
+ class _object : pass
+ _newclass = 0
+
+
+class Config(_object):
+ """Proxy of C Config struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Config, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Config, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _sphinxbase.delete_Config
+ __del__ = lambda self : None;
+ def set_boolean(self, *args):
+ """set_boolean(Config self, char const * key, bool val)"""
+ return _sphinxbase.Config_set_boolean(self, *args)
+
+ def set_int(self, *args):
+ """set_int(Config self, char const * key, int val)"""
+ return _sphinxbase.Config_set_int(self, *args)
+
+ def set_float(self, *args):
+ """set_float(Config self, char const * key, double val)"""
+ return _sphinxbase.Config_set_float(self, *args)
+
+ def set_string(self, *args):
+ """set_string(Config self, char const * key, char const * val)"""
+ return _sphinxbase.Config_set_string(self, *args)
+
+ def set_string_extra(self, *args):
+ """set_string_extra(Config self, char const * key, char const * val)"""
+ return _sphinxbase.Config_set_string_extra(self, *args)
+
+ def exists(self, *args):
+ """exists(Config self, char const * key) -> bool"""
+ return _sphinxbase.Config_exists(self, *args)
+
+ def get_boolean(self, *args):
+ """get_boolean(Config self, char const * key) -> bool"""
+ return _sphinxbase.Config_get_boolean(self, *args)
+
+ def get_int(self, *args):
+ """get_int(Config self, char const * key) -> int"""
+ return _sphinxbase.Config_get_int(self, *args)
+
+ def get_float(self, *args):
+ """get_float(Config self, char const * key) -> double"""
+ return _sphinxbase.Config_get_float(self, *args)
+
+ def get_string(self, *args):
+ """get_string(Config self, char const * key) -> char const *"""
+ return _sphinxbase.Config_get_string(self, *args)
+
+Config_swigregister = _sphinxbase.Config_swigregister
+Config_swigregister(Config)
+
+class FrontEnd(_object):
+ """Proxy of C FrontEnd struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, FrontEnd, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, FrontEnd, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """__init__(FrontEnd self, fe_t * ptr) -> FrontEnd"""
+ this = _sphinxbase.new_FrontEnd(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_FrontEnd
+ __del__ = lambda self : None;
+ def output_size(self):
+ """output_size(FrontEnd self) -> int"""
+ return _sphinxbase.FrontEnd_output_size(self)
+
+ def start_utt(self):
+ """start_utt(FrontEnd self)"""
+ return _sphinxbase.FrontEnd_start_utt(self)
+
+ def process_utt(self, *args):
+ """process_utt(FrontEnd self, int16 const * spch, size_t nsamps, mfcc_t *** cep_block) -> int32"""
+ return _sphinxbase.FrontEnd_process_utt(self, *args)
+
+ def end_utt(self, *args):
+ """end_utt(FrontEnd self, mfcc_t * out_cepvector) -> int32"""
+ return _sphinxbase.FrontEnd_end_utt(self, *args)
+
+FrontEnd_swigregister = _sphinxbase.FrontEnd_swigregister
+FrontEnd_swigregister(FrontEnd)
+
+class Feature(_object):
+ """Proxy of C Feature struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Feature, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Feature, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """__init__(Feature self, feat_t * ptr) -> Feature"""
+ this = _sphinxbase.new_Feature(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_Feature
+ __del__ = lambda self : None;
+Feature_swigregister = _sphinxbase.Feature_swigregister
+Feature_swigregister(Feature)
+
+class FsgModel(_object):
+ """Proxy of C FsgModel struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, FsgModel, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, FsgModel, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(FsgModel self, char const * name, LogMath logmath, float lw, int32 n) -> FsgModel
+ __init__(FsgModel self, fsg_model_t * ptr) -> FsgModel
+ __init__(FsgModel self, char const * path, LogMath logmath, float lw) -> FsgModel
+ """
+ this = _sphinxbase.new_FsgModel(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_FsgModel
+ __del__ = lambda self : None;
+ def word_id(self, *args):
+ """word_id(FsgModel self, char const * word) -> int"""
+ return _sphinxbase.FsgModel_word_id(self, *args)
+
+ def word_add(self, *args):
+ """word_add(FsgModel self, char const * word) -> int"""
+ return _sphinxbase.FsgModel_word_add(self, *args)
+
+ def trans_add(self, *args):
+ """trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"""
+ return _sphinxbase.FsgModel_trans_add(self, *args)
+
+ def null_trans_add(self, *args):
+ """null_trans_add(FsgModel self, int32 src, int32 dst, int32 logp) -> int32"""
+ return _sphinxbase.FsgModel_null_trans_add(self, *args)
+
+ def tag_trans_add(self, *args):
+ """tag_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid) -> int32"""
+ return _sphinxbase.FsgModel_tag_trans_add(self, *args)
+
+ def add_silence(self, *args):
+ """add_silence(FsgModel self, char const * silword, int32 state, float silprob) -> int"""
+ return _sphinxbase.FsgModel_add_silence(self, *args)
+
+ def add_alt(self, *args):
+ """add_alt(FsgModel self, char const * baseword, char const * altword) -> int"""
+ return _sphinxbase.FsgModel_add_alt(self, *args)
+
+ def writefile(self, *args):
+ """writefile(FsgModel self, char const * path)"""
+ return _sphinxbase.FsgModel_writefile(self, *args)
+
+FsgModel_swigregister = _sphinxbase.FsgModel_swigregister
+FsgModel_swigregister(FsgModel)
+
+class JsgfRule(_object):
+ """Proxy of C JsgfRule struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, JsgfRule, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, JsgfRule, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ """__init__(JsgfRule self) -> JsgfRule"""
+ this = _sphinxbase.new_JsgfRule()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_JsgfRule
+ __del__ = lambda self : None;
+ def fromIter(*args):
+ """fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"""
+ return _sphinxbase.JsgfRule_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def name(self):
+ """name(JsgfRule self) -> char const *"""
+ return _sphinxbase.JsgfRule_name(self)
+
+ def public(self):
+ """public(JsgfRule self) -> bool"""
+ return _sphinxbase.JsgfRule_public(self)
+
+JsgfRule_swigregister = _sphinxbase.JsgfRule_swigregister
+JsgfRule_swigregister(JsgfRule)
+
+def JsgfRule_fromIter(*args):
+ """JsgfRule_fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"""
+ return _sphinxbase.JsgfRule_fromIter(*args)
+
+class NGramModel(_object):
+ """Proxy of C NGramModel struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModel, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModel, name)
+ __repr__ = _swig_repr
+ def fromIter(*args):
+ """fromIter(ngram_model_set_iter_t * itor) -> NGramModel"""
+ return _sphinxbase.NGramModel_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def __init__(self, *args):
+ """
+ __init__(NGramModel self, char const * path) -> NGramModel
+ __init__(NGramModel self, Config config, LogMath logmath, char const * path) -> NGramModel
+ """
+ this = _sphinxbase.new_NGramModel(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModel
+ __del__ = lambda self : None;
+ def write(self, *args):
+ """write(NGramModel self, char const * path, ngram_file_type_t ftype)"""
+ return _sphinxbase.NGramModel_write(self, *args)
+
+ def str_to_type(self, *args):
+ """str_to_type(NGramModel self, char const * str) -> ngram_file_type_t"""
+ return _sphinxbase.NGramModel_str_to_type(self, *args)
+
+ def type_to_str(self, *args):
+ """type_to_str(NGramModel self, int type) -> char const *"""
+ return _sphinxbase.NGramModel_type_to_str(self, *args)
+
+ def casefold(self, *args):
+ """casefold(NGramModel self, int kase)"""
+ return _sphinxbase.NGramModel_casefold(self, *args)
+
+ def size(self):
+ """size(NGramModel self) -> int32"""
+ return _sphinxbase.NGramModel_size(self)
+
+ def add_word(self, *args):
+ """add_word(NGramModel self, char const * word, float32 weight) -> int32"""
+ return _sphinxbase.NGramModel_add_word(self, *args)
+
+ def add_class(self, *args):
+ """add_class(NGramModel self, char const * c, float32 w, size_t n, float32 const * weights) -> int32"""
+ return _sphinxbase.NGramModel_add_class(self, *args)
+
+ def prob(self, *args):
+ """prob(NGramModel self, size_t n) -> int32"""
+ return _sphinxbase.NGramModel_prob(self, *args)
+
+NGramModel_swigregister = _sphinxbase.NGramModel_swigregister
+NGramModel_swigregister(NGramModel)
+
+def NGramModel_fromIter(*args):
+ """NGramModel_fromIter(ngram_model_set_iter_t * itor) -> NGramModel"""
+ return _sphinxbase.NGramModel_fromIter(*args)
+
+class LogMath(_object):
+ """Proxy of C LogMath struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, LogMath, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, LogMath, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(LogMath self) -> LogMath
+ __init__(LogMath self, logmath_t * ptr) -> LogMath
+ """
+ this = _sphinxbase.new_LogMath(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_LogMath
+ __del__ = lambda self : None;
+ def exp(self, *args):
+ """exp(LogMath self, int prob) -> float64"""
+ return _sphinxbase.LogMath_exp(self, *args)
+
+LogMath_swigregister = _sphinxbase.LogMath_swigregister
+LogMath_swigregister(LogMath)
+
+class NGramModelSetIterator(_object):
+ """Proxy of C NGramModelSetIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModelSetIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModelSetIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _sphinxbase.NGramModelSetIterator_ptr_set
+ __swig_getmethods__["ptr"] = _sphinxbase.NGramModelSetIterator_ptr_get
+ if _newclass:ptr = _swig_property(_sphinxbase.NGramModelSetIterator_ptr_get, _sphinxbase.NGramModelSetIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(NGramModelSetIterator self, ngram_model_set_iter_t * ptr) -> NGramModelSetIterator"""
+ this = _sphinxbase.new_NGramModelSetIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModelSetIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(NGramModelSetIterator self) -> NGramModel"""
+ return _sphinxbase.NGramModelSetIterator_next(self)
+
+ def __next__(self):
+ """__next__(NGramModelSetIterator self) -> NGramModel"""
+ return _sphinxbase.NGramModelSetIterator___next__(self)
+
+NGramModelSetIterator_swigregister = _sphinxbase.NGramModelSetIterator_swigregister
+NGramModelSetIterator_swigregister(NGramModelSetIterator)
+
+class JsgfIterator(_object):
+ """Proxy of C JsgfIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, JsgfIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, JsgfIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _sphinxbase.JsgfIterator_ptr_set
+ __swig_getmethods__["ptr"] = _sphinxbase.JsgfIterator_ptr_get
+ if _newclass:ptr = _swig_property(_sphinxbase.JsgfIterator_ptr_get, _sphinxbase.JsgfIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(JsgfIterator self, jsgf_rule_iter_t * ptr) -> JsgfIterator"""
+ this = _sphinxbase.new_JsgfIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_JsgfIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(JsgfIterator self) -> JsgfRule"""
+ return _sphinxbase.JsgfIterator_next(self)
+
+ def __next__(self):
+ """__next__(JsgfIterator self) -> JsgfRule"""
+ return _sphinxbase.JsgfIterator___next__(self)
+
+JsgfIterator_swigregister = _sphinxbase.JsgfIterator_swigregister
+JsgfIterator_swigregister(JsgfIterator)
+
+class NGramModelSet(_object):
+ """Proxy of C NGramModelSet struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModelSet, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModelSet, name)
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(NGramModelSet self) -> NGramModelSetIterator"""
+ return _sphinxbase.NGramModelSet___iter__(self)
+
+ def __init__(self, *args):
+ """__init__(NGramModelSet self, Config config, LogMath logmath, char const * path) -> NGramModelSet"""
+ this = _sphinxbase.new_NGramModelSet(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModelSet
+ __del__ = lambda self : None;
+ def count(self):
+ """count(NGramModelSet self) -> int32"""
+ return _sphinxbase.NGramModelSet_count(self)
+
+ def add(self, *args):
+ """add(NGramModelSet self, NGramModel model, char const * name, float weight, bool reuse_widmap) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_add(self, *args)
+
+ def select(self, *args):
+ """select(NGramModelSet self, char const * name) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_select(self, *args)
+
+ def lookup(self, *args):
+ """lookup(NGramModelSet self, char const * name) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_lookup(self, *args)
+
+ def current(self):
+ """current(NGramModelSet self) -> char const *"""
+ return _sphinxbase.NGramModelSet_current(self)
+
+NGramModelSet_swigregister = _sphinxbase.NGramModelSet_swigregister
+NGramModelSet_swigregister(NGramModelSet)
+
+class Jsgf(_object):
+ """Proxy of C Jsgf struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Jsgf, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Jsgf, name)
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(Jsgf self) -> JsgfIterator"""
+ return _sphinxbase.Jsgf___iter__(self)
+
+ def __init__(self, *args):
+ """__init__(Jsgf self, char const * path) -> Jsgf"""
+ this = _sphinxbase.new_Jsgf(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_Jsgf
+ __del__ = lambda self : None;
+ def name(self):
+ """name(Jsgf self) -> char const *"""
+ return _sphinxbase.Jsgf_name(self)
+
+ def get_rule(self, *args):
+ """get_rule(Jsgf self, char const * name) -> JsgfRule"""
+ return _sphinxbase.Jsgf_get_rule(self, *args)
+
+ def build_fsg(self, *args):
+ """build_fsg(Jsgf self, JsgfRule rule, LogMath logmath, float lw) -> FsgModel"""
+ return _sphinxbase.Jsgf_build_fsg(self, *args)
+
+Jsgf_swigregister = _sphinxbase.Jsgf_swigregister
+Jsgf_swigregister(Jsgf)
+
+# This file is compatible with both classic and new-style classes.
+
+
diff --git a/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c b/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c
new file mode 100644
index 0000000..08ec7a9
--- /dev/null
+++ b/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c
@@ -0,0 +1,7365 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 2.0.11
+ *
+ * This file is not intended to be easily readable and contains a number of
+ * coding conventions designed to improve portability and efficiency. Do not make
+ * changes to this file unless you know what you are doing--modify the SWIG
+ * interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+#include
+
+
+
+#ifndef __cplusplus
+typedef int bool;
+#define true 1
+#define false 0
+#endif
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+typedef cmd_ln_t Config;
+typedef jsgf_t Jsgf;
+typedef jsgf_rule_t JsgfRule;
+typedef feat_t Feature;
+typedef fe_t FrontEnd;
+typedef fsg_model_t FsgModel;
+typedef logmath_t LogMath;
+typedef ngram_model_t NGramModel;
+typedef ngram_model_t NGramModelSet;
+
+
+#define SWIGPYTHON
+#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
+
+/* -----------------------------------------------------------------------------
+ * This section contains generic SWIG labels for method/variable
+ * declarations/attributes, and other compiler dependent labels.
+ * ----------------------------------------------------------------------------- */
+
+/* template workaround for compilers that cannot correctly implement the C++ standard */
+#ifndef SWIGTEMPLATEDISAMBIGUATOR
+# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# elif defined(__HP_aCC)
+/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
+/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# else
+# define SWIGTEMPLATEDISAMBIGUATOR
+# endif
+#endif
+
+/* inline attribute */
+#ifndef SWIGINLINE
+# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
+# define SWIGINLINE inline
+# else
+# define SWIGINLINE
+# endif
+#endif
+
+/* attribute recognised by some compilers to avoid 'unused' warnings */
+#ifndef SWIGUNUSED
+# if defined(__GNUC__)
+# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+# elif defined(__ICC)
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+#endif
+
+#ifndef SWIG_MSC_UNSUPPRESS_4505
+# if defined(_MSC_VER)
+# pragma warning(disable : 4505) /* unreferenced local function has been removed */
+# endif
+#endif
+
+#ifndef SWIGUNUSEDPARM
+# ifdef __cplusplus
+# define SWIGUNUSEDPARM(p)
+# else
+# define SWIGUNUSEDPARM(p) p SWIGUNUSED
+# endif
+#endif
+
+/* internal SWIG method */
+#ifndef SWIGINTERN
+# define SWIGINTERN static SWIGUNUSED
+#endif
+
+/* internal inline SWIG method */
+#ifndef SWIGINTERNINLINE
+# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
+#endif
+
+/* exporting methods */
+#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+# ifndef GCC_HASCLASSVISIBILITY
+# define GCC_HASCLASSVISIBILITY
+# endif
+#endif
+
+#ifndef SWIGEXPORT
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# if defined(STATIC_LINKED)
+# define SWIGEXPORT
+# else
+# define SWIGEXPORT __declspec(dllexport)
+# endif
+# else
+# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
+# define SWIGEXPORT __attribute__ ((visibility("default")))
+# else
+# define SWIGEXPORT
+# endif
+# endif
+#endif
+
+/* calling conventions for Windows */
+#ifndef SWIGSTDCALL
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# define SWIGSTDCALL __stdcall
+# else
+# define SWIGSTDCALL
+# endif
+#endif
+
+/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
+#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
+# define _CRT_SECURE_NO_DEPRECATE
+#endif
+
+/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
+#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
+# define _SCL_SECURE_NO_DEPRECATE
+#endif
+
+
+
+#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
+/* Use debug wrappers with the Python release dll */
+# undef _DEBUG
+# include
+# define _DEBUG
+#else
+# include
+#endif
+
+/* -----------------------------------------------------------------------------
+ * swigrun.swg
+ *
+ * This file contains generic C API SWIG runtime support for pointer
+ * type checking.
+ * ----------------------------------------------------------------------------- */
+
+/* This should only be incremented when either the layout of swig_type_info changes,
+ or for whatever reason, the runtime changes incompatibly */
+#define SWIG_RUNTIME_VERSION "4"
+
+/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
+#ifdef SWIG_TYPE_TABLE
+# define SWIG_QUOTE_STRING(x) #x
+# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
+# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
+#else
+# define SWIG_TYPE_TABLE_NAME
+#endif
+
+/*
+ You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
+ creating a static or dynamic library from the SWIG runtime code.
+ In 99.9% of the cases, SWIG just needs to declare them as 'static'.
+
+ But only do this if strictly necessary, ie, if you have problems
+ with your compiler or suchlike.
+*/
+
+#ifndef SWIGRUNTIME
+# define SWIGRUNTIME SWIGINTERN
+#endif
+
+#ifndef SWIGRUNTIMEINLINE
+# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
+#endif
+
+/* Generic buffer size */
+#ifndef SWIG_BUFFER_SIZE
+# define SWIG_BUFFER_SIZE 1024
+#endif
+
+/* Flags for pointer conversions */
+#define SWIG_POINTER_DISOWN 0x1
+#define SWIG_CAST_NEW_MEMORY 0x2
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_OWN 0x1
+
+
+/*
+ Flags/methods for returning states.
+
+ The SWIG conversion methods, as ConvertPtr, return an integer
+ that tells if the conversion was successful or not. And if not,
+ an error code can be returned (see swigerrors.swg for the codes).
+
+ Use the following macros/flags to set or process the returning
+ states.
+
+ In old versions of SWIG, code such as the following was usually written:
+
+ if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
+ // success code
+ } else {
+ //fail code
+ }
+
+ Now you can be more explicit:
+
+ int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ } else {
+ // fail code
+ }
+
+ which is the same really, but now you can also do
+
+ Type *ptr;
+ int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ if (SWIG_IsNewObj(res) {
+ ...
+ delete *ptr;
+ } else {
+ ...
+ }
+ } else {
+ // fail code
+ }
+
+ I.e., now SWIG_ConvertPtr can return new objects and you can
+ identify the case and take care of the deallocation. Of course that
+ also requires SWIG_ConvertPtr to return new result values, such as
+
+ int SWIG_ConvertPtr(obj, ptr,...) {
+ if () {
+ if () {
+ *ptr = ;
+ return SWIG_NEWOBJ;
+ } else {
+ *ptr = ;
+ return SWIG_OLDOBJ;
+ }
+ } else {
+ return SWIG_BADOBJ;
+ }
+ }
+
+ Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
+ more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
+ SWIG errors code.
+
+ Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
+ allows to return the 'cast rank', for example, if you have this
+
+ int food(double)
+ int fooi(int);
+
+ and you call
+
+ food(1) // cast rank '1' (1 -> 1.0)
+ fooi(1) // cast rank '0'
+
+ just use the SWIG_AddCast()/SWIG_CheckState()
+*/
+
+#define SWIG_OK (0)
+#define SWIG_ERROR (-1)
+#define SWIG_IsOK(r) (r >= 0)
+#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
+
+/* The CastRankLimit says how many bits are used for the cast rank */
+#define SWIG_CASTRANKLIMIT (1 << 8)
+/* The NewMask denotes the object was created (using new/malloc) */
+#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
+/* The TmpMask is for in/out typemaps that use temporal objects */
+#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
+/* Simple returning values */
+#define SWIG_BADOBJ (SWIG_ERROR)
+#define SWIG_OLDOBJ (SWIG_OK)
+#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
+#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
+/* Check, add and del mask methods */
+#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
+#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
+#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
+#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
+#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
+#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
+
+/* Cast-Rank Mode */
+#if defined(SWIG_CASTRANK_MODE)
+# ifndef SWIG_TypeRank
+# define SWIG_TypeRank unsigned long
+# endif
+# ifndef SWIG_MAXCASTRANK /* Default cast allowed */
+# define SWIG_MAXCASTRANK (2)
+# endif
+# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
+# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
+SWIGINTERNINLINE int SWIG_AddCast(int r) {
+ return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
+}
+SWIGINTERNINLINE int SWIG_CheckState(int r) {
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
+}
+#else /* no cast-rank mode */
+# define SWIG_AddCast(r) (r)
+# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
+#endif
+
+
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef void *(*swig_converter_func)(void *, int *);
+typedef struct swig_type_info *(*swig_dycast_func)(void **);
+
+/* Structure to store information on one type */
+typedef struct swig_type_info {
+ const char *name; /* mangled name of this type */
+ const char *str; /* human readable name of this type */
+ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
+ struct swig_cast_info *cast; /* linked list of types that can cast into this type */
+ void *clientdata; /* language specific type data */
+ int owndata; /* flag if the structure owns the clientdata */
+} swig_type_info;
+
+/* Structure to store a type and conversion function used for casting */
+typedef struct swig_cast_info {
+ swig_type_info *type; /* pointer to type that is equivalent to this type */
+ swig_converter_func converter; /* function to cast the void pointers */
+ struct swig_cast_info *next; /* pointer to next cast in linked list */
+ struct swig_cast_info *prev; /* pointer to the previous cast */
+} swig_cast_info;
+
+/* Structure used to store module information
+ * Each module generates one structure like this, and the runtime collects
+ * all of these structures and stores them in a circularly linked list.*/
+typedef struct swig_module_info {
+ swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
+ size_t size; /* Number of types in this module */
+ struct swig_module_info *next; /* Pointer to next element in circularly linked list */
+ swig_type_info **type_initial; /* Array of initially generated type structures */
+ swig_cast_info **cast_initial; /* Array of initially generated casting structures */
+ void *clientdata; /* Language specific module data */
+} swig_module_info;
+
+/*
+ Compare two type names skipping the space characters, therefore
+ "char*" == "char *" and "Class" == "Class", etc.
+
+ Return 0 when the two name types are equivalent, as in
+ strncmp, but skipping ' '.
+*/
+SWIGRUNTIME int
+SWIG_TypeNameComp(const char *f1, const char *l1,
+ const char *f2, const char *l2) {
+ for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
+ while ((*f1 == ' ') && (f1 != l1)) ++f1;
+ while ((*f2 == ' ') && (f2 != l2)) ++f2;
+ if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
+ }
+ return (int)((l1 - f1) - (l2 - f2));
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
+*/
+SWIGRUNTIME int
+SWIG_TypeCmp(const char *nb, const char *tb) {
+ int equiv = 1;
+ const char* te = tb + strlen(tb);
+ const char* ne = nb;
+ while (equiv != 0 && *ne) {
+ for (nb = ne; *ne; ++ne) {
+ if (*ne == '|') break;
+ }
+ equiv = SWIG_TypeNameComp(nb, ne, tb, te);
+ if (*ne) ++ne;
+ }
+ return equiv;
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if not equal, 1 if equal
+*/
+SWIGRUNTIME int
+SWIG_TypeEquiv(const char *nb, const char *tb) {
+ return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
+}
+
+/*
+ Check the typename
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheck(const char *c, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (strcmp(iter->type->name, c) == 0) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (iter->type == from) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Cast a pointer up an inheritance hierarchy
+*/
+SWIGRUNTIMEINLINE void *
+SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
+ return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
+}
+
+/*
+ Dynamic pointer casting. Down an inheritance hierarchy
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
+ swig_type_info *lastty = ty;
+ if (!ty || !ty->dcast) return ty;
+ while (ty && (ty->dcast)) {
+ ty = (*ty->dcast)(ptr);
+ if (ty) lastty = ty;
+ }
+ return lastty;
+}
+
+/*
+ Return the name associated with this type
+*/
+SWIGRUNTIMEINLINE const char *
+SWIG_TypeName(const swig_type_info *ty) {
+ return ty->name;
+}
+
+/*
+ Return the pretty name associated with this type,
+ that is an unmangled type name in a form presentable to the user.
+*/
+SWIGRUNTIME const char *
+SWIG_TypePrettyName(const swig_type_info *type) {
+ /* The "str" field contains the equivalent pretty names of the
+ type, separated by vertical-bar characters. We choose
+ to print the last name, as it is often (?) the most
+ specific. */
+ if (!type) return NULL;
+ if (type->str != NULL) {
+ const char *last_name = type->str;
+ const char *s;
+ for (s = type->str; *s; s++)
+ if (*s == '|') last_name = s+1;
+ return last_name;
+ }
+ else
+ return type->name;
+}
+
+/*
+ Set the clientdata field for a type
+*/
+SWIGRUNTIME void
+SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
+ swig_cast_info *cast = ti->cast;
+ /* if (ti->clientdata == clientdata) return; */
+ ti->clientdata = clientdata;
+
+ while (cast) {
+ if (!cast->converter) {
+ swig_type_info *tc = cast->type;
+ if (!tc->clientdata) {
+ SWIG_TypeClientData(tc, clientdata);
+ }
+ }
+ cast = cast->next;
+ }
+}
+SWIGRUNTIME void
+SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
+ SWIG_TypeClientData(ti, clientdata);
+ ti->owndata = 1;
+}
+
+/*
+ Search for a swig_type_info structure only by mangled name
+ Search is a O(log #types)
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_MangledTypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ swig_module_info *iter = start;
+ do {
+ if (iter->size) {
+ register size_t l = 0;
+ register size_t r = iter->size - 1;
+ do {
+ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
+ register size_t i = (l + r) >> 1;
+ const char *iname = iter->types[i]->name;
+ if (iname) {
+ register int compare = strcmp(name, iname);
+ if (compare == 0) {
+ return iter->types[i];
+ } else if (compare < 0) {
+ if (i) {
+ r = i - 1;
+ } else {
+ break;
+ }
+ } else if (compare > 0) {
+ l = i + 1;
+ }
+ } else {
+ break; /* should never happen */
+ }
+ } while (l <= r);
+ }
+ iter = iter->next;
+ } while (iter != end);
+ return 0;
+}
+
+/*
+ Search for a swig_type_info structure for either a mangled name or a human readable name.
+ It first searches the mangled names of the types, which is a O(log #types)
+ If a type is not found it then searches the human readable names, which is O(#types).
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ /* STEP 1: Search the name field using binary search */
+ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
+ if (ret) {
+ return ret;
+ } else {
+ /* STEP 2: If the type hasn't been found, do a complete search
+ of the str field (the human readable name) */
+ swig_module_info *iter = start;
+ do {
+ register size_t i = 0;
+ for (; i < iter->size; ++i) {
+ if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
+ return iter->types[i];
+ }
+ iter = iter->next;
+ } while (iter != end);
+ }
+
+ /* neither found a match */
+ return 0;
+}
+
+/*
+ Pack binary data into a string
+*/
+SWIGRUNTIME char *
+SWIG_PackData(char *c, void *ptr, size_t sz) {
+ static const char hex[17] = "0123456789abcdef";
+ register const unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register unsigned char uu = *u;
+ *(c++) = hex[(uu & 0xf0) >> 4];
+ *(c++) = hex[uu & 0xf];
+ }
+ return c;
+}
+
+/*
+ Unpack binary data from a string
+*/
+SWIGRUNTIME const char *
+SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
+ register unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register char d = *(c++);
+ register unsigned char uu;
+ if ((d >= '0') && (d <= '9'))
+ uu = ((d - '0') << 4);
+ else if ((d >= 'a') && (d <= 'f'))
+ uu = ((d - ('a'-10)) << 4);
+ else
+ return (char *) 0;
+ d = *(c++);
+ if ((d >= '0') && (d <= '9'))
+ uu |= (d - '0');
+ else if ((d >= 'a') && (d <= 'f'))
+ uu |= (d - ('a'-10));
+ else
+ return (char *) 0;
+ *u = uu;
+ }
+ return c;
+}
+
+/*
+ Pack 'void *' into a string buffer.
+*/
+SWIGRUNTIME char *
+SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
+ char *r = buff;
+ if ((2*sizeof(void *) + 2) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,&ptr,sizeof(void *));
+ if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
+ strcpy(r,name);
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ *ptr = (void *) 0;
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sizeof(void *));
+}
+
+SWIGRUNTIME char *
+SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
+ char *r = buff;
+ size_t lname = (name ? strlen(name) : 0);
+ if ((2*sz + 2 + lname) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,ptr,sz);
+ if (lname) {
+ strncpy(r,name,lname+1);
+ } else {
+ *r = 0;
+ }
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ memset(ptr,0,sz);
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sz);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+/* Errors in SWIG */
+#define SWIG_UnknownError -1
+#define SWIG_IOError -2
+#define SWIG_RuntimeError -3
+#define SWIG_IndexError -4
+#define SWIG_TypeError -5
+#define SWIG_DivisionByZero -6
+#define SWIG_OverflowError -7
+#define SWIG_SyntaxError -8
+#define SWIG_ValueError -9
+#define SWIG_SystemError -10
+#define SWIG_AttributeError -11
+#define SWIG_MemoryError -12
+#define SWIG_NullReferenceError -13
+
+
+
+/* Compatibility macros for Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+
+#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
+#define PyInt_Check(x) PyLong_Check(x)
+#define PyInt_AsLong(x) PyLong_AsLong(x)
+#define PyInt_FromLong(x) PyLong_FromLong(x)
+#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
+#define PyString_Check(name) PyBytes_Check(name)
+#define PyString_FromString(x) PyUnicode_FromString(x)
+#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
+#define PyString_AsString(str) PyBytes_AsString(str)
+#define PyString_Size(str) PyBytes_Size(str)
+#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
+#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
+#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x)
+#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
+
+#endif
+
+#ifndef Py_TYPE
+# define Py_TYPE(op) ((op)->ob_type)
+#endif
+
+/* SWIG APIs for compatibility of both Python 2 & 3 */
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
+#else
+# define SWIG_Python_str_FromFormat PyString_FromFormat
+#endif
+
+
+/* Warning: This function will allocate a new string in Python 3,
+ * so please call SWIG_Python_str_DelForPy3(x) to free the space.
+ */
+SWIGINTERN char*
+SWIG_Python_str_AsChar(PyObject *str)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ char *cstr;
+ char *newstr;
+ Py_ssize_t len;
+ str = PyUnicode_AsUTF8String(str);
+ PyBytes_AsStringAndSize(str, &cstr, &len);
+ newstr = (char *) malloc(len+1);
+ memcpy(newstr, cstr, len+1);
+ Py_XDECREF(str);
+ return newstr;
+#else
+ return PyString_AsString(str);
+#endif
+}
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) )
+#else
+# define SWIG_Python_str_DelForPy3(x)
+#endif
+
+
+SWIGINTERN PyObject*
+SWIG_Python_str_FromChar(const char *c)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromString(c);
+#else
+ return PyString_FromString(c);
+#endif
+}
+
+/* Add PyOS_snprintf for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
+# define PyOS_snprintf _snprintf
+# else
+# define PyOS_snprintf snprintf
+# endif
+#endif
+
+/* A crude PyString_FromFormat implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+
+#ifndef SWIG_PYBUFFER_SIZE
+# define SWIG_PYBUFFER_SIZE 1024
+#endif
+
+static PyObject *
+PyString_FromFormat(const char *fmt, ...) {
+ va_list ap;
+ char buf[SWIG_PYBUFFER_SIZE * 2];
+ int res;
+ va_start(ap, fmt);
+ res = vsnprintf(buf, sizeof(buf), fmt, ap);
+ va_end(ap);
+ return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf);
+}
+#endif
+
+/* Add PyObject_Del for old Pythons */
+#if PY_VERSION_HEX < 0x01060000
+# define PyObject_Del(op) PyMem_DEL((op))
+#endif
+#ifndef PyObject_DEL
+# define PyObject_DEL PyObject_Del
+#endif
+
+/* A crude PyExc_StopIteration exception for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# ifndef PyExc_StopIteration
+# define PyExc_StopIteration PyExc_RuntimeError
+# endif
+# ifndef PyObject_GenericGetAttr
+# define PyObject_GenericGetAttr 0
+# endif
+#endif
+
+/* Py_NotImplemented is defined in 2.1 and up. */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef Py_NotImplemented
+# define Py_NotImplemented PyExc_RuntimeError
+# endif
+#endif
+
+/* A crude PyString_AsStringAndSize implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef PyString_AsStringAndSize
+# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
+# endif
+#endif
+
+/* PySequence_Size for old Pythons */
+#if PY_VERSION_HEX < 0x02000000
+# ifndef PySequence_Size
+# define PySequence_Size PySequence_Length
+# endif
+#endif
+
+/* PyBool_FromLong for old Pythons */
+#if PY_VERSION_HEX < 0x02030000
+static
+PyObject *PyBool_FromLong(long ok)
+{
+ PyObject *result = ok ? Py_True : Py_False;
+ Py_INCREF(result);
+ return result;
+}
+#endif
+
+/* Py_ssize_t for old Pythons */
+/* This code is as recommended by: */
+/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */
+#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
+typedef int Py_ssize_t;
+# define PY_SSIZE_T_MAX INT_MAX
+# define PY_SSIZE_T_MIN INT_MIN
+typedef inquiry lenfunc;
+typedef intargfunc ssizeargfunc;
+typedef intintargfunc ssizessizeargfunc;
+typedef intobjargproc ssizeobjargproc;
+typedef intintobjargproc ssizessizeobjargproc;
+typedef getreadbufferproc readbufferproc;
+typedef getwritebufferproc writebufferproc;
+typedef getsegcountproc segcountproc;
+typedef getcharbufferproc charbufferproc;
+static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))
+{
+ long result = 0;
+ PyObject *i = PyNumber_Int(x);
+ if (i) {
+ result = PyInt_AsLong(i);
+ Py_DECREF(i);
+ }
+ return result;
+}
+#endif
+
+#if PY_VERSION_HEX < 0x02050000
+#define PyInt_FromSize_t(x) PyInt_FromLong((long)x)
+#endif
+
+#if PY_VERSION_HEX < 0x02040000
+#define Py_VISIT(op) \
+ do { \
+ if (op) { \
+ int vret = visit((op), arg); \
+ if (vret) \
+ return vret; \
+ } \
+ } while (0)
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef struct {
+ PyTypeObject type;
+ PyNumberMethods as_number;
+ PyMappingMethods as_mapping;
+ PySequenceMethods as_sequence;
+ PyBufferProcs as_buffer;
+ PyObject *name, *slots;
+} PyHeapTypeObject;
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef destructor freefunc;
+#endif
+
+#if ((PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 6) || \
+ (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION > 0) || \
+ (PY_MAJOR_VERSION > 3))
+# define SWIGPY_USE_CAPSULE
+# define SWIGPY_CAPSULE_NAME ((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME)
+#endif
+
+#if PY_VERSION_HEX < 0x03020000
+#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
+#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
+#endif
+
+/* -----------------------------------------------------------------------------
+ * error manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIME PyObject*
+SWIG_Python_ErrorType(int code) {
+ PyObject* type = 0;
+ switch(code) {
+ case SWIG_MemoryError:
+ type = PyExc_MemoryError;
+ break;
+ case SWIG_IOError:
+ type = PyExc_IOError;
+ break;
+ case SWIG_RuntimeError:
+ type = PyExc_RuntimeError;
+ break;
+ case SWIG_IndexError:
+ type = PyExc_IndexError;
+ break;
+ case SWIG_TypeError:
+ type = PyExc_TypeError;
+ break;
+ case SWIG_DivisionByZero:
+ type = PyExc_ZeroDivisionError;
+ break;
+ case SWIG_OverflowError:
+ type = PyExc_OverflowError;
+ break;
+ case SWIG_SyntaxError:
+ type = PyExc_SyntaxError;
+ break;
+ case SWIG_ValueError:
+ type = PyExc_ValueError;
+ break;
+ case SWIG_SystemError:
+ type = PyExc_SystemError;
+ break;
+ case SWIG_AttributeError:
+ type = PyExc_AttributeError;
+ break;
+ default:
+ type = PyExc_RuntimeError;
+ }
+ return type;
+}
+
+
+SWIGRUNTIME void
+SWIG_Python_AddErrorMsg(const char* mesg)
+{
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+
+ if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ PyErr_Clear();
+ Py_XINCREF(type);
+
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ Py_DECREF(value);
+ } else {
+ PyErr_SetString(PyExc_RuntimeError, mesg);
+ }
+}
+
+#if defined(SWIG_PYTHON_NO_THREADS)
+# if defined(SWIG_PYTHON_THREADS)
+# undef SWIG_PYTHON_THREADS
+# endif
+#endif
+#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
+# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
+# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
+# define SWIG_PYTHON_USE_GIL
+# endif
+# endif
+# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
+# ifndef SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
+# endif
+# ifdef __cplusplus /* C++ code */
+ class SWIG_Python_Thread_Block {
+ bool status;
+ PyGILState_STATE state;
+ public:
+ void end() { if (status) { PyGILState_Release(state); status = false;} }
+ SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
+ ~SWIG_Python_Thread_Block() { end(); }
+ };
+ class SWIG_Python_Thread_Allow {
+ bool status;
+ PyThreadState *save;
+ public:
+ void end() { if (status) { PyEval_RestoreThread(save); status = false; }}
+ SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
+ ~SWIG_Python_Thread_Allow() { end(); }
+ };
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
+# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
+# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
+# else /* C code */
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
+# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
+# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
+# endif
+# else /* Old thread way, not implemented, user must provide it */
+# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
+# define SWIG_PYTHON_THREAD_END_ALLOW
+# endif
+# endif
+#else /* No thread support */
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# define SWIG_PYTHON_THREAD_END_ALLOW
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Python API portion that goes into the runtime
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Constant declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Constant Types */
+#define SWIG_PY_POINTER 4
+#define SWIG_PY_BINARY 5
+
+/* Constant information structure */
+typedef struct swig_const_info {
+ int type;
+ char *name;
+ long lvalue;
+ double dvalue;
+ void *pvalue;
+ swig_type_info **ptype;
+} swig_const_info;
+
+
+/* -----------------------------------------------------------------------------
+ * Wrapper of PyInstanceMethod_New() used in Python 3
+ * It is exported to the generated module, used for -fastproxy
+ * ----------------------------------------------------------------------------- */
+#if PY_VERSION_HEX >= 0x03000000
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func)
+{
+ return PyInstanceMethod_New(func);
+}
+#else
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
+{
+ return NULL;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+
+/* -----------------------------------------------------------------------------
+ * pyrun.swg
+ *
+ * This file contains the runtime support for Python modules
+ * and includes code for managing global variables and pointer
+ * type checking.
+ *
+ * ----------------------------------------------------------------------------- */
+
+/* Common SWIG API */
+
+/* for raw pointers */
+#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
+#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
+
+#ifdef SWIGPYTHON_BUILTIN
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
+#else
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+#endif
+
+#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+
+#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
+#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
+#define swig_owntype int
+
+/* for raw packed data */
+#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+/* for class or struct pointers */
+#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
+
+/* for C or C++ function pointers */
+#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
+#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
+
+/* for C++ member pointers, ie, member methods */
+#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+
+/* Runtime API */
+
+#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
+#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
+#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
+
+#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
+#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
+#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
+#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
+#define SWIG_fail goto fail
+
+
+/* Runtime API implementation */
+
+/* Error manipulation */
+
+SWIGINTERN void
+SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetObject(errtype, obj);
+ Py_DECREF(obj);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+SWIGINTERN void
+SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetString(errtype, msg);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
+
+/* Set a constant value */
+
+#if defined(SWIGPYTHON_BUILTIN)
+
+SWIGINTERN void
+SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {
+ PyObject *s = PyString_InternFromString(key);
+ PyList_Append(seq, s);
+ Py_DECREF(s);
+}
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+ if (public_interface)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, name);
+}
+
+#else
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+}
+
+#endif
+
+/* Append a value to the result obj */
+
+SWIGINTERN PyObject*
+SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {
+#if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyList_Check(result)) {
+ PyObject *o2 = result;
+ result = PyList_New(1);
+ PyList_SetItem(result, 0, o2);
+ }
+ PyList_Append(result,obj);
+ Py_DECREF(obj);
+ }
+ return result;
+#else
+ PyObject* o2;
+ PyObject* o3;
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyTuple_Check(result)) {
+ o2 = result;
+ result = PyTuple_New(1);
+ PyTuple_SET_ITEM(result, 0, o2);
+ }
+ o3 = PyTuple_New(1);
+ PyTuple_SET_ITEM(o3, 0, obj);
+ o2 = result;
+ result = PySequence_Concat(o2, o3);
+ Py_DECREF(o2);
+ Py_DECREF(o3);
+ }
+ return result;
+#endif
+}
+
+/* Unpack the argument tuple */
+
+SWIGINTERN int
+SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
+{
+ if (!args) {
+ if (!min && !max) {
+ return 1;
+ } else {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none",
+ name, (min == max ? "" : "at least "), (int)min);
+ return 0;
+ }
+ }
+ if (!PyTuple_Check(args)) {
+ if (min <= 1 && max >= 1) {
+ register int i;
+ objs[0] = args;
+ for (i = 1; i < max; ++i) {
+ objs[i] = 0;
+ }
+ return 2;
+ }
+ PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
+ return 0;
+ } else {
+ register Py_ssize_t l = PyTuple_GET_SIZE(args);
+ if (l < min) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at least "), (int)min, (int)l);
+ return 0;
+ } else if (l > max) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at most "), (int)max, (int)l);
+ return 0;
+ } else {
+ register int i;
+ for (i = 0; i < l; ++i) {
+ objs[i] = PyTuple_GET_ITEM(args, i);
+ }
+ for (; l < max; ++l) {
+ objs[l] = 0;
+ }
+ return i + 1;
+ }
+ }
+}
+
+/* A functor is a function object with one single object argument */
+#if PY_VERSION_HEX >= 0x02020000
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
+#else
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
+#endif
+
+/*
+ Helper for static pointer initialization for both C and C++ code, for example
+ static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
+*/
+#ifdef __cplusplus
+#define SWIG_STATIC_POINTER(var) var
+#else
+#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Pointer declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
+#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
+
+#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
+
+#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
+#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* How to access Py_None */
+#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# ifndef SWIG_PYTHON_NO_BUILD_NONE
+# ifndef SWIG_PYTHON_BUILD_NONE
+# define SWIG_PYTHON_BUILD_NONE
+# endif
+# endif
+#endif
+
+#ifdef SWIG_PYTHON_BUILD_NONE
+# ifdef Py_None
+# undef Py_None
+# define Py_None SWIG_Py_None()
+# endif
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_Py_None(void)
+{
+ PyObject *none = Py_BuildValue((char*)"");
+ Py_DECREF(none);
+ return none;
+}
+SWIGRUNTIME PyObject *
+SWIG_Py_None(void)
+{
+ static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None();
+ return none;
+}
+#endif
+
+/* The python void return value */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Py_Void(void)
+{
+ PyObject *none = Py_None;
+ Py_INCREF(none);
+ return none;
+}
+
+/* SwigPyClientData */
+
+typedef struct {
+ PyObject *klass;
+ PyObject *newraw;
+ PyObject *newargs;
+ PyObject *destroy;
+ int delargs;
+ int implicitconv;
+ PyTypeObject *pytype;
+} SwigPyClientData;
+
+SWIGRUNTIMEINLINE int
+SWIG_Python_CheckImplicit(swig_type_info *ty)
+{
+ SwigPyClientData *data = (SwigPyClientData *)ty->clientdata;
+ return data ? data->implicitconv : 0;
+}
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_ExceptionType(swig_type_info *desc) {
+ SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0;
+ PyObject *klass = data ? data->klass : 0;
+ return (klass ? klass : PyExc_RuntimeError);
+}
+
+
+SWIGRUNTIME SwigPyClientData *
+SwigPyClientData_New(PyObject* obj)
+{
+ if (!obj) {
+ return 0;
+ } else {
+ SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData));
+ /* the klass element */
+ data->klass = obj;
+ Py_INCREF(data->klass);
+ /* the newraw method and newargs arguments used to create a new raw instance */
+ if (PyClass_Check(obj)) {
+ data->newraw = 0;
+ data->newargs = obj;
+ Py_INCREF(obj);
+ } else {
+#if (PY_VERSION_HEX < 0x02020000)
+ data->newraw = 0;
+#else
+ data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__");
+#endif
+ if (data->newraw) {
+ Py_INCREF(data->newraw);
+ data->newargs = PyTuple_New(1);
+ PyTuple_SetItem(data->newargs, 0, obj);
+ } else {
+ data->newargs = obj;
+ }
+ Py_INCREF(data->newargs);
+ }
+ /* the destroy method, aka as the C++ delete method */
+ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__");
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ data->destroy = 0;
+ }
+ if (data->destroy) {
+ int flags;
+ Py_INCREF(data->destroy);
+ flags = PyCFunction_GET_FLAGS(data->destroy);
+#ifdef METH_O
+ data->delargs = !(flags & (METH_O));
+#else
+ data->delargs = 0;
+#endif
+ } else {
+ data->delargs = 0;
+ }
+ data->implicitconv = 0;
+ data->pytype = 0;
+ return data;
+ }
+}
+
+SWIGRUNTIME void
+SwigPyClientData_Del(SwigPyClientData *data) {
+ Py_XDECREF(data->newraw);
+ Py_XDECREF(data->newargs);
+ Py_XDECREF(data->destroy);
+}
+
+/* =============== SwigPyObject =====================*/
+
+typedef struct {
+ PyObject_HEAD
+ void *ptr;
+ swig_type_info *ty;
+ int own;
+ PyObject *next;
+#ifdef SWIGPYTHON_BUILTIN
+ PyObject *dict;
+#endif
+} SwigPyObject;
+
+SWIGRUNTIME PyObject *
+SwigPyObject_long(SwigPyObject *v)
+{
+ return PyLong_FromVoidPtr(v->ptr);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_format(const char* fmt, SwigPyObject *v)
+{
+ PyObject *res = NULL;
+ PyObject *args = PyTuple_New(1);
+ if (args) {
+ if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) {
+ PyObject *ofmt = SWIG_Python_str_FromChar(fmt);
+ if (ofmt) {
+#if PY_VERSION_HEX >= 0x03000000
+ res = PyUnicode_Format(ofmt,args);
+#else
+ res = PyString_Format(ofmt,args);
+#endif
+ Py_DECREF(ofmt);
+ }
+ Py_DECREF(args);
+ }
+ }
+ return res;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_oct(SwigPyObject *v)
+{
+ return SwigPyObject_format("%o",v);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_hex(SwigPyObject *v)
+{
+ return SwigPyObject_format("%x",v);
+}
+
+SWIGRUNTIME PyObject *
+#ifdef METH_NOARGS
+SwigPyObject_repr(SwigPyObject *v)
+#else
+SwigPyObject_repr(SwigPyObject *v, PyObject *args)
+#endif
+{
+ const char *name = SWIG_TypePrettyName(v->ty);
+ PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v);
+ if (v->next) {
+# ifdef METH_NOARGS
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next);
+# else
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args);
+# endif
+# if PY_VERSION_HEX >= 0x03000000
+ PyObject *joined = PyUnicode_Concat(repr, nrep);
+ Py_DecRef(repr);
+ Py_DecRef(nrep);
+ repr = joined;
+# else
+ PyString_ConcatAndDel(&repr,nrep);
+# endif
+ }
+ return repr;
+}
+
+SWIGRUNTIME int
+SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
+{
+ void *i = v->ptr;
+ void *j = w->ptr;
+ return (i < j) ? -1 : ((i > j) ? 1 : 0);
+}
+
+/* Added for Python 3.x, would it also be useful for Python 2.x? */
+SWIGRUNTIME PyObject*
+SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
+{
+ PyObject* res;
+ if( op != Py_EQ && op != Py_NE ) {
+ Py_INCREF(Py_NotImplemented);
+ return Py_NotImplemented;
+ }
+ res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0);
+ return res;
+}
+
+
+SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void);
+
+#ifdef SWIGPYTHON_BUILTIN
+static swig_type_info *SwigPyObject_stype = 0;
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ SwigPyClientData *cd;
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ assert(cd);
+ assert(cd->pytype);
+ return cd->pytype;
+}
+#else
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce();
+ return type;
+}
+#endif
+
+SWIGRUNTIMEINLINE int
+SwigPyObject_Check(PyObject *op) {
+#ifdef SWIGPYTHON_BUILTIN
+ PyTypeObject *target_tp = SwigPyObject_type();
+ if (PyType_IsSubtype(op->ob_type, target_tp))
+ return 1;
+ return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0);
+#else
+ return (Py_TYPE(op) == SwigPyObject_type())
+ || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0);
+#endif
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own);
+
+SWIGRUNTIME void
+SwigPyObject_dealloc(PyObject *v)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ PyObject *next = sobj->next;
+ if (sobj->own == SWIG_POINTER_OWN) {
+ swig_type_info *ty = sobj->ty;
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ PyObject *destroy = data ? data->destroy : 0;
+ if (destroy) {
+ /* destroy is always a VARARGS method */
+ PyObject *res;
+ if (data->delargs) {
+ /* we need to create a temporary object to carry the destroy operation */
+ PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0);
+ res = SWIG_Python_CallFunctor(destroy, tmp);
+ Py_DECREF(tmp);
+ } else {
+ PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
+ PyObject *mself = PyCFunction_GET_SELF(destroy);
+ res = ((*meth)(mself, v));
+ }
+ Py_XDECREF(res);
+ }
+#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
+ else {
+ const char *name = SWIG_TypePrettyName(ty);
+ printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown"));
+ }
+#endif
+ }
+ Py_XDECREF(next);
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyObject*
+SwigPyObject_append(PyObject* v, PyObject* next)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+#ifndef METH_O
+ PyObject *tmp = 0;
+ if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
+ next = tmp;
+#endif
+ if (!SwigPyObject_Check(next)) {
+ return NULL;
+ }
+ sobj->next = next;
+ Py_INCREF(next);
+ return SWIG_Py_Void();
+}
+
+SWIGRUNTIME PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_next(PyObject* v)
+#else
+SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ if (sobj->next) {
+ Py_INCREF(sobj->next);
+ return sobj->next;
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_disown(PyObject *v)
+#else
+SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = 0;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_acquire(PyObject *v)
+#else
+SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = SWIG_POINTER_OWN;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+SwigPyObject_own(PyObject *v, PyObject *args)
+{
+ PyObject *val = 0;
+#if (PY_VERSION_HEX < 0x02020000)
+ if (!PyArg_ParseTuple(args,(char *)"|O:own",&val))
+#elif (PY_VERSION_HEX < 0x02050000)
+ if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val))
+#else
+ if (!PyArg_UnpackTuple(args, "own", 0, 1, &val))
+#endif
+ {
+ return NULL;
+ }
+ else
+ {
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ PyObject *obj = PyBool_FromLong(sobj->own);
+ if (val) {
+#ifdef METH_NOARGS
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v);
+ } else {
+ SwigPyObject_disown(v);
+ }
+#else
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v,args);
+ } else {
+ SwigPyObject_disown(v,args);
+ }
+#endif
+ }
+ return obj;
+ }
+}
+
+#ifdef METH_O
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"acquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#else
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#endif
+
+#if PY_VERSION_HEX < 0x02020000
+SWIGINTERN PyObject *
+SwigPyObject_getattr(SwigPyObject *sobj,char *name)
+{
+ return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name);
+}
+#endif
+
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_TypeOnce(void) {
+ static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer";
+
+ static PyNumberMethods SwigPyObject_as_number = {
+ (binaryfunc)0, /*nb_add*/
+ (binaryfunc)0, /*nb_subtract*/
+ (binaryfunc)0, /*nb_multiply*/
+ /* nb_divide removed in Python 3 */
+#if PY_VERSION_HEX < 0x03000000
+ (binaryfunc)0, /*nb_divide*/
+#endif
+ (binaryfunc)0, /*nb_remainder*/
+ (binaryfunc)0, /*nb_divmod*/
+ (ternaryfunc)0,/*nb_power*/
+ (unaryfunc)0, /*nb_negative*/
+ (unaryfunc)0, /*nb_positive*/
+ (unaryfunc)0, /*nb_absolute*/
+ (inquiry)0, /*nb_nonzero*/
+ 0, /*nb_invert*/
+ 0, /*nb_lshift*/
+ 0, /*nb_rshift*/
+ 0, /*nb_and*/
+ 0, /*nb_xor*/
+ 0, /*nb_or*/
+#if PY_VERSION_HEX < 0x03000000
+ 0, /*nb_coerce*/
+#endif
+ (unaryfunc)SwigPyObject_long, /*nb_int*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_long, /*nb_long*/
+#else
+ 0, /*nb_reserved*/
+#endif
+ (unaryfunc)0, /*nb_float*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_oct, /*nb_oct*/
+ (unaryfunc)SwigPyObject_hex, /*nb_hex*/
+#endif
+#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */
+#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */
+#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
+#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */
+ 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
+#endif
+ };
+
+ static PyTypeObject swigpyobject_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyObject", /* tp_name */
+ sizeof(SwigPyObject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
+ 0, /* tp_print */
+#if PY_VERSION_HEX < 0x02020000
+ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
+#else
+ (getattrfunc)0, /* tp_getattr */
+#endif
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX >= 0x03000000
+ 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */
+#else
+ (cmpfunc)SwigPyObject_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyObject_repr, /* tp_repr */
+ &SwigPyObject_as_number, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ 0, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigobject_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ swigobject_methods, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpyobject_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpyobject_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpyobject_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpyobject_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
+{
+ SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type());
+ if (sobj) {
+ sobj->ptr = ptr;
+ sobj->ty = ty;
+ sobj->own = own;
+ sobj->next = 0;
+ }
+ return (PyObject *)sobj;
+}
+
+/* -----------------------------------------------------------------------------
+ * Implements a simple Swig Packed type, and use it instead of string
+ * ----------------------------------------------------------------------------- */
+
+typedef struct {
+ PyObject_HEAD
+ void *pack;
+ swig_type_info *ty;
+ size_t size;
+} SwigPyPacked;
+
+SWIGRUNTIME int
+SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
+{
+ char result[SWIG_BUFFER_SIZE];
+ fputs("pack, v->size, 0, sizeof(result))) {
+ fputs("at ", fp);
+ fputs(result, fp);
+ }
+ fputs(v->ty->name,fp);
+ fputs(">", fp);
+ return 0;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_repr(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
+ return SWIG_Python_str_FromFormat("", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromFormat("", v->ty->name);
+ }
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_str(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){
+ return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromChar(v->ty->name);
+ }
+}
+
+SWIGRUNTIME int
+SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
+{
+ size_t i = v->size;
+ size_t j = w->size;
+ int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
+ return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size);
+}
+
+SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void);
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce();
+ return type;
+}
+
+SWIGRUNTIMEINLINE int
+SwigPyPacked_Check(PyObject *op) {
+ return ((op)->ob_type == SwigPyPacked_TypeOnce())
+ || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0);
+}
+
+SWIGRUNTIME void
+SwigPyPacked_dealloc(PyObject *v)
+{
+ if (SwigPyPacked_Check(v)) {
+ SwigPyPacked *sobj = (SwigPyPacked *) v;
+ free(sobj->pack);
+ }
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_TypeOnce(void) {
+ static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer";
+ static PyTypeObject swigpypacked_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX>=0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyPacked", /* tp_name */
+ sizeof(SwigPyPacked), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyPacked_dealloc, /* tp_dealloc */
+ (printfunc)SwigPyPacked_print, /* tp_print */
+ (getattrfunc)0, /* tp_getattr */
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX>=0x03000000
+ 0, /* tp_reserved in 3.0.1 */
+#else
+ (cmpfunc)SwigPyPacked_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyPacked_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ (reprfunc)SwigPyPacked_str, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigpacked_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpypacked_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpypacked_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpypacked_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpypacked_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
+{
+ SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type());
+ if (sobj) {
+ void *pack = malloc(size);
+ if (pack) {
+ memcpy(pack, ptr, size);
+ sobj->pack = pack;
+ sobj->ty = ty;
+ sobj->size = size;
+ } else {
+ PyObject_DEL((PyObject *) sobj);
+ sobj = 0;
+ }
+ }
+ return (PyObject *) sobj;
+}
+
+SWIGRUNTIME swig_type_info *
+SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
+{
+ if (SwigPyPacked_Check(obj)) {
+ SwigPyPacked *sobj = (SwigPyPacked *)obj;
+ if (sobj->size != size) return 0;
+ memcpy(ptr, sobj->pack, size);
+ return sobj->ty;
+ } else {
+ return 0;
+ }
+}
+
+/* -----------------------------------------------------------------------------
+ * pointers/data manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_This(void)
+{
+ return SWIG_Python_str_FromChar("this");
+}
+
+static PyObject *swig_this = NULL;
+
+SWIGRUNTIME PyObject *
+SWIG_This(void)
+{
+ if (swig_this == NULL)
+ swig_this = _SWIG_This();
+ return swig_this;
+}
+
+/* #define SWIG_PYTHON_SLOW_GETSET_THIS */
+
+/* TODO: I don't know how to implement the fast getset in Python 3 right now */
+#if PY_VERSION_HEX>=0x03000000
+#define SWIG_PYTHON_SLOW_GETSET_THIS
+#endif
+
+SWIGRUNTIME SwigPyObject *
+SWIG_Python_GetSwigThis(PyObject *pyobj)
+{
+ PyObject *obj;
+
+ if (SwigPyObject_Check(pyobj))
+ return (SwigPyObject *) pyobj;
+
+#ifdef SWIGPYTHON_BUILTIN
+ (void)obj;
+# ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ pyobj = PyWeakref_GET_OBJECT(pyobj);
+ if (pyobj && SwigPyObject_Check(pyobj))
+ return (SwigPyObject*) pyobj;
+ }
+# endif
+ return NULL;
+#else
+
+ obj = 0;
+
+#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
+ if (PyInstance_Check(pyobj)) {
+ obj = _PyInstance_Lookup(pyobj, SWIG_This());
+ } else {
+ PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0;
+ } else {
+#ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
+ return wobj ? SWIG_Python_GetSwigThis(wobj) : 0;
+ }
+#endif
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+ }
+ }
+#else
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+#endif
+ if (obj && !SwigPyObject_Check(obj)) {
+ /* a PyObject is called 'this', try to get the 'real this'
+ SwigPyObject from it */
+ return SWIG_Python_GetSwigThis(obj);
+ }
+ return (SwigPyObject *)obj;
+#endif
+}
+
+/* Acquire a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_AcquirePtr(PyObject *obj, int own) {
+ if (own == SWIG_POINTER_OWN) {
+ SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj);
+ if (sobj) {
+ int oldown = sobj->own;
+ sobj->own = own;
+ return oldown;
+ }
+ }
+ return 0;
+}
+
+/* Convert a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
+ int res;
+ SwigPyObject *sobj;
+ int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
+
+ if (!obj)
+ return SWIG_ERROR;
+ if (obj == Py_None && !implicit_conv) {
+ if (ptr)
+ *ptr = 0;
+ return SWIG_OK;
+ }
+
+ res = SWIG_ERROR;
+
+ sobj = SWIG_Python_GetSwigThis(obj);
+ if (own)
+ *own = 0;
+ while (sobj) {
+ void *vptr = sobj->ptr;
+ if (ty) {
+ swig_type_info *to = sobj->ty;
+ if (to == ty) {
+ /* no type cast needed */
+ if (ptr) *ptr = vptr;
+ break;
+ } else {
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) {
+ sobj = (SwigPyObject *)sobj->next;
+ } else {
+ if (ptr) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ if (newmemory == SWIG_CAST_NEW_MEMORY) {
+ assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */
+ if (own)
+ *own = *own | SWIG_CAST_NEW_MEMORY;
+ }
+ }
+ break;
+ }
+ }
+ } else {
+ if (ptr) *ptr = vptr;
+ break;
+ }
+ }
+ if (sobj) {
+ if (own)
+ *own = *own | sobj->own;
+ if (flags & SWIG_POINTER_DISOWN) {
+ sobj->own = 0;
+ }
+ res = SWIG_OK;
+ } else {
+ if (implicit_conv) {
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ if (data && !data->implicitconv) {
+ PyObject *klass = data->klass;
+ if (klass) {
+ PyObject *impconv;
+ data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/
+ impconv = SWIG_Python_CallFunctor(klass, obj);
+ data->implicitconv = 0;
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ impconv = 0;
+ }
+ if (impconv) {
+ SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv);
+ if (iobj) {
+ void *vptr;
+ res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0);
+ if (SWIG_IsOK(res)) {
+ if (ptr) {
+ *ptr = vptr;
+ /* transfer the ownership to 'ptr' */
+ iobj->own = 0;
+ res = SWIG_AddCast(res);
+ res = SWIG_AddNewMask(res);
+ } else {
+ res = SWIG_AddCast(res);
+ }
+ }
+ }
+ Py_DECREF(impconv);
+ }
+ }
+ }
+ }
+ if (!SWIG_IsOK(res) && obj == Py_None) {
+ if (ptr)
+ *ptr = 0;
+ if (PyErr_Occurred())
+ PyErr_Clear();
+ res = SWIG_OK;
+ }
+ }
+ return res;
+}
+
+/* Convert a function ptr value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {
+ if (!PyCFunction_Check(obj)) {
+ return SWIG_ConvertPtr(obj, ptr, ty, 0);
+ } else {
+ void *vptr = 0;
+
+ /* here we get the method pointer for callbacks */
+ const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
+ const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0;
+ if (desc)
+ desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0;
+ if (!desc)
+ return SWIG_ERROR;
+ if (ty) {
+ swig_cast_info *tc = SWIG_TypeCheck(desc,ty);
+ if (tc) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ assert(!newmemory); /* newmemory handling not yet implemented */
+ } else {
+ return SWIG_ERROR;
+ }
+ } else {
+ *ptr = vptr;
+ }
+ return SWIG_OK;
+ }
+}
+
+/* Convert a packed value value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
+ swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz);
+ if (!to) return SWIG_ERROR;
+ if (ty) {
+ if (to != ty) {
+ /* check type cast? */
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) return SWIG_ERROR;
+ }
+ }
+ return SWIG_OK;
+}
+
+/* -----------------------------------------------------------------------------
+ * Create a new pointer object
+ * ----------------------------------------------------------------------------- */
+
+/*
+ Create a new instance object, without calling __init__, and set the
+ 'this' attribute.
+*/
+
+SWIGRUNTIME PyObject*
+SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
+{
+#if (PY_VERSION_HEX >= 0x02020000)
+ PyObject *inst = 0;
+ PyObject *newraw = data->newraw;
+ if (newraw) {
+ inst = PyObject_Call(newraw, data->newargs, NULL);
+ if (inst) {
+#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ }
+ }
+#else
+ PyObject *key = SWIG_This();
+ PyObject_SetAttr(inst, key, swig_this);
+#endif
+ }
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
+ if (inst) {
+ PyObject_SetAttr(inst, SWIG_This(), swig_this);
+ Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
+ }
+#else
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+#endif
+ }
+ return inst;
+#else
+#if (PY_VERSION_HEX >= 0x02010000)
+ PyObject *inst = 0;
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+ return (PyObject *) inst;
+#else
+ PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type);
+ if (inst == NULL) {
+ return NULL;
+ }
+ inst->in_class = (PyClassObject *)data->newargs;
+ Py_INCREF(inst->in_class);
+ inst->in_dict = PyDict_New();
+ if (inst->in_dict == NULL) {
+ Py_DECREF(inst);
+ return NULL;
+ }
+#ifdef Py_TPFLAGS_HAVE_WEAKREFS
+ inst->in_weakreflist = NULL;
+#endif
+#ifdef Py_TPFLAGS_GC
+ PyObject_GC_Init(inst);
+#endif
+ PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this);
+ return (PyObject *) inst;
+#endif
+#endif
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
+{
+ PyObject *dict;
+#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ }
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ return;
+ }
+#endif
+ dict = PyObject_GetAttrString(inst, (char*)"__dict__");
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ Py_DECREF(dict);
+}
+
+
+SWIGINTERN PyObject *
+SWIG_Python_InitShadowInstance(PyObject *args) {
+ PyObject *obj[2];
+ if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) {
+ return NULL;
+ } else {
+ SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]);
+ if (sthis) {
+ SwigPyObject_append((PyObject*) sthis, obj[1]);
+ } else {
+ SWIG_Python_SetSwigThis(obj[0], obj[1]);
+ }
+ return SWIG_Py_Void();
+ }
+}
+
+/* Create a new pointer object */
+
+SWIGRUNTIME PyObject *
+SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {
+ SwigPyClientData *clientdata;
+ PyObject * robj;
+ int own;
+
+ if (!ptr)
+ return SWIG_Py_Void();
+
+ clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0;
+ own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0;
+ if (clientdata && clientdata->pytype) {
+ SwigPyObject *newobj;
+ if (flags & SWIG_BUILTIN_TP_INIT) {
+ newobj = (SwigPyObject*) self;
+ if (newobj->ptr) {
+ PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0);
+ while (newobj->next)
+ newobj = (SwigPyObject *) newobj->next;
+ newobj->next = next_self;
+ newobj = (SwigPyObject *)next_self;
+ }
+ } else {
+ newobj = PyObject_New(SwigPyObject, clientdata->pytype);
+ }
+ if (newobj) {
+ newobj->ptr = ptr;
+ newobj->ty = type;
+ newobj->own = own;
+ newobj->next = 0;
+#ifdef SWIGPYTHON_BUILTIN
+ newobj->dict = 0;
+#endif
+ return (PyObject*) newobj;
+ }
+ return SWIG_Py_Void();
+ }
+
+ assert(!(flags & SWIG_BUILTIN_TP_INIT));
+
+ robj = SwigPyObject_New(ptr, type, own);
+ if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) {
+ PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj);
+ Py_DECREF(robj);
+ robj = inst;
+ }
+ return robj;
+}
+
+/* Create a new packed object */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
+ return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();
+}
+
+/* -----------------------------------------------------------------------------*
+ * Get type list
+ * -----------------------------------------------------------------------------*/
+
+#ifdef SWIG_LINK_RUNTIME
+void *SWIG_ReturnGlobalTypeList(void *);
+#endif
+
+SWIGRUNTIME swig_module_info *
+SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
+ static void *type_pointer = (void *)0;
+ /* first check if module already created */
+ if (!type_pointer) {
+#ifdef SWIG_LINK_RUNTIME
+ type_pointer = SWIG_ReturnGlobalTypeList((void *)0);
+#else
+# ifdef SWIGPY_USE_CAPSULE
+ type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0);
+# else
+ type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
+ (char*)"type_pointer" SWIG_TYPE_TABLE_NAME);
+# endif
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ type_pointer = (void *)0;
+ }
+#endif
+ }
+ return (swig_module_info *) type_pointer;
+}
+
+#if PY_MAJOR_VERSION < 2
+/* PyModule_AddObject function was introduced in Python 2.0. The following function
+ is copied out of Python/modsupport.c in python version 2.3.4 */
+SWIGINTERN int
+PyModule_AddObject(PyObject *m, char *name, PyObject *o)
+{
+ PyObject *dict;
+ if (!PyModule_Check(m)) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs module as first arg");
+ return SWIG_ERROR;
+ }
+ if (!o) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs non-NULL value");
+ return SWIG_ERROR;
+ }
+
+ dict = PyModule_GetDict(m);
+ if (dict == NULL) {
+ /* Internal error -- modules must have a dict! */
+ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
+ PyModule_GetName(m));
+ return SWIG_ERROR;
+ }
+ if (PyDict_SetItemString(dict, name, o))
+ return SWIG_ERROR;
+ Py_DECREF(o);
+ return SWIG_OK;
+}
+#endif
+
+SWIGRUNTIME void
+#ifdef SWIGPY_USE_CAPSULE
+SWIG_Python_DestroyModule(PyObject *obj)
+#else
+SWIG_Python_DestroyModule(void *vptr)
+#endif
+{
+#ifdef SWIGPY_USE_CAPSULE
+ swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME);
+#else
+ swig_module_info *swig_module = (swig_module_info *) vptr;
+#endif
+ swig_type_info **types = swig_module->types;
+ size_t i;
+ for (i =0; i < swig_module->size; ++i) {
+ swig_type_info *ty = types[i];
+ if (ty->owndata) {
+ SwigPyClientData *data = (SwigPyClientData *) ty->clientdata;
+ if (data) SwigPyClientData_Del(data);
+ }
+ }
+ Py_DECREF(SWIG_This());
+ swig_this = NULL;
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetModule(swig_module_info *swig_module) {
+#if PY_VERSION_HEX >= 0x03000000
+ /* Add a dummy module object into sys.modules */
+ PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION);
+#else
+ static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */
+ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
+#endif
+#ifdef SWIGPY_USE_CAPSULE
+ PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#else
+ PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#endif
+}
+
+/* The python cached type query */
+SWIGRUNTIME PyObject *
+SWIG_Python_TypeCache(void) {
+ static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New();
+ return cache;
+}
+
+SWIGRUNTIME swig_type_info *
+SWIG_Python_TypeQuery(const char *type)
+{
+ PyObject *cache = SWIG_Python_TypeCache();
+ PyObject *key = SWIG_Python_str_FromChar(type);
+ PyObject *obj = PyDict_GetItem(cache, key);
+ swig_type_info *descriptor;
+ if (obj) {
+#ifdef SWIGPY_USE_CAPSULE
+ descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL);
+#else
+ descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj);
+#endif
+ } else {
+ swig_module_info *swig_module = SWIG_GetModule(0);
+ descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
+ if (descriptor) {
+#ifdef SWIGPY_USE_CAPSULE
+ obj = PyCapsule_New((void*) descriptor, NULL, NULL);
+#else
+ obj = PyCObject_FromVoidPtr(descriptor, NULL);
+#endif
+ PyDict_SetItem(cache, key, obj);
+ Py_DECREF(obj);
+ }
+ }
+ Py_DECREF(key);
+ return descriptor;
+}
+
+/*
+ For backward compatibility only
+*/
+#define SWIG_POINTER_EXCEPTION 0
+#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
+#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
+
+SWIGRUNTIME int
+SWIG_Python_AddErrMesg(const char* mesg, int infront)
+{
+ if (PyErr_Occurred()) {
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+ PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ Py_XINCREF(type);
+ PyErr_Clear();
+ if (infront) {
+ PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str));
+ } else {
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ }
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ }
+ return 1;
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIME int
+SWIG_Python_ArgFail(int argnum)
+{
+ if (PyErr_Occurred()) {
+ /* add information about failing argument */
+ char mesg[256];
+ PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum);
+ return SWIG_Python_AddErrMesg(mesg, 1);
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIMEINLINE const char *
+SwigPyObject_GetDesc(PyObject *self)
+{
+ SwigPyObject *v = (SwigPyObject *)self;
+ swig_type_info *ty = v ? v->ty : 0;
+ return ty ? ty->str : "";
+}
+
+SWIGRUNTIME void
+SWIG_Python_TypeError(const char *type, PyObject *obj)
+{
+ if (type) {
+#if defined(SWIG_COBJECT_TYPES)
+ if (obj && SwigPyObject_Check(obj)) {
+ const char *otype = (const char *) SwigPyObject_GetDesc(obj);
+ if (otype) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received",
+ type, otype);
+ return;
+ }
+ } else
+#endif
+ {
+ const char *otype = (obj ? obj->ob_type->tp_name : 0);
+ if (otype) {
+ PyObject *str = PyObject_Str(obj);
+ const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0;
+ if (cstr) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received",
+ type, otype, cstr);
+ SWIG_Python_str_DelForPy3(cstr);
+ } else {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received",
+ type, otype);
+ }
+ Py_XDECREF(str);
+ return;
+ }
+ }
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected", type);
+ } else {
+ PyErr_Format(PyExc_TypeError, "unexpected type is received");
+ }
+}
+
+
+/* Convert a pointer value, signal an exception on a type mismatch */
+SWIGRUNTIME void *
+SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {
+ void *result;
+ if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) {
+ PyErr_Clear();
+#if SWIG_POINTER_EXCEPTION
+ if (flags) {
+ SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj);
+ SWIG_Python_ArgFail(argnum);
+ }
+#endif
+ }
+ return result;
+}
+
+#ifdef SWIGPYTHON_BUILTIN
+SWIGRUNTIME int
+SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
+ PyTypeObject *tp = obj->ob_type;
+ PyObject *descr;
+ PyObject *encoded_name;
+ descrsetfunc f;
+ int res = -1;
+
+# ifdef Py_USING_UNICODE
+ if (PyString_Check(name)) {
+ name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL);
+ if (!name)
+ return -1;
+ } else if (!PyUnicode_Check(name))
+# else
+ if (!PyString_Check(name))
+# endif
+ {
+ PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name);
+ return -1;
+ } else {
+ Py_INCREF(name);
+ }
+
+ if (!tp->tp_dict) {
+ if (PyType_Ready(tp) < 0)
+ goto done;
+ }
+
+ descr = _PyType_Lookup(tp, name);
+ f = NULL;
+ if (descr != NULL)
+ f = descr->ob_type->tp_descr_set;
+ if (!f) {
+ if (PyString_Check(name)) {
+ encoded_name = name;
+ Py_INCREF(name);
+ } else {
+ encoded_name = PyUnicode_AsUTF8String(name);
+ }
+ PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
+ Py_DECREF(encoded_name);
+ } else {
+ res = f(descr, obj, value);
+ }
+
+ done:
+ Py_DECREF(name);
+ return res;
+}
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+
+#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
+
+#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
+
+
+
+ #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0)
+
+
+/* -------- TYPES TABLE (BEGIN) -------- */
+
+#define SWIGTYPE_p_Config swig_types[0]
+#define SWIGTYPE_p_Feature swig_types[1]
+#define SWIGTYPE_p_FrontEnd swig_types[2]
+#define SWIGTYPE_p_FsgModel swig_types[3]
+#define SWIGTYPE_p_Jsgf swig_types[4]
+#define SWIGTYPE_p_JsgfIterator swig_types[5]
+#define SWIGTYPE_p_JsgfRule swig_types[6]
+#define SWIGTYPE_p_LogMath swig_types[7]
+#define SWIGTYPE_p_NGramModel swig_types[8]
+#define SWIGTYPE_p_NGramModelSet swig_types[9]
+#define SWIGTYPE_p_NGramModelSetIterator swig_types[10]
+#define SWIGTYPE_p_char swig_types[11]
+#define SWIGTYPE_p_fe_t swig_types[12]
+#define SWIGTYPE_p_feat_t swig_types[13]
+#define SWIGTYPE_p_float32 swig_types[14]
+#define SWIGTYPE_p_fsg_model_t swig_types[15]
+#define SWIGTYPE_p_int swig_types[16]
+#define SWIGTYPE_p_int16 swig_types[17]
+#define SWIGTYPE_p_jsgf_rule_iter_t swig_types[18]
+#define SWIGTYPE_p_logmath_t swig_types[19]
+#define SWIGTYPE_p_mfcc_t swig_types[20]
+#define SWIGTYPE_p_ngram_file_type_t swig_types[21]
+#define SWIGTYPE_p_ngram_model_set_iter_t swig_types[22]
+#define SWIGTYPE_p_p_char swig_types[23]
+#define SWIGTYPE_p_p_p_mfcc_t swig_types[24]
+static swig_type_info *swig_types[26];
+static swig_module_info swig_module = {swig_types, 25, 0, 0, 0, 0};
+#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
+#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
+
+/* -------- TYPES TABLE (END) -------- */
+
+#if (PY_VERSION_HEX <= 0x02000000)
+# if !defined(SWIG_PYTHON_CLASSIC)
+# error "This python version requires swig to be run with the '-classic' option"
+# endif
+#endif
+
+/*-----------------------------------------------
+ @(target):= _sphinxbase.so
+ ------------------------------------------------*/
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_init PyInit__sphinxbase
+
+#else
+# define SWIG_init init_sphinxbase
+
+#endif
+#define SWIG_name "_sphinxbase"
+
+#define SWIGVERSION 0x020011
+#define SWIG_VERSION SWIGVERSION
+
+
+#define SWIG_as_voidptr(a) (void *)((const void *)(a))
+#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
+
+SWIGINTERN void delete_Config(Config *self){
+ cmd_ln_free_r(self);
+ }
+
+SWIGINTERN swig_type_info*
+SWIG_pchar_descriptor(void)
+{
+ static int init = 0;
+ static swig_type_info* info = 0;
+ if (!init) {
+ info = SWIG_TypeQuery("_p_char");
+ init = 1;
+ }
+ return info;
+}
+
+
+SWIGINTERN int
+SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
+{
+#if PY_VERSION_HEX>=0x03000000
+ if (PyUnicode_Check(obj))
+#else
+ if (PyString_Check(obj))
+#endif
+ {
+ char *cstr; Py_ssize_t len;
+#if PY_VERSION_HEX>=0x03000000
+ if (!alloc && cptr) {
+ /* We can't allow converting without allocation, since the internal
+ representation of string in Python 3 is UCS-2/UCS-4 but we require
+ a UTF-8 representation.
+ TODO(bhy) More detailed explanation */
+ return SWIG_RuntimeError;
+ }
+ obj = PyUnicode_AsUTF8String(obj);
+ PyBytes_AsStringAndSize(obj, &cstr, &len);
+ if(alloc) *alloc = SWIG_NEWOBJ;
+#else
+ PyString_AsStringAndSize(obj, &cstr, &len);
+#endif
+ if (cptr) {
+ if (alloc) {
+ /*
+ In python the user should not be able to modify the inner
+ string representation. To warranty that, if you define
+ SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
+ buffer is always returned.
+
+ The default behavior is just to return the pointer value,
+ so, be careful.
+ */
+#if defined(SWIG_PYTHON_SAFE_CSTRINGS)
+ if (*alloc != SWIG_OLDOBJ)
+#else
+ if (*alloc == SWIG_NEWOBJ)
+#endif
+ {
+ *cptr = (char *)memcpy((char *)malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1));
+ *alloc = SWIG_NEWOBJ;
+ }
+ else {
+ *cptr = cstr;
+ *alloc = SWIG_OLDOBJ;
+ }
+ } else {
+ #if PY_VERSION_HEX>=0x03000000
+ assert(0); /* Should never reach here in Python 3 */
+ #endif
+ *cptr = SWIG_Python_str_AsChar(obj);
+ }
+ }
+ if (psize) *psize = len + 1;
+#if PY_VERSION_HEX>=0x03000000
+ Py_XDECREF(obj);
+#endif
+ return SWIG_OK;
+ } else {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ if (pchar_descriptor) {
+ void* vptr = 0;
+ if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
+ if (cptr) *cptr = (char *) vptr;
+ if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
+ if (alloc) *alloc = SWIG_OLDOBJ;
+ return SWIG_OK;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+
+
+
+
+
+SWIGINTERN int
+SWIG_AsVal_double (PyObject *obj, double *val)
+{
+ int res = SWIG_TypeError;
+ if (PyFloat_Check(obj)) {
+ if (val) *val = PyFloat_AsDouble(obj);
+ return SWIG_OK;
+ } else if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ double v = PyLong_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ double d = PyFloat_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = d;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_AddCast(SWIG_OK));
+ } else {
+ PyErr_Clear();
+ }
+ }
+ }
+#endif
+ return res;
+}
+
+
+#include
+
+
+#include
+
+
+SWIGINTERNINLINE int
+SWIG_CanCastAsInteger(double *d, double min, double max) {
+ double x = *d;
+ if ((min <= x && x <= max)) {
+ double fx = floor(x);
+ double cx = ceil(x);
+ double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */
+ if ((errno == EDOM) || (errno == ERANGE)) {
+ errno = 0;
+ } else {
+ double summ, reps, diff;
+ if (rd < x) {
+ diff = x - rd;
+ } else if (rd > x) {
+ diff = rd - x;
+ } else {
+ return 1;
+ }
+ summ = rd + x;
+ reps = diff/summ;
+ if (reps < 8*DBL_EPSILON) {
+ *d = rd;
+ return 1;
+ }
+ }
+ }
+ return 0;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_long (PyObject *obj, long* val)
+{
+ if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ long v = PyInt_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) {
+ if (val) *val = (long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_bool (PyObject *obj, bool *val)
+{
+ int r = PyObject_IsTrue(obj);
+ if (r == -1)
+ return SWIG_ERROR;
+ if (val) *val = r ? true : false;
+ return SWIG_OK;
+}
+
+SWIGINTERN void Config_set_boolean(Config *self,char const *key,bool val){
+ cmd_ln_set_boolean_r(self, key, val);
+ }
+
+#include
+#if !defined(SWIG_NO_LLONG_MAX)
+# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
+# define LLONG_MAX __LONG_LONG_MAX__
+# define LLONG_MIN (-LLONG_MAX - 1LL)
+# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
+# endif
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_int (PyObject * obj, int *val)
+{
+ long v;
+ int res = SWIG_AsVal_long (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if ((v < INT_MIN || v > INT_MAX)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (int)(v);
+ }
+ }
+ return res;
+}
+
+SWIGINTERN void Config_set_int(Config *self,char const *key,int val){
+ cmd_ln_set_int_r(self, key, val);
+ }
+SWIGINTERN void Config_set_float(Config *self,char const *key,double val){
+ cmd_ln_set_float_r(self, key, val);
+ }
+SWIGINTERN void Config_set_string(Config *self,char const *key,char const *val){
+ cmd_ln_set_str_r(self, key, val);
+ }
+SWIGINTERN void Config_set_string_extra(Config *self,char const *key,char const *val){
+ cmd_ln_set_str_extra_r(self, key, val);
+ }
+SWIGINTERN bool Config_exists(Config *self,char const *key){
+ return cmd_ln_exists_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_bool (bool value)
+{
+ return PyBool_FromLong(value ? 1 : 0);
+}
+
+SWIGINTERN bool Config_get_boolean(Config *self,char const *key){
+ return cmd_ln_boolean_r(self, key);
+ }
+SWIGINTERN int Config_get_int(Config *self,char const *key){
+ return cmd_ln_int_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_int (int value)
+{
+ return PyInt_FromLong((long) value);
+}
+
+SWIGINTERN double Config_get_float(Config *self,char const *key){
+ return cmd_ln_float_r(self, key);
+ }
+
+ #define SWIG_From_double PyFloat_FromDouble
+
+SWIGINTERN char const *Config_get_string(Config *self,char const *key){
+ return cmd_ln_str_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtrAndSize(const char* carray, size_t size)
+{
+ if (carray) {
+ if (size > INT_MAX) {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ return pchar_descriptor ?
+ SWIG_InternalNewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void();
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromStringAndSize(carray, (int)(size));
+#else
+ return PyString_FromStringAndSize(carray, (int)(size));
+#endif
+ }
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtr(const char *cptr)
+{
+ return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0));
+}
+
+SWIGINTERN FrontEnd *new_FrontEnd(fe_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_FrontEnd(FrontEnd *self){
+ fe_free(self);
+ }
+SWIGINTERN int FrontEnd_output_size(FrontEnd *self){
+ return fe_get_output_size(self);
+ }
+SWIGINTERN void FrontEnd_start_utt(FrontEnd *self,int *errcode){
+ *errcode = fe_start_utt(self);
+ }
+
+SWIGINTERN int
+SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val)
+{
+#if PY_VERSION_HEX < 0x03000000
+ if (PyInt_Check(obj)) {
+ long v = PyInt_AsLong(obj);
+ if (v >= 0) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ return SWIG_OverflowError;
+ }
+ } else
+#endif
+ if (PyLong_Check(obj)) {
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+#if PY_VERSION_HEX >= 0x03000000
+ {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (v < 0) {
+ return SWIG_OverflowError;
+ }
+ } else {
+ PyErr_Clear();
+ }
+ }
+#endif
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
+ if (val) *val = (unsigned long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERNINLINE int
+SWIG_AsVal_size_t (PyObject * obj, size_t *val)
+{
+ unsigned long v;
+ int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0);
+ if (SWIG_IsOK(res) && val) *val = (size_t)(v);
+ return res;
+}
+
+SWIGINTERN int32 FrontEnd_process_utt(FrontEnd *self,int16 const *spch,size_t nsamps,mfcc_t ***cep_block,int *errcode){
+ int32 nframes;
+ *errcode = fe_process_utt(self, spch, nsamps, cep_block, &nframes);
+ return nframes;
+ }
+SWIGINTERN int32 FrontEnd_end_utt(FrontEnd *self,mfcc_t *out_cepvector,int *errcode){
+ int32 nframes;
+ *errcode = fe_end_utt(self, out_cepvector, &nframes);
+ return nframes;
+ }
+SWIGINTERN Feature *new_Feature(feat_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_Feature(Feature *self){
+ feat_free(self);
+ }
+
+/* Getting isfinite working pre C99 across multiple platforms is non-trivial. Users can provide SWIG_isfinite on older platforms. */
+#ifndef SWIG_isfinite
+# if defined(isfinite)
+# define SWIG_isfinite(X) (isfinite(X))
+# elif defined(_MSC_VER)
+# define SWIG_isfinite(X) (_finite(X))
+# elif defined(__sun) && defined(__SVR4)
+# include
+# define SWIG_isfinite(X) (finite(X))
+# endif
+#endif
+
+
+/* Accept infinite as a valid float value unless we are unable to check if a value is finite */
+#ifdef SWIG_isfinite
+# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX) && SWIG_isfinite(X))
+#else
+# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX))
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_float (PyObject * obj, float *val)
+{
+ double v;
+ int res = SWIG_AsVal_double (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if (SWIG_Float_Overflow_Check(v)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (float)(v);
+ }
+ }
+ return res;
+}
+
+SWIGINTERN FsgModel *new_FsgModel__SWIG_0(char const *name,LogMath *logmath,float lw,int32 n){
+ return fsg_model_init(name, logmath, lw, n);
+ }
+SWIGINTERN FsgModel *new_FsgModel__SWIG_1(fsg_model_t *ptr){
+ return ptr;
+ }
+SWIGINTERN FsgModel *new_FsgModel__SWIG_2(char const *path,LogMath *logmath,float lw){
+ return fsg_model_readfile(path, logmath, lw);
+ }
+SWIGINTERN void delete_FsgModel(FsgModel *self){
+ fsg_model_free(self);
+ }
+SWIGINTERN int FsgModel_word_id(FsgModel *self,char const *word){
+ return fsg_model_word_id(self, word);
+ }
+SWIGINTERN int FsgModel_word_add(FsgModel *self,char const *word){
+ return fsg_model_word_add(self, word);
+ }
+SWIGINTERN void FsgModel_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp,int32 wid){
+ fsg_model_trans_add(self, src, dst, logp, wid);
+ }
+SWIGINTERN int32 FsgModel_null_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp){
+ return fsg_model_null_trans_add(self, src, dst, logp);
+ }
+SWIGINTERN int32 FsgModel_tag_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp,int32 wid){
+ return fsg_model_tag_trans_add(self, src, dst, logp, wid);
+ }
+SWIGINTERN int FsgModel_add_silence(FsgModel *self,char const *silword,int32 state,float silprob){
+ return fsg_model_add_silence(self, silword, state, silprob);
+ }
+SWIGINTERN int FsgModel_add_alt(FsgModel *self,char const *baseword,char const *altword){
+ return fsg_model_add_alt(self, baseword, altword);
+ }
+SWIGINTERN void FsgModel_writefile(FsgModel *self,char const *path){
+ fsg_model_writefile(self, path);
+ }
+SWIGINTERN JsgfRule *new_JsgfRule(void){
+ return NULL;
+ }
+SWIGINTERN void delete_JsgfRule(JsgfRule *self){
+ }
+SWIGINTERN JsgfRule *JsgfRule_fromIter(jsgf_rule_iter_t *itor){
+ return jsgf_rule_iter_rule(itor);
+ }
+SWIGINTERN char const *JsgfRule_name(JsgfRule *self){
+ return jsgf_rule_name(self);
+ }
+SWIGINTERN bool JsgfRule_public(JsgfRule *self){
+ return jsgf_rule_public(self);
+ }
+SWIGINTERN NGramModel *NGramModel_fromIter(ngram_model_set_iter_t *itor){
+ const char *name;
+ return ngram_model_set_iter_model(itor, &name);
+ }
+SWIGINTERN NGramModel *new_NGramModel__SWIG_0(char const *path){
+ logmath_t *lmath = logmath_init(1.0001, 0, 0);
+ ngram_model_t * model = ngram_model_read(NULL, path, NGRAM_AUTO, lmath);
+ logmath_free(lmath);
+ return model;
+ }
+SWIGINTERN NGramModel *new_NGramModel__SWIG_1(Config *config,LogMath *logmath,char const *path){
+ return ngram_model_read(config, path, NGRAM_AUTO, logmath);
+ }
+SWIGINTERN void delete_NGramModel(NGramModel *self){
+ ngram_model_free(self);
+ }
+SWIGINTERN void NGramModel_write(NGramModel *self,char const *path,ngram_file_type_t ftype,int *errcode){
+ *errcode = ngram_model_write(self, path, ftype);
+ }
+SWIGINTERN ngram_file_type_t NGramModel_str_to_type(NGramModel *self,char const *str){
+ return ngram_str_to_type(str);
+ }
+SWIGINTERN char const *NGramModel_type_to_str(NGramModel *self,int type){
+ return ngram_type_to_str(type);
+ }
+SWIGINTERN void NGramModel_casefold(NGramModel *self,int kase,int *errcode){
+ *errcode = ngram_model_casefold(self, kase);
+ }
+SWIGINTERN int32 NGramModel_size(NGramModel *self){
+ return ngram_model_get_size(self);
+ }
+SWIGINTERN int32 NGramModel_add_word(NGramModel *self,char const *word,float32 weight){
+ return ngram_model_add_word(self, word, weight);
+ }
+SWIGINTERN int32 NGramModel_add_class(NGramModel *self,char const *c,float32 w,size_t n,char **ptr,float32 const *weights){
+ return ngram_model_add_class(self, c, w, ptr, weights, n);
+ }
+SWIGINTERN int32 NGramModel_prob(NGramModel *self,size_t n,char **ptr){
+ return ngram_prob(self, (const char * const *)ptr, n);
+ }
+SWIGINTERN LogMath *new_LogMath__SWIG_0(void){
+ return logmath_init(1.0001f, 0, 0);
+ }
+SWIGINTERN LogMath *new_LogMath__SWIG_1(logmath_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_LogMath(LogMath *self){
+ logmath_free(self);
+ }
+SWIGINTERN float64 LogMath_exp(LogMath *self,int prob){
+ return logmath_exp(self, prob);
+ }
+
+typedef struct {
+ ngram_model_set_iter_t *ptr;
+} NGramModelSetIterator;
+
+SWIGINTERN NGramModelSetIterator *new_NGramModelSetIterator(ngram_model_set_iter_t *ptr){
+ NGramModelSetIterator *iter = (NGramModelSetIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_NGramModelSetIterator(NGramModelSetIterator *self){
+ if (self->ptr)
+ ngram_model_set_iter_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN NGramModel *NGramModelSetIterator_next(NGramModelSetIterator *self){
+ if (self->ptr) {
+ NGramModel *value =NGramModel_fromIter(self->ptr);
+ self->ptr =ngram_model_set_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NGramModel *NGramModelSetIterator___next__(NGramModelSetIterator *self){
+ if (self->ptr) {
+ NGramModel *value =NGramModel_fromIter(self->ptr);
+ self->ptr =ngram_model_set_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+
+typedef struct {
+ jsgf_rule_iter_t *ptr;
+} JsgfIterator;
+
+SWIGINTERN JsgfIterator *new_JsgfIterator(jsgf_rule_iter_t *ptr){
+ JsgfIterator *iter = (JsgfIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_JsgfIterator(JsgfIterator *self){
+ if (self->ptr)
+ jsgf_rule_iter_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN JsgfRule *JsgfIterator_next(JsgfIterator *self){
+ if (self->ptr) {
+ JsgfRule *value =JsgfRule_fromIter(self->ptr);
+ self->ptr =jsgf_rule_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN JsgfRule *JsgfIterator___next__(JsgfIterator *self){
+ if (self->ptr) {
+ JsgfRule *value =JsgfRule_fromIter(self->ptr);
+ self->ptr =jsgf_rule_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NGramModelSetIterator *NGramModelSet___iter__(NGramModelSet *self){
+ return new_NGramModelSetIterator(ngram_model_set_iter(self));
+ }
+SWIGINTERN NGramModelSet *new_NGramModelSet(Config *config,LogMath *logmath,char const *path){
+ return ngram_model_set_read(config, path, logmath);
+ }
+SWIGINTERN void delete_NGramModelSet(NGramModelSet *self){
+ ngram_model_free(self);
+ }
+SWIGINTERN int32 NGramModelSet_count(NGramModelSet *self){
+ return ngram_model_set_count(self);
+ }
+SWIGINTERN NGramModel *NGramModelSet_add(NGramModelSet *self,NGramModel *model,char const *name,float weight,bool reuse_widmap){
+ return ngram_model_set_add(self, model, name, weight, reuse_widmap);
+ }
+SWIGINTERN NGramModel *NGramModelSet_select(NGramModelSet *self,char const *name){
+ return ngram_model_set_select(self, name);
+ }
+SWIGINTERN NGramModel *NGramModelSet_lookup(NGramModelSet *self,char const *name){
+ return ngram_model_set_lookup(self, name);
+ }
+SWIGINTERN char const *NGramModelSet_current(NGramModelSet *self){
+ return ngram_model_set_current(self);
+ }
+SWIGINTERN JsgfIterator *Jsgf___iter__(Jsgf *self){
+ return new_JsgfIterator(jsgf_rule_iter(self));
+ }
+SWIGINTERN Jsgf *new_Jsgf(char const *path){
+ return jsgf_parse_file(path, NULL);
+ }
+SWIGINTERN void delete_Jsgf(Jsgf *self){
+ jsgf_grammar_free(self);
+ }
+SWIGINTERN char const *Jsgf_name(Jsgf *self){
+ return jsgf_grammar_name(self);
+ }
+SWIGINTERN JsgfRule *Jsgf_get_rule(Jsgf *self,char const *name){
+ return jsgf_get_rule(self, name);
+ }
+SWIGINTERN FsgModel *Jsgf_build_fsg(Jsgf *self,JsgfRule *rule,LogMath *logmath,float lw){
+ return jsgf_build_fsg(self, rule, logmath, lw);
+ }
+#ifdef __cplusplus
+extern "C" {
+#endif
+SWIGINTERN PyObject *_wrap_delete_Config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Config",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Config" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ delete_Config(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_boolean(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ bool arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ bool val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_boolean",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_boolean" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_boolean" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_bool(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_boolean" "', argument " "3"" of type '" "bool""'");
+ }
+ arg3 = (bool)(val3);
+ Config_set_boolean(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_int",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_int" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_int" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_int" "', argument " "3"" of type '" "int""'");
+ }
+ arg3 = (int)(val3);
+ Config_set_int(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_float(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ double arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ double val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_float",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_float" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_float" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_double(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_float" "', argument " "3"" of type '" "double""'");
+ }
+ arg3 = (double)(val3);
+ Config_set_float(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_string",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_string" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Config_set_string" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Config_set_string(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_string_extra(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_string_extra",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_string_extra" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_string_extra" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Config_set_string_extra" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Config_set_string_extra(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_exists(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_exists",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_exists" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_exists" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (bool)Config_exists(arg1,(char const *)arg2);
+ resultobj = SWIG_From_bool((bool)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_boolean(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_boolean",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_boolean" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_boolean" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (bool)Config_get_boolean(arg1,(char const *)arg2);
+ resultobj = SWIG_From_bool((bool)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_int",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_int" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_int" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)Config_get_int(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_float(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ double result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_float",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_float" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_float" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (double)Config_get_float(arg1,(char const *)arg2);
+ resultobj = SWIG_From_double((double)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_string",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_string" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Config_get_string(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Config_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Config, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_FrontEnd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ fe_t *arg1 = (fe_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FrontEnd *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_FrontEnd",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_fe_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FrontEnd" "', argument " "1"" of type '" "fe_t *""'");
+ }
+ arg1 = (fe_t *)(argp1);
+ result = (FrontEnd *)new_FrontEnd(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FrontEnd, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_FrontEnd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_FrontEnd",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FrontEnd" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ delete_FrontEnd(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_output_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:FrontEnd_output_size",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_output_size" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ result = (int)FrontEnd_output_size(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_start_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:FrontEnd_start_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_start_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ FrontEnd_start_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_start_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_process_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ int16 *arg2 = (int16 *) 0 ;
+ size_t arg3 ;
+ mfcc_t ***arg4 = (mfcc_t ***) 0 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ size_t val3 ;
+ int ecode3 = 0 ;
+ void *argp4 = 0 ;
+ int res4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int32 result;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FrontEnd_process_utt",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_process_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int16, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FrontEnd_process_utt" "', argument " "2"" of type '" "int16 const *""'");
+ }
+ arg2 = (int16 *)(argp2);
+ ecode3 = SWIG_AsVal_size_t(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FrontEnd_process_utt" "', argument " "3"" of type '" "size_t""'");
+ }
+ arg3 = (size_t)(val3);
+ res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_p_mfcc_t, 0 | 0 );
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "FrontEnd_process_utt" "', argument " "4"" of type '" "mfcc_t ***""'");
+ }
+ arg4 = (mfcc_t ***)(argp4);
+ result = FrontEnd_process_utt(arg1,(int16 const *)arg2,arg3,arg4,arg5);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_process_utt returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_end_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ mfcc_t *arg2 = (mfcc_t *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int32 result;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:FrontEnd_end_utt",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_end_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_mfcc_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FrontEnd_end_utt" "', argument " "2"" of type '" "mfcc_t *""'");
+ }
+ arg2 = (mfcc_t *)(argp2);
+ result = FrontEnd_end_utt(arg1,arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_end_utt returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *FrontEnd_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_FrontEnd, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Feature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ feat_t *arg1 = (feat_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Feature *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Feature",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_feat_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Feature" "', argument " "1"" of type '" "feat_t *""'");
+ }
+ arg1 = (feat_t *)(argp1);
+ result = (Feature *)new_Feature(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Feature, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Feature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Feature *arg1 = (Feature *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Feature",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Feature, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Feature" "', argument " "1"" of type '" "Feature *""'");
+ }
+ arg1 = (Feature *)(argp1);
+ delete_Feature(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Feature_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Feature, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ float arg3 ;
+ int32 arg4 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ float val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:new_FsgModel",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_FsgModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ ecode3 = SWIG_AsVal_float(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FsgModel" "', argument " "3"" of type '" "float""'");
+ }
+ arg3 = (float)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_FsgModel" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ result = (FsgModel *)new_FsgModel__SWIG_0((char const *)arg1,arg2,arg3,arg4);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ fsg_model_t *arg1 = (fsg_model_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_FsgModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_fsg_model_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "fsg_model_t *""'");
+ }
+ arg1 = (fsg_model_t *)(argp1);
+ result = (FsgModel *)new_FsgModel__SWIG_1(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ float arg3 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ float val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_FsgModel",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_FsgModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ ecode3 = SWIG_AsVal_float(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FsgModel" "', argument " "3"" of type '" "float""'");
+ }
+ arg3 = (float)(val3);
+ result = (FsgModel *)new_FsgModel__SWIG_2((char const *)arg1,arg2,arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[5];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 4) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_fsg_model_t, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_1(self, args);
+ }
+ }
+ if (argc == 3) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ {
+ int res = SWIG_AsVal_float(argv[2], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_2(self, args);
+ }
+ }
+ }
+ }
+ if (argc == 4) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ {
+ int res = SWIG_AsVal_float(argv[2], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ {
+ int res = SWIG_AsVal_int(argv[3], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_0(self, args);
+ }
+ }
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_FsgModel'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " FsgModel::FsgModel(char const *,LogMath *,float,int32)\n"
+ " FsgModel::FsgModel(fsg_model_t *)\n"
+ " FsgModel::FsgModel(char const *,LogMath *,float)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_FsgModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_FsgModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FsgModel" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ delete_FsgModel(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_word_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_word_id",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_word_id" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_word_id" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)FsgModel_word_id(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_word_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_word_add",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_word_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_word_add" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)FsgModel_word_add(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ int32 arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:FsgModel_trans_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ ecode5 = SWIG_AsVal_int(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "FsgModel_trans_add" "', argument " "5"" of type '" "int32""'");
+ }
+ arg5 = (int32)(val5);
+ FsgModel_trans_add(arg1,arg2,arg3,arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_null_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FsgModel_null_trans_add",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_null_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_null_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_null_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_null_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ result = FsgModel_null_trans_add(arg1,arg2,arg3,arg4);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_tag_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ int32 arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:FsgModel_tag_trans_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_tag_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_tag_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_tag_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_tag_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ ecode5 = SWIG_AsVal_int(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "FsgModel_tag_trans_add" "', argument " "5"" of type '" "int32""'");
+ }
+ arg5 = (int32)(val5);
+ result = FsgModel_tag_trans_add(arg1,arg2,arg3,arg4,arg5);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_add_silence(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int32 arg3 ;
+ float arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FsgModel_add_silence",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_add_silence" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_add_silence" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_add_silence" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_add_silence" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ result = (int)FsgModel_add_silence(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_add_alt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:FsgModel_add_alt",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_add_alt" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_add_alt" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "FsgModel_add_alt" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (int)FsgModel_add_alt(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_writefile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_writefile",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_writefile" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_writefile" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ FsgModel_writefile(arg1,(char const *)arg2);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *FsgModel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_FsgModel, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_JsgfRule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_JsgfRule")) SWIG_fail;
+ result = (JsgfRule *)new_JsgfRule();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_JsgfRule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_JsgfRule",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_JsgfRule" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ delete_JsgfRule(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ jsgf_rule_iter_t *arg1 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_fromIter" "', argument " "1"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg1 = (jsgf_rule_iter_t *)(argp1);
+ result = (JsgfRule *)JsgfRule_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_name",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_name" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ result = (char *)JsgfRule_name(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_public(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_public",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_public" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ result = (bool)JsgfRule_public(arg1);
+ resultobj = SWIG_From_bool((bool)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *JsgfRule_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_JsgfRule, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModel_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ngram_model_set_iter_t *arg1 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModel_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_fromIter" "', argument " "1"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg1 = (ngram_model_set_iter_t *)(argp1);
+ result = (NGramModel *)NGramModel_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NGramModel",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (NGramModel *)new_NGramModel__SWIG_0((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_NGramModel",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModel" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_NGramModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_NGramModel" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (NGramModel *)new_NGramModel__SWIG_1(arg1,arg2,(char const *)arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_NEW | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[4];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 3) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_NGramModel__SWIG_0(self, args);
+ }
+ }
+ if (argc == 3) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Config, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_NGramModel__SWIG_1(self, args);
+ }
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_NGramModel'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " NGramModel::NGramModel(char const *)\n"
+ " NGramModel::NGramModel(Config *,LogMath *,char const *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModel" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ delete_NGramModel(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ ngram_file_type_t arg3 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:NGramModel_write",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_write" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_write" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_ngram_file_type_t, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_write" "', argument " "3"" of type '" "ngram_file_type_t""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_write" "', argument " "3"" of type '" "ngram_file_type_t""'");
+ } else {
+ arg3 = *((ngram_file_type_t *)(argp3));
+ }
+ }
+ NGramModel_write(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "NGramModel_write returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_str_to_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ ngram_file_type_t result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_str_to_type",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_str_to_type" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_str_to_type" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = NGramModel_str_to_type(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj((ngram_file_type_t *)memcpy((ngram_file_type_t *)malloc(sizeof(ngram_file_type_t)),&result,sizeof(ngram_file_type_t)), SWIGTYPE_p_ngram_file_type_t, SWIG_POINTER_OWN | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_type_to_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_type_to_str",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_type_to_str" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NGramModel_type_to_str" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ result = (char *)NGramModel_type_to_str(arg1,arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_casefold(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ int arg2 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_casefold",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_casefold" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NGramModel_casefold" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ NGramModel_casefold(arg1,arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "NGramModel_casefold returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModel_size",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_size" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ result = NGramModel_size(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_add_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ float32 arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:NGramModel_add_word",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_add_word" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_add_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float32, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_add_word" "', argument " "3"" of type '" "float32""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_add_word" "', argument " "3"" of type '" "float32""'");
+ } else {
+ arg3 = *((float32 *)(argp3));
+ }
+ }
+ result = NGramModel_add_word(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_add_class(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ float32 arg3 ;
+ size_t arg4 ;
+ char **arg5 = (char **) 0 ;
+ float32 *arg6 = (float32 *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ void *argp6 = 0 ;
+ int res6 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:NGramModel_add_class",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_add_class" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_add_class" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float32, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_add_class" "', argument " "3"" of type '" "float32""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_add_class" "', argument " "3"" of type '" "float32""'");
+ } else {
+ arg3 = *((float32 *)(argp3));
+ }
+ }
+ {
+ /* Check if is a list */
+ arg4 = 0;
+ if (PyList_Check(obj3)) {
+ int i;
+ arg4 = PyList_Size(obj3);
+ arg5 = (char **) calloc((arg4 + 1), sizeof(char *));
+ for (i = 0; i < arg4; i++) {
+ PyObject *o = PyList_GetItem(obj3,i);
+ arg5[i] = SWIG_Python_str_AsChar(o);
+ }
+ } else {
+ PyErr_SetString(PyExc_TypeError, "list type expected");
+ return NULL;
+ }
+ }
+ res6 = SWIG_ConvertPtr(obj4, &argp6,SWIGTYPE_p_float32, 0 | 0 );
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "NGramModel_add_class" "', argument " "6"" of type '" "float32 const *""'");
+ }
+ arg6 = (float32 *)(argp6);
+ result = NGramModel_add_class(arg1,(char const *)arg2,arg3,arg4,arg5,(float32 const *)arg6);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ {
+ int i;
+ if (arg5 != NULL) {
+ for (i = 0; arg5[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg5[i]);
+ }
+ free(arg5);
+ }
+ }
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ {
+ int i;
+ if (arg5 != NULL) {
+ for (i = 0; arg5[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg5[i]);
+ }
+ free(arg5);
+ }
+ }
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_prob(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ size_t arg2 ;
+ char **arg3 = (char **) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_prob",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_prob" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ {
+ /* Check if is a list */
+ arg2 = 0;
+ if (PyList_Check(obj1)) {
+ int i;
+ arg2 = PyList_Size(obj1);
+ arg3 = (char **) calloc((arg2 + 1), sizeof(char *));
+ for (i = 0; i < arg2; i++) {
+ PyObject *o = PyList_GetItem(obj1,i);
+ arg3[i] = SWIG_Python_str_AsChar(o);
+ }
+ } else {
+ PyErr_SetString(PyExc_TypeError, "list type expected");
+ return NULL;
+ }
+ }
+ result = NGramModel_prob(arg1,arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ int i;
+ if (arg3 != NULL) {
+ for (i = 0; arg3[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg3[i]);
+ }
+ free(arg3);
+ }
+ }
+ return resultobj;
+fail:
+ {
+ int i;
+ if (arg3 != NULL) {
+ for (i = 0; arg3[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg3[i]);
+ }
+ free(arg3);
+ }
+ }
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModel, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_LogMath__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_LogMath")) SWIG_fail;
+ result = (LogMath *)new_LogMath__SWIG_0();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_LogMath__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ logmath_t *arg1 = (logmath_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_LogMath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_logmath_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_LogMath" "', argument " "1"" of type '" "logmath_t *""'");
+ }
+ arg1 = (logmath_t *)(argp1);
+ result = (LogMath *)new_LogMath__SWIG_1(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_LogMath(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[2];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 1) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 0) {
+ return _wrap_new_LogMath__SWIG_0(self, args);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_logmath_t, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_LogMath__SWIG_1(self, args);
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_LogMath'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " LogMath::LogMath()\n"
+ " LogMath::LogMath(logmath_t *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_LogMath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *arg1 = (LogMath *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_LogMath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_LogMath, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_LogMath" "', argument " "1"" of type '" "LogMath *""'");
+ }
+ arg1 = (LogMath *)(argp1);
+ delete_LogMath(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_LogMath_exp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *arg1 = (LogMath *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ float64 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:LogMath_exp",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogMath_exp" "', argument " "1"" of type '" "LogMath *""'");
+ }
+ arg1 = (LogMath *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "LogMath_exp" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ result = LogMath_exp(arg1,arg2);
+ resultobj = SWIG_From_double((double)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *LogMath_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_LogMath, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ ngram_model_set_iter_t *arg2 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSetIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_ptr_set" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ngram_model_set_iter_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSetIterator_ptr_set" "', argument " "2"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg2 = (ngram_model_set_iter_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ngram_model_set_iter_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_ptr_get" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ result = (ngram_model_set_iter_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModelSetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ngram_model_set_iter_t *arg1 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModelSetIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NGramModelSetIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModelSetIterator" "', argument " "1"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg1 = (ngram_model_set_iter_t *)(argp1);
+ result = (NGramModelSetIterator *)new_NGramModelSetIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModelSetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModelSetIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModelSetIterator" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ delete_NGramModelSetIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_next" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NGramModel *)NGramModelSetIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator___next__" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NGramModel *)NGramModelSetIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModelSetIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModelSetIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ jsgf_rule_iter_t *arg2 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:JsgfIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_ptr_set" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_jsgf_rule_iter_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "JsgfIterator_ptr_set" "', argument " "2"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg2 = (jsgf_rule_iter_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ jsgf_rule_iter_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_ptr_get" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ result = (jsgf_rule_iter_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_JsgfIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ jsgf_rule_iter_t *arg1 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_JsgfIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_JsgfIterator" "', argument " "1"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg1 = (jsgf_rule_iter_t *)(argp1);
+ result = (JsgfIterator *)new_JsgfIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_JsgfIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_JsgfIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_JsgfIterator" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ delete_JsgfIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_next" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (JsgfRule *)JsgfIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator___next__" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (JsgfRule *)JsgfIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *JsgfIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_JsgfIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModelSet___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModelSetIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet___iter__" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = (NGramModelSetIterator *)NGramModelSet___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModelSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ NGramModelSet *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_NGramModelSet",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModelSet" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_NGramModelSet" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_NGramModelSet" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (NGramModelSet *)new_NGramModelSet(arg1,arg2,(char const *)arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSet, SWIG_POINTER_NEW | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModelSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModelSet",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModelSet" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ delete_NGramModelSet(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet_count",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_count" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = NGramModelSet_count(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ NGramModel *arg2 = (NGramModel *) 0 ;
+ char *arg3 = (char *) 0 ;
+ float arg4 ;
+ bool arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:NGramModelSet_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_add" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_add" "', argument " "2"" of type '" "NGramModel *""'");
+ }
+ arg2 = (NGramModel *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModelSet_add" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "NGramModelSet_add" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ ecode5 = SWIG_AsVal_bool(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "NGramModelSet_add" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (NGramModel *)NGramModelSet_add(arg1,arg2,(char const *)arg3,arg4,arg5);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_select(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSet_select",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_select" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_select" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)NGramModelSet_select(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_lookup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSet_lookup",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_lookup" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_lookup" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)NGramModelSet_lookup(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_current(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet_current",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_current" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = (char *)NGramModelSet_current(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModelSet_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModelSet, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_Jsgf___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Jsgf___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf___iter__" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ result = (JsgfIterator *)Jsgf___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Jsgf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Jsgf *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Jsgf",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Jsgf" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Jsgf *)new_Jsgf((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Jsgf, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Jsgf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Jsgf",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Jsgf" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ delete_Jsgf(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Jsgf_name",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_name" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ result = (char *)Jsgf_name(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_get_rule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Jsgf_get_rule",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_get_rule" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Jsgf_get_rule" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (JsgfRule *)Jsgf_get_rule(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_build_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ JsgfRule *arg2 = (JsgfRule *) 0 ;
+ LogMath *arg3 = (LogMath *) 0 ;
+ float arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Jsgf_build_fsg",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_build_fsg" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Jsgf_build_fsg" "', argument " "2"" of type '" "JsgfRule *""'");
+ }
+ arg2 = (JsgfRule *)(argp2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Jsgf_build_fsg" "', argument " "3"" of type '" "LogMath *""'");
+ }
+ arg3 = (LogMath *)(argp3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Jsgf_build_fsg" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ result = (FsgModel *)Jsgf_build_fsg(arg1,arg2,arg3,arg4);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Jsgf_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Jsgf, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+static PyMethodDef SwigMethods[] = {
+ { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL},
+ { (char *)"delete_Config", _wrap_delete_Config, METH_VARARGS, (char *)"delete_Config(Config self)"},
+ { (char *)"Config_set_boolean", _wrap_Config_set_boolean, METH_VARARGS, (char *)"Config_set_boolean(Config self, char const * key, bool val)"},
+ { (char *)"Config_set_int", _wrap_Config_set_int, METH_VARARGS, (char *)"Config_set_int(Config self, char const * key, int val)"},
+ { (char *)"Config_set_float", _wrap_Config_set_float, METH_VARARGS, (char *)"Config_set_float(Config self, char const * key, double val)"},
+ { (char *)"Config_set_string", _wrap_Config_set_string, METH_VARARGS, (char *)"Config_set_string(Config self, char const * key, char const * val)"},
+ { (char *)"Config_set_string_extra", _wrap_Config_set_string_extra, METH_VARARGS, (char *)"Config_set_string_extra(Config self, char const * key, char const * val)"},
+ { (char *)"Config_exists", _wrap_Config_exists, METH_VARARGS, (char *)"Config_exists(Config self, char const * key) -> bool"},
+ { (char *)"Config_get_boolean", _wrap_Config_get_boolean, METH_VARARGS, (char *)"Config_get_boolean(Config self, char const * key) -> bool"},
+ { (char *)"Config_get_int", _wrap_Config_get_int, METH_VARARGS, (char *)"Config_get_int(Config self, char const * key) -> int"},
+ { (char *)"Config_get_float", _wrap_Config_get_float, METH_VARARGS, (char *)"Config_get_float(Config self, char const * key) -> double"},
+ { (char *)"Config_get_string", _wrap_Config_get_string, METH_VARARGS, (char *)"Config_get_string(Config self, char const * key) -> char const *"},
+ { (char *)"Config_swigregister", Config_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_FrontEnd", _wrap_new_FrontEnd, METH_VARARGS, (char *)"new_FrontEnd(fe_t * ptr) -> FrontEnd"},
+ { (char *)"delete_FrontEnd", _wrap_delete_FrontEnd, METH_VARARGS, (char *)"delete_FrontEnd(FrontEnd self)"},
+ { (char *)"FrontEnd_output_size", _wrap_FrontEnd_output_size, METH_VARARGS, (char *)"FrontEnd_output_size(FrontEnd self) -> int"},
+ { (char *)"FrontEnd_start_utt", _wrap_FrontEnd_start_utt, METH_VARARGS, (char *)"FrontEnd_start_utt(FrontEnd self)"},
+ { (char *)"FrontEnd_process_utt", _wrap_FrontEnd_process_utt, METH_VARARGS, (char *)"FrontEnd_process_utt(FrontEnd self, int16 const * spch, size_t nsamps, mfcc_t *** cep_block) -> int32"},
+ { (char *)"FrontEnd_end_utt", _wrap_FrontEnd_end_utt, METH_VARARGS, (char *)"FrontEnd_end_utt(FrontEnd self, mfcc_t * out_cepvector) -> int32"},
+ { (char *)"FrontEnd_swigregister", FrontEnd_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Feature", _wrap_new_Feature, METH_VARARGS, (char *)"new_Feature(feat_t * ptr) -> Feature"},
+ { (char *)"delete_Feature", _wrap_delete_Feature, METH_VARARGS, (char *)"delete_Feature(Feature self)"},
+ { (char *)"Feature_swigregister", Feature_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_FsgModel", _wrap_new_FsgModel, METH_VARARGS, (char *)"\n"
+ "FsgModel(char const * name, LogMath logmath, float lw, int32 n)\n"
+ "FsgModel(fsg_model_t * ptr)\n"
+ "new_FsgModel(char const * path, LogMath logmath, float lw) -> FsgModel\n"
+ ""},
+ { (char *)"delete_FsgModel", _wrap_delete_FsgModel, METH_VARARGS, (char *)"delete_FsgModel(FsgModel self)"},
+ { (char *)"FsgModel_word_id", _wrap_FsgModel_word_id, METH_VARARGS, (char *)"FsgModel_word_id(FsgModel self, char const * word) -> int"},
+ { (char *)"FsgModel_word_add", _wrap_FsgModel_word_add, METH_VARARGS, (char *)"FsgModel_word_add(FsgModel self, char const * word) -> int"},
+ { (char *)"FsgModel_trans_add", _wrap_FsgModel_trans_add, METH_VARARGS, (char *)"FsgModel_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"},
+ { (char *)"FsgModel_null_trans_add", _wrap_FsgModel_null_trans_add, METH_VARARGS, (char *)"FsgModel_null_trans_add(FsgModel self, int32 src, int32 dst, int32 logp) -> int32"},
+ { (char *)"FsgModel_tag_trans_add", _wrap_FsgModel_tag_trans_add, METH_VARARGS, (char *)"FsgModel_tag_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid) -> int32"},
+ { (char *)"FsgModel_add_silence", _wrap_FsgModel_add_silence, METH_VARARGS, (char *)"FsgModel_add_silence(FsgModel self, char const * silword, int32 state, float silprob) -> int"},
+ { (char *)"FsgModel_add_alt", _wrap_FsgModel_add_alt, METH_VARARGS, (char *)"FsgModel_add_alt(FsgModel self, char const * baseword, char const * altword) -> int"},
+ { (char *)"FsgModel_writefile", _wrap_FsgModel_writefile, METH_VARARGS, (char *)"FsgModel_writefile(FsgModel self, char const * path)"},
+ { (char *)"FsgModel_swigregister", FsgModel_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_JsgfRule", _wrap_new_JsgfRule, METH_VARARGS, (char *)"new_JsgfRule() -> JsgfRule"},
+ { (char *)"delete_JsgfRule", _wrap_delete_JsgfRule, METH_VARARGS, (char *)"delete_JsgfRule(JsgfRule self)"},
+ { (char *)"JsgfRule_fromIter", _wrap_JsgfRule_fromIter, METH_VARARGS, (char *)"JsgfRule_fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"},
+ { (char *)"JsgfRule_name", _wrap_JsgfRule_name, METH_VARARGS, (char *)"JsgfRule_name(JsgfRule self) -> char const *"},
+ { (char *)"JsgfRule_public", _wrap_JsgfRule_public, METH_VARARGS, (char *)"JsgfRule_public(JsgfRule self) -> bool"},
+ { (char *)"JsgfRule_swigregister", JsgfRule_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModel_fromIter", _wrap_NGramModel_fromIter, METH_VARARGS, (char *)"NGramModel_fromIter(ngram_model_set_iter_t * itor) -> NGramModel"},
+ { (char *)"new_NGramModel", _wrap_new_NGramModel, METH_VARARGS, (char *)"\n"
+ "NGramModel(char const * path)\n"
+ "new_NGramModel(Config config, LogMath logmath, char const * path) -> NGramModel\n"
+ ""},
+ { (char *)"delete_NGramModel", _wrap_delete_NGramModel, METH_VARARGS, (char *)"delete_NGramModel(NGramModel self)"},
+ { (char *)"NGramModel_write", _wrap_NGramModel_write, METH_VARARGS, (char *)"NGramModel_write(NGramModel self, char const * path, ngram_file_type_t ftype)"},
+ { (char *)"NGramModel_str_to_type", _wrap_NGramModel_str_to_type, METH_VARARGS, (char *)"NGramModel_str_to_type(NGramModel self, char const * str) -> ngram_file_type_t"},
+ { (char *)"NGramModel_type_to_str", _wrap_NGramModel_type_to_str, METH_VARARGS, (char *)"NGramModel_type_to_str(NGramModel self, int type) -> char const *"},
+ { (char *)"NGramModel_casefold", _wrap_NGramModel_casefold, METH_VARARGS, (char *)"NGramModel_casefold(NGramModel self, int kase)"},
+ { (char *)"NGramModel_size", _wrap_NGramModel_size, METH_VARARGS, (char *)"NGramModel_size(NGramModel self) -> int32"},
+ { (char *)"NGramModel_add_word", _wrap_NGramModel_add_word, METH_VARARGS, (char *)"NGramModel_add_word(NGramModel self, char const * word, float32 weight) -> int32"},
+ { (char *)"NGramModel_add_class", _wrap_NGramModel_add_class, METH_VARARGS, (char *)"NGramModel_add_class(NGramModel self, char const * c, float32 w, size_t n, float32 const * weights) -> int32"},
+ { (char *)"NGramModel_prob", _wrap_NGramModel_prob, METH_VARARGS, (char *)"NGramModel_prob(NGramModel self, size_t n) -> int32"},
+ { (char *)"NGramModel_swigregister", NGramModel_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_LogMath", _wrap_new_LogMath, METH_VARARGS, (char *)"\n"
+ "LogMath()\n"
+ "new_LogMath(logmath_t * ptr) -> LogMath\n"
+ ""},
+ { (char *)"delete_LogMath", _wrap_delete_LogMath, METH_VARARGS, (char *)"delete_LogMath(LogMath self)"},
+ { (char *)"LogMath_exp", _wrap_LogMath_exp, METH_VARARGS, (char *)"LogMath_exp(LogMath self, int prob) -> float64"},
+ { (char *)"LogMath_swigregister", LogMath_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModelSetIterator_ptr_set", _wrap_NGramModelSetIterator_ptr_set, METH_VARARGS, (char *)"NGramModelSetIterator_ptr_set(NGramModelSetIterator self, ngram_model_set_iter_t * ptr)"},
+ { (char *)"NGramModelSetIterator_ptr_get", _wrap_NGramModelSetIterator_ptr_get, METH_VARARGS, (char *)"NGramModelSetIterator_ptr_get(NGramModelSetIterator self) -> ngram_model_set_iter_t *"},
+ { (char *)"new_NGramModelSetIterator", _wrap_new_NGramModelSetIterator, METH_VARARGS, (char *)"new_NGramModelSetIterator(ngram_model_set_iter_t * ptr) -> NGramModelSetIterator"},
+ { (char *)"delete_NGramModelSetIterator", _wrap_delete_NGramModelSetIterator, METH_VARARGS, (char *)"delete_NGramModelSetIterator(NGramModelSetIterator self)"},
+ { (char *)"NGramModelSetIterator_next", _wrap_NGramModelSetIterator_next, METH_VARARGS, (char *)"NGramModelSetIterator_next(NGramModelSetIterator self) -> NGramModel"},
+ { (char *)"NGramModelSetIterator___next__", _wrap_NGramModelSetIterator___next__, METH_VARARGS, (char *)"NGramModelSetIterator___next__(NGramModelSetIterator self) -> NGramModel"},
+ { (char *)"NGramModelSetIterator_swigregister", NGramModelSetIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"JsgfIterator_ptr_set", _wrap_JsgfIterator_ptr_set, METH_VARARGS, (char *)"JsgfIterator_ptr_set(JsgfIterator self, jsgf_rule_iter_t * ptr)"},
+ { (char *)"JsgfIterator_ptr_get", _wrap_JsgfIterator_ptr_get, METH_VARARGS, (char *)"JsgfIterator_ptr_get(JsgfIterator self) -> jsgf_rule_iter_t *"},
+ { (char *)"new_JsgfIterator", _wrap_new_JsgfIterator, METH_VARARGS, (char *)"new_JsgfIterator(jsgf_rule_iter_t * ptr) -> JsgfIterator"},
+ { (char *)"delete_JsgfIterator", _wrap_delete_JsgfIterator, METH_VARARGS, (char *)"delete_JsgfIterator(JsgfIterator self)"},
+ { (char *)"JsgfIterator_next", _wrap_JsgfIterator_next, METH_VARARGS, (char *)"JsgfIterator_next(JsgfIterator self) -> JsgfRule"},
+ { (char *)"JsgfIterator___next__", _wrap_JsgfIterator___next__, METH_VARARGS, (char *)"JsgfIterator___next__(JsgfIterator self) -> JsgfRule"},
+ { (char *)"JsgfIterator_swigregister", JsgfIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModelSet___iter__", _wrap_NGramModelSet___iter__, METH_VARARGS, (char *)"NGramModelSet___iter__(NGramModelSet self) -> NGramModelSetIterator"},
+ { (char *)"new_NGramModelSet", _wrap_new_NGramModelSet, METH_VARARGS, (char *)"new_NGramModelSet(Config config, LogMath logmath, char const * path) -> NGramModelSet"},
+ { (char *)"delete_NGramModelSet", _wrap_delete_NGramModelSet, METH_VARARGS, (char *)"delete_NGramModelSet(NGramModelSet self)"},
+ { (char *)"NGramModelSet_count", _wrap_NGramModelSet_count, METH_VARARGS, (char *)"NGramModelSet_count(NGramModelSet self) -> int32"},
+ { (char *)"NGramModelSet_add", _wrap_NGramModelSet_add, METH_VARARGS, (char *)"NGramModelSet_add(NGramModelSet self, NGramModel model, char const * name, float weight, bool reuse_widmap) -> NGramModel"},
+ { (char *)"NGramModelSet_select", _wrap_NGramModelSet_select, METH_VARARGS, (char *)"NGramModelSet_select(NGramModelSet self, char const * name) -> NGramModel"},
+ { (char *)"NGramModelSet_lookup", _wrap_NGramModelSet_lookup, METH_VARARGS, (char *)"NGramModelSet_lookup(NGramModelSet self, char const * name) -> NGramModel"},
+ { (char *)"NGramModelSet_current", _wrap_NGramModelSet_current, METH_VARARGS, (char *)"NGramModelSet_current(NGramModelSet self) -> char const *"},
+ { (char *)"NGramModelSet_swigregister", NGramModelSet_swigregister, METH_VARARGS, NULL},
+ { (char *)"Jsgf___iter__", _wrap_Jsgf___iter__, METH_VARARGS, (char *)"Jsgf___iter__(Jsgf self) -> JsgfIterator"},
+ { (char *)"new_Jsgf", _wrap_new_Jsgf, METH_VARARGS, (char *)"new_Jsgf(char const * path) -> Jsgf"},
+ { (char *)"delete_Jsgf", _wrap_delete_Jsgf, METH_VARARGS, (char *)"delete_Jsgf(Jsgf self)"},
+ { (char *)"Jsgf_name", _wrap_Jsgf_name, METH_VARARGS, (char *)"Jsgf_name(Jsgf self) -> char const *"},
+ { (char *)"Jsgf_get_rule", _wrap_Jsgf_get_rule, METH_VARARGS, (char *)"Jsgf_get_rule(Jsgf self, char const * name) -> JsgfRule"},
+ { (char *)"Jsgf_build_fsg", _wrap_Jsgf_build_fsg, METH_VARARGS, (char *)"Jsgf_build_fsg(Jsgf self, JsgfRule rule, LogMath logmath, float lw) -> FsgModel"},
+ { (char *)"Jsgf_swigregister", Jsgf_swigregister, METH_VARARGS, NULL},
+ { NULL, NULL, 0, NULL }
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
+
+static swig_type_info _swigt__p_Config = {"_p_Config", "Config *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Feature = {"_p_Feature", "Feature *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FrontEnd = {"_p_FrontEnd", "FrontEnd *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FsgModel = {"_p_FsgModel", "FsgModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Jsgf = {"_p_Jsgf", "Jsgf *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_JsgfIterator = {"_p_JsgfIterator", "JsgfIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_JsgfRule = {"_p_JsgfRule", "JsgfRule *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_LogMath = {"_p_LogMath", "LogMath *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModel = {"_p_NGramModel", "NGramModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModelSet = {"_p_NGramModelSet", "NGramModelSet *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModelSetIterator = {"_p_NGramModelSetIterator", "NGramModelSetIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_fe_t = {"_p_fe_t", "fe_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_feat_t = {"_p_feat_t", "feat_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_float32 = {"_p_float32", "float32 *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_fsg_model_t = {"_p_fsg_model_t", "fsg_model_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int16 = {"_p_int16", "int16 *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_jsgf_rule_iter_t = {"_p_jsgf_rule_iter_t", "jsgf_rule_iter_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_logmath_t = {"_p_logmath_t", "logmath_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_mfcc_t = {"_p_mfcc_t", "mfcc_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ngram_file_type_t = {"_p_ngram_file_type_t", "ngram_file_type_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ngram_model_set_iter_t = {"_p_ngram_model_set_iter_t", "ngram_model_set_iter_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_p_mfcc_t = {"_p_p_p_mfcc_t", "mfcc_t ***", 0, 0, (void*)0, 0};
+
+static swig_type_info *swig_type_initial[] = {
+ &_swigt__p_Config,
+ &_swigt__p_Feature,
+ &_swigt__p_FrontEnd,
+ &_swigt__p_FsgModel,
+ &_swigt__p_Jsgf,
+ &_swigt__p_JsgfIterator,
+ &_swigt__p_JsgfRule,
+ &_swigt__p_LogMath,
+ &_swigt__p_NGramModel,
+ &_swigt__p_NGramModelSet,
+ &_swigt__p_NGramModelSetIterator,
+ &_swigt__p_char,
+ &_swigt__p_fe_t,
+ &_swigt__p_feat_t,
+ &_swigt__p_float32,
+ &_swigt__p_fsg_model_t,
+ &_swigt__p_int,
+ &_swigt__p_int16,
+ &_swigt__p_jsgf_rule_iter_t,
+ &_swigt__p_logmath_t,
+ &_swigt__p_mfcc_t,
+ &_swigt__p_ngram_file_type_t,
+ &_swigt__p_ngram_model_set_iter_t,
+ &_swigt__p_p_char,
+ &_swigt__p_p_p_mfcc_t,
+};
+
+static swig_cast_info _swigc__p_Config[] = { {&_swigt__p_Config, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Feature[] = { {&_swigt__p_Feature, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FrontEnd[] = { {&_swigt__p_FrontEnd, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FsgModel[] = { {&_swigt__p_FsgModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Jsgf[] = { {&_swigt__p_Jsgf, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_JsgfIterator[] = { {&_swigt__p_JsgfIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_JsgfRule[] = { {&_swigt__p_JsgfRule, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_LogMath[] = { {&_swigt__p_LogMath, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModel[] = { {&_swigt__p_NGramModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModelSet[] = { {&_swigt__p_NGramModelSet, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModelSetIterator[] = { {&_swigt__p_NGramModelSetIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_fe_t[] = { {&_swigt__p_fe_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_feat_t[] = { {&_swigt__p_feat_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_float32[] = { {&_swigt__p_float32, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_fsg_model_t[] = { {&_swigt__p_fsg_model_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int16[] = { {&_swigt__p_int16, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_jsgf_rule_iter_t[] = { {&_swigt__p_jsgf_rule_iter_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_logmath_t[] = { {&_swigt__p_logmath_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_mfcc_t[] = { {&_swigt__p_mfcc_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ngram_file_type_t[] = { {&_swigt__p_ngram_file_type_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ngram_model_set_iter_t[] = { {&_swigt__p_ngram_model_set_iter_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_p_mfcc_t[] = { {&_swigt__p_p_p_mfcc_t, 0, 0, 0},{0, 0, 0, 0}};
+
+static swig_cast_info *swig_cast_initial[] = {
+ _swigc__p_Config,
+ _swigc__p_Feature,
+ _swigc__p_FrontEnd,
+ _swigc__p_FsgModel,
+ _swigc__p_Jsgf,
+ _swigc__p_JsgfIterator,
+ _swigc__p_JsgfRule,
+ _swigc__p_LogMath,
+ _swigc__p_NGramModel,
+ _swigc__p_NGramModelSet,
+ _swigc__p_NGramModelSetIterator,
+ _swigc__p_char,
+ _swigc__p_fe_t,
+ _swigc__p_feat_t,
+ _swigc__p_float32,
+ _swigc__p_fsg_model_t,
+ _swigc__p_int,
+ _swigc__p_int16,
+ _swigc__p_jsgf_rule_iter_t,
+ _swigc__p_logmath_t,
+ _swigc__p_mfcc_t,
+ _swigc__p_ngram_file_type_t,
+ _swigc__p_ngram_model_set_iter_t,
+ _swigc__p_p_char,
+ _swigc__p_p_p_mfcc_t,
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
+
+static swig_const_info swig_const_table[] = {
+{0, 0, 0, 0.0, 0, 0}};
+
+#ifdef __cplusplus
+}
+#endif
+/* -----------------------------------------------------------------------------
+ * Type initialization:
+ * This problem is tough by the requirement that no dynamic
+ * memory is used. Also, since swig_type_info structures store pointers to
+ * swig_cast_info structures and swig_cast_info structures store pointers back
+ * to swig_type_info structures, we need some lookup code at initialization.
+ * The idea is that swig generates all the structures that are needed.
+ * The runtime then collects these partially filled structures.
+ * The SWIG_InitializeModule function takes these initial arrays out of
+ * swig_module, and does all the lookup, filling in the swig_module.types
+ * array with the correct data and linking the correct swig_cast_info
+ * structures together.
+ *
+ * The generated swig_type_info structures are assigned staticly to an initial
+ * array. We just loop through that array, and handle each type individually.
+ * First we lookup if this type has been already loaded, and if so, use the
+ * loaded structure instead of the generated one. Then we have to fill in the
+ * cast linked list. The cast data is initially stored in something like a
+ * two-dimensional array. Each row corresponds to a type (there are the same
+ * number of rows as there are in the swig_type_initial array). Each entry in
+ * a column is one of the swig_cast_info structures for that type.
+ * The cast_initial array is actually an array of arrays, because each row has
+ * a variable number of columns. So to actually build the cast linked list,
+ * we find the array of casts associated with the type, and loop through it
+ * adding the casts to the list. The one last trick we need to do is making
+ * sure the type pointer in the swig_cast_info struct is correct.
+ *
+ * First off, we lookup the cast->type name to see if it is already loaded.
+ * There are three cases to handle:
+ * 1) If the cast->type has already been loaded AND the type we are adding
+ * casting info to has not been loaded (it is in this module), THEN we
+ * replace the cast->type pointer with the type pointer that has already
+ * been loaded.
+ * 2) If BOTH types (the one we are adding casting info to, and the
+ * cast->type) are loaded, THEN the cast info has already been loaded by
+ * the previous module so we just ignore it.
+ * 3) Finally, if cast->type has not already been loaded, then we add that
+ * swig_cast_info to the linked list (because the cast->type) pointer will
+ * be correct.
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#if 0
+} /* c-mode */
+#endif
+#endif
+
+#if 0
+#define SWIGRUNTIME_DEBUG
+#endif
+
+
+SWIGRUNTIME void
+SWIG_InitializeModule(void *clientdata) {
+ size_t i;
+ swig_module_info *module_head, *iter;
+ int found, init;
+
+ /* check to see if the circular list has been setup, if not, set it up */
+ if (swig_module.next==0) {
+ /* Initialize the swig_module */
+ swig_module.type_initial = swig_type_initial;
+ swig_module.cast_initial = swig_cast_initial;
+ swig_module.next = &swig_module;
+ init = 1;
+ } else {
+ init = 0;
+ }
+
+ /* Try and load any already created modules */
+ module_head = SWIG_GetModule(clientdata);
+ if (!module_head) {
+ /* This is the first module loaded for this interpreter */
+ /* so set the swig module into the interpreter */
+ SWIG_SetModule(clientdata, &swig_module);
+ module_head = &swig_module;
+ } else {
+ /* the interpreter has loaded a SWIG module, but has it loaded this one? */
+ found=0;
+ iter=module_head;
+ do {
+ if (iter==&swig_module) {
+ found=1;
+ break;
+ }
+ iter=iter->next;
+ } while (iter!= module_head);
+
+ /* if the is found in the list, then all is done and we may leave */
+ if (found) return;
+ /* otherwise we must add out module into the list */
+ swig_module.next = module_head->next;
+ module_head->next = &swig_module;
+ }
+
+ /* When multiple interpreters are used, a module could have already been initialized in
+ a different interpreter, but not yet have a pointer in this interpreter.
+ In this case, we do not want to continue adding types... everything should be
+ set up already */
+ if (init == 0) return;
+
+ /* Now work on filling in swig_module.types */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: size %d\n", swig_module.size);
+#endif
+ for (i = 0; i < swig_module.size; ++i) {
+ swig_type_info *type = 0;
+ swig_type_info *ret;
+ swig_cast_info *cast;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+#endif
+
+ /* if there is another module already loaded */
+ if (swig_module.next != &swig_module) {
+ type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
+ }
+ if (type) {
+ /* Overwrite clientdata field */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found type %s\n", type->name);
+#endif
+ if (swig_module.type_initial[i]->clientdata) {
+ type->clientdata = swig_module.type_initial[i]->clientdata;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name);
+#endif
+ }
+ } else {
+ type = swig_module.type_initial[i];
+ }
+
+ /* Insert casting types */
+ cast = swig_module.cast_initial[i];
+ while (cast->type) {
+ /* Don't need to add information already in the list */
+ ret = 0;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: look cast %s\n", cast->type->name);
+#endif
+ if (swig_module.next != &swig_module) {
+ ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name);
+#endif
+ }
+ if (ret) {
+ if (type == swig_module.type_initial[i]) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: skip old type %s\n", ret->name);
+#endif
+ cast->type = ret;
+ ret = 0;
+ } else {
+ /* Check for casting already in the list */
+ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name);
+#endif
+ if (!ocast) ret = 0;
+ }
+ }
+
+ if (!ret) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name);
+#endif
+ if (type->cast) {
+ type->cast->prev = cast;
+ cast->next = type->cast;
+ }
+ type->cast = cast;
+ }
+ cast++;
+ }
+ /* Set entry in modules->types array equal to the type */
+ swig_module.types[i] = type;
+ }
+ swig_module.types[i] = 0;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+ for (i = 0; i < swig_module.size; ++i) {
+ int j = 0;
+ swig_cast_info *cast = swig_module.cast_initial[i];
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+ while (cast->type) {
+ printf("SWIG_InitializeModule: cast type %s\n", cast->type->name);
+ cast++;
+ ++j;
+ }
+ printf("---- Total casts: %d\n",j);
+ }
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+#endif
+}
+
+/* This function will propagate the clientdata field of type to
+* any new swig_type_info structures that have been added into the list
+* of equivalent types. It is like calling
+* SWIG_TypeClientData(type, clientdata) a second time.
+*/
+SWIGRUNTIME void
+SWIG_PropagateClientData(void) {
+ size_t i;
+ swig_cast_info *equiv;
+ static int init_run = 0;
+
+ if (init_run) return;
+ init_run = 1;
+
+ for (i = 0; i < swig_module.size; i++) {
+ if (swig_module.types[i]->clientdata) {
+ equiv = swig_module.types[i]->cast;
+ while (equiv) {
+ if (!equiv->converter) {
+ if (equiv->type && !equiv->type->clientdata)
+ SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
+ }
+ equiv = equiv->next;
+ }
+ }
+ }
+}
+
+#ifdef __cplusplus
+#if 0
+{
+ /* c-mode */
+#endif
+}
+#endif
+
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* Python-specific SWIG API */
+#define SWIG_newvarlink() SWIG_Python_newvarlink()
+#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
+#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
+
+ /* -----------------------------------------------------------------------------
+ * global variable support code.
+ * ----------------------------------------------------------------------------- */
+
+ typedef struct swig_globalvar {
+ char *name; /* Name of global variable */
+ PyObject *(*get_attr)(void); /* Return the current value */
+ int (*set_attr)(PyObject *); /* Set the value */
+ struct swig_globalvar *next;
+ } swig_globalvar;
+
+ typedef struct swig_varlinkobject {
+ PyObject_HEAD
+ swig_globalvar *vars;
+ } swig_varlinkobject;
+
+ SWIGINTERN PyObject *
+ swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_InternFromString("");
+#else
+ return PyString_FromString("");
+#endif
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_str(swig_varlinkobject *v) {
+#if PY_VERSION_HEX >= 0x03000000
+ PyObject *str = PyUnicode_InternFromString("(");
+ PyObject *tail;
+ PyObject *joined;
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ tail = PyUnicode_FromString(var->name);
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ if (var->next) {
+ tail = PyUnicode_InternFromString(", ");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ }
+ }
+ tail = PyUnicode_InternFromString(")");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+#else
+ PyObject *str = PyString_FromString("(");
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ PyString_ConcatAndDel(&str,PyString_FromString(var->name));
+ if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", "));
+ }
+ PyString_ConcatAndDel(&str,PyString_FromString(")"));
+#endif
+ return str;
+ }
+
+ SWIGINTERN int
+ swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {
+ char *tmp;
+ PyObject *str = swig_varlink_str(v);
+ fprintf(fp,"Swig global variables ");
+ fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str));
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(str);
+ return 0;
+ }
+
+ SWIGINTERN void
+ swig_varlink_dealloc(swig_varlinkobject *v) {
+ swig_globalvar *var = v->vars;
+ while (var) {
+ swig_globalvar *n = var->next;
+ free(var->name);
+ free(var);
+ var = n;
+ }
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_getattr(swig_varlinkobject *v, char *n) {
+ PyObject *res = NULL;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->get_attr)();
+ break;
+ }
+ var = var->next;
+ }
+ if (res == NULL && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN int
+ swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {
+ int res = 1;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->set_attr)(p);
+ break;
+ }
+ var = var->next;
+ }
+ if (res == 1 && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN PyTypeObject*
+ swig_varlink_type(void) {
+ static char varlink__doc__[] = "Swig var link object";
+ static PyTypeObject varlink_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"swigvarlink", /* tp_name */
+ sizeof(swig_varlinkobject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor) swig_varlink_dealloc, /* tp_dealloc */
+ (printfunc) swig_varlink_print, /* tp_print */
+ (getattrfunc) swig_varlink_getattr, /* tp_getattr */
+ (setattrfunc) swig_varlink_setattr, /* tp_setattr */
+ 0, /* tp_compare */
+ (reprfunc) swig_varlink_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ 0, /* tp_hash */
+ 0, /* tp_call */
+ (reprfunc) swig_varlink_str, /* tp_str */
+ 0, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ 0, /* tp_flags */
+ varlink__doc__, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ varlink_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ varlink_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&varlink_type) < 0)
+ return NULL;
+#endif
+ }
+ return &varlink_type;
+ }
+
+ /* Create a variable linking object for use later */
+ SWIGINTERN PyObject *
+ SWIG_Python_newvarlink(void) {
+ swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type());
+ if (result) {
+ result->vars = 0;
+ }
+ return ((PyObject*) result);
+ }
+
+ SWIGINTERN void
+ SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {
+ swig_varlinkobject *v = (swig_varlinkobject *) p;
+ swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar));
+ if (gv) {
+ size_t size = strlen(name)+1;
+ gv->name = (char *)malloc(size);
+ if (gv->name) {
+ strncpy(gv->name,name,size);
+ gv->get_attr = get_attr;
+ gv->set_attr = set_attr;
+ gv->next = v->vars;
+ }
+ }
+ v->vars = gv;
+ }
+
+ SWIGINTERN PyObject *
+ SWIG_globals(void) {
+ static PyObject *_SWIG_globals = 0;
+ if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink();
+ return _SWIG_globals;
+ }
+
+ /* -----------------------------------------------------------------------------
+ * constants/methods manipulation
+ * ----------------------------------------------------------------------------- */
+
+ /* Install Constants */
+ SWIGINTERN void
+ SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {
+ PyObject *obj = 0;
+ size_t i;
+ for (i = 0; constants[i].type; ++i) {
+ switch(constants[i].type) {
+ case SWIG_PY_POINTER:
+ obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
+ break;
+ case SWIG_PY_BINARY:
+ obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
+ break;
+ default:
+ obj = 0;
+ break;
+ }
+ if (obj) {
+ PyDict_SetItemString(d, constants[i].name, obj);
+ Py_DECREF(obj);
+ }
+ }
+ }
+
+ /* -----------------------------------------------------------------------------*/
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ /* -----------------------------------------------------------------------------*/
+
+ SWIGINTERN void
+ SWIG_Python_FixMethods(PyMethodDef *methods,
+ swig_const_info *const_table,
+ swig_type_info **types,
+ swig_type_info **types_initial) {
+ size_t i;
+ for (i = 0; methods[i].ml_name; ++i) {
+ const char *c = methods[i].ml_doc;
+ if (c && (c = strstr(c, "swig_ptr: "))) {
+ int j;
+ swig_const_info *ci = 0;
+ const char *name = c + 10;
+ for (j = 0; const_table[j].type; ++j) {
+ if (strncmp(const_table[j].name, name,
+ strlen(const_table[j].name)) == 0) {
+ ci = &(const_table[j]);
+ break;
+ }
+ }
+ if (ci) {
+ void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0;
+ if (ptr) {
+ size_t shift = (ci->ptype) - types;
+ swig_type_info *ty = types_initial[shift];
+ size_t ldoc = (c - methods[i].ml_doc);
+ size_t lptr = strlen(ty->name)+2*sizeof(void*)+2;
+ char *ndoc = (char*)malloc(ldoc + lptr + 10);
+ if (ndoc) {
+ char *buff = ndoc;
+ strncpy(buff, methods[i].ml_doc, ldoc);
+ buff += ldoc;
+ strncpy(buff, "swig_ptr: ", 10);
+ buff += 10;
+ SWIG_PackVoidPtr(buff, ptr, ty->name, lptr);
+ methods[i].ml_doc = ndoc;
+ }
+ }
+ }
+ }
+ }
+ }
+
+#ifdef __cplusplus
+}
+#endif
+
+/* -----------------------------------------------------------------------------*
+ * Partial Init method
+ * -----------------------------------------------------------------------------*/
+
+#ifdef __cplusplus
+extern "C"
+#endif
+
+SWIGEXPORT
+#if PY_VERSION_HEX >= 0x03000000
+PyObject*
+#else
+void
+#endif
+SWIG_init(void) {
+ PyObject *m, *d, *md;
+#if PY_VERSION_HEX >= 0x03000000
+ static struct PyModuleDef SWIG_module = {
+# if PY_VERSION_HEX >= 0x03020000
+ PyModuleDef_HEAD_INIT,
+# else
+ {
+ PyObject_HEAD_INIT(NULL)
+ NULL, /* m_init */
+ 0, /* m_index */
+ NULL, /* m_copy */
+ },
+# endif
+ (char *) SWIG_name,
+ NULL,
+ -1,
+ SwigMethods,
+ NULL,
+ NULL,
+ NULL,
+ NULL
+ };
+#endif
+
+#if defined(SWIGPYTHON_BUILTIN)
+ static SwigPyClientData SwigPyObject_clientdata = {
+ 0, 0, 0, 0, 0, 0, 0
+ };
+ static PyGetSetDef this_getset_def = {
+ (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
+ };
+ static SwigPyGetSet thisown_getset_closure = {
+ (PyCFunction) SwigPyObject_own,
+ (PyCFunction) SwigPyObject_own
+ };
+ static PyGetSetDef thisown_getset_def = {
+ (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
+ };
+ PyObject *metatype_args;
+ PyTypeObject *builtin_pytype;
+ int builtin_base_count;
+ swig_type_info *builtin_basetype;
+ PyObject *tuple;
+ PyGetSetDescrObject *static_getset;
+ PyTypeObject *metatype;
+ SwigPyClientData *cd;
+ PyObject *public_interface, *public_symbol;
+ PyObject *this_descr;
+ PyObject *thisown_descr;
+ int i;
+
+ (void)builtin_pytype;
+ (void)builtin_base_count;
+ (void)builtin_basetype;
+ (void)tuple;
+ (void)static_getset;
+
+ /* metatype is used to implement static member variables. */
+ metatype_args = Py_BuildValue("(s(O){})", "SwigPyObjectType", &PyType_Type);
+ assert(metatype_args);
+ metatype = (PyTypeObject *) PyType_Type.tp_call((PyObject *) &PyType_Type, metatype_args, NULL);
+ assert(metatype);
+ Py_DECREF(metatype_args);
+ metatype->tp_setattro = (setattrofunc) &SwigPyObjectType_setattro;
+ assert(PyType_Ready(metatype) >= 0);
+#endif
+
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial);
+
+#if PY_VERSION_HEX >= 0x03000000
+ m = PyModule_Create(&SWIG_module);
+#else
+ m = Py_InitModule((char *) SWIG_name, SwigMethods);
+#endif
+ md = d = PyModule_GetDict(m);
+ (void)md;
+
+ SWIG_InitializeModule(0);
+
+#ifdef SWIGPYTHON_BUILTIN
+ SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject");
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ if (!cd) {
+ SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
+ SwigPyObject_clientdata.pytype = SwigPyObject_TypeOnce();
+ } else if (SwigPyObject_TypeOnce()->tp_basicsize != cd->pytype->tp_basicsize) {
+ PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules.");
+# if PY_VERSION_HEX >= 0x03000000
+ return NULL;
+# else
+ return;
+# endif
+ }
+
+ /* All objects have a 'this' attribute */
+ this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def);
+ (void)this_descr;
+
+ /* All objects have a 'thisown' attribute */
+ thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def);
+ (void)thisown_descr;
+
+ public_interface = PyList_New(0);
+ public_symbol = 0;
+ (void)public_symbol;
+
+ PyDict_SetItemString(md, "__all__", public_interface);
+ Py_DECREF(public_interface);
+ for (i = 0; SwigMethods[i].ml_name != NULL; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name);
+ for (i = 0; swig_const_table[i].name != 0; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name);
+#endif
+
+ SWIG_InstallConstants(d,swig_const_table);
+
+#if PY_VERSION_HEX >= 0x03000000
+ return m;
+#else
+ return;
+#endif
+}
+
diff --git a/sphinxbase-5prealpha/test/Makefile b/sphinxbase-5prealpha/test/Makefile
index 5ff8146..b6c2494 100644
--- a/sphinxbase-5prealpha/test/Makefile
+++ b/sphinxbase-5prealpha/test/Makefile
@@ -184,13 +184,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -258,13 +258,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/regression/Makefile b/sphinxbase-5prealpha/test/regression/Makefile
index 795cbad..186222f 100644
--- a/sphinxbase-5prealpha/test/regression/Makefile
+++ b/sphinxbase-5prealpha/test/regression/Makefile
@@ -329,13 +329,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/testfuncs.sh.in \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -370,7 +370,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -403,13 +403,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/regression
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/regression
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/regression
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/regression
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -441,7 +441,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/regression/testfuncs.sh b/sphinxbase-5prealpha/test/regression/testfuncs.sh
index 3d69bf6..d0a6d24 100644
--- a/sphinxbase-5prealpha/test/regression/testfuncs.sh
+++ b/sphinxbase-5prealpha/test/regression/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken RedHat autoconf doesn't do /home/pi/speech2text/sphinxbase-5prealpha
+# Stupid broken RedHat autoconf doesn't do /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
builddir="../.."
sourcedir="../.."
tests=$sourcedir/test
diff --git a/sphinxbase-5prealpha/test/unit/Makefile b/sphinxbase-5prealpha/test/unit/Makefile
index 71e1691..9e34d84 100644
--- a/sphinxbase-5prealpha/test/unit/Makefile
+++ b/sphinxbase-5prealpha/test/unit/Makefile
@@ -186,13 +186,13 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -227,7 +227,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -260,13 +260,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -298,7 +298,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
index 3ecf1ba..66fa787 100644
--- a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
@@ -411,13 +411,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -452,7 +452,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -485,13 +485,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_alloc
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_alloc
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_alloc
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_alloc
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -523,7 +523,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
index 53c574a..c515634 100644
--- a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
@@ -383,13 +383,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -424,7 +424,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -457,13 +457,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_bitvec
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_bitvec
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_bitvec
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_bitvec
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -495,7 +495,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_case/Makefile b/sphinxbase-5prealpha/test/unit/test_case/Makefile
index bcfe5fe..9412462 100644
--- a/sphinxbase-5prealpha/test/unit/test_case/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_case/Makefile
@@ -377,13 +377,13 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -418,7 +418,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -451,13 +451,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_case
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_case
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_case
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_case
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -489,7 +489,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
index 5c61e40..d250f16 100644
--- a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
@@ -388,13 +388,13 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -429,7 +429,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -462,13 +462,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_cmdln
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_cmdln
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_cmdln
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_cmdln
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +500,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_fe/Makefile b/sphinxbase-5prealpha/test/unit/test_fe/Makefile
index bfa21cf..c8a8c3e 100644
--- a/sphinxbase-5prealpha/test/unit/test_fe/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_fe/Makefile
@@ -388,13 +388,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -429,7 +429,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -462,13 +462,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fe
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fe
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +500,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_feat/Makefile b/sphinxbase-5prealpha/test/unit/test_feat/Makefile
index bbbe1be..2acb848 100644
--- a/sphinxbase-5prealpha/test/unit/test_feat/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_feat/Makefile
@@ -401,13 +401,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -442,7 +442,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -475,13 +475,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_feat
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_feat
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_feat
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_feat
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -513,7 +513,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
index b6a7dc9..443ebe7 100644
--- a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
@@ -393,13 +393,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -434,7 +434,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -467,13 +467,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fsg
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fsg
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fsg
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fsg
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -505,7 +505,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_hash/Makefile b/sphinxbase-5prealpha/test/unit/test_hash/Makefile
index 5c97df0..7452ace 100644
--- a/sphinxbase-5prealpha/test/unit/test_hash/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_hash/Makefile
@@ -395,13 +395,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -436,7 +436,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -469,13 +469,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_hash
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_hash
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_hash
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_hash
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -507,7 +507,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
index b6ef157..4414c96 100644
--- a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
@@ -383,13 +383,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -424,7 +424,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -457,13 +457,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_lineiter
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_lineiter
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_lineiter
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_lineiter
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -495,7 +495,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
index d79b43b..115e6b8 100644
--- a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
@@ -395,13 +395,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -436,7 +436,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -469,13 +469,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_logmath
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_logmath
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_logmath
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_logmath
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -507,7 +507,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
index 9466086..49477cb 100644
--- a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
@@ -388,13 +388,13 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -429,7 +429,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -462,13 +462,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_matrix
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_matrix
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_matrix
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_matrix
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +500,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
index 60cc097..4225fda 100644
--- a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
@@ -417,13 +417,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -458,7 +458,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -491,13 +491,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_ngram
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_ngram
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_ngram
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_ngram
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -529,7 +529,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_string/Makefile b/sphinxbase-5prealpha/test/unit/test_string/Makefile
index 53fdf98..c9b33f8 100644
--- a/sphinxbase-5prealpha/test/unit/test_string/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_string/Makefile
@@ -386,13 +386,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -427,7 +427,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -460,13 +460,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_string
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_string
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_string
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_string
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -498,7 +498,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_thread/Makefile b/sphinxbase-5prealpha/test/unit/test_thread/Makefile
index 511f876..850dec9 100644
--- a/sphinxbase-5prealpha/test/unit/test_thread/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_thread/Makefile
@@ -393,13 +393,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -434,7 +434,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -467,13 +467,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_thread
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_thread
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_thread
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_thread
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -505,7 +505,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/test_util/Makefile b/sphinxbase-5prealpha/test/unit/test_util/Makefile
index d865ac6..3c08bef 100644
--- a/sphinxbase-5prealpha/test/unit/test_util/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_util/Makefile
@@ -417,13 +417,13 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.15
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
+AUTOCONF = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.15
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
@@ -458,7 +458,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -491,13 +491,13 @@ SET_MAKE =
SHELL = /bin/bash
STRIP = strip
SWIG = /usr/bin/swig
-SWIG_LIB = /usr/share/swig3.0
+SWIG_LIB = /usr/share/swig/3.0.10
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_util
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_util
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_util
+abs_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_util
+abs_top_builddir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -529,7 +529,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
diff --git a/sphinxbase-5prealpha/test/unit/testfuncs.sh b/sphinxbase-5prealpha/test/unit/testfuncs.sh
index 060c5f0..7d7d2eb 100644
--- a/sphinxbase-5prealpha/test/unit/testfuncs.sh
+++ b/sphinxbase-5prealpha/test/unit/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speech2text/sphinxbase-5prealpha
+# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speechRec/sphinxSpeech2Text/sphinxbase-5prealpha
builddir=../"../.."
sourcedir=../"../.."
tests=$sourcedir/test
diff --git a/testfiles/speech.wav b/testfiles/speech.wav
deleted file mode 100644
index 8f5e3c2..0000000
Binary files a/testfiles/speech.wav and /dev/null differ