gitextract_n3kfgpod/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── audio-logger.cpp ├── audio-logger.h ├── build-vars.h.in ├── cmake/ │ ├── BuildTypes.cmake │ ├── FindFFTW.cmake │ ├── GitVars.cmake │ └── sdl2/ │ └── FindSDL2.cmake ├── common-gui.cpp ├── common-gui.h ├── common.cpp ├── common.h ├── compress-n-grams.cpp ├── constants.h ├── data/ │ ├── english_quadgrams.txt │ ├── english_quintgrams.txt │ ├── english_trigrams.txt │ ├── ggwords-3-gram.dat.binary │ ├── ggwords-4-gram.dat.binary │ ├── ggwords-5-gram.dat.binary │ ├── ggwords-6-gram.dat.binary │ └── sample_quadgrams.txt ├── dr_wav.h ├── generate-clusters.cpp ├── guess-qp.cpp ├── guess-qp2.cpp ├── imconfig-vtx32.h ├── index-keytap2-gui-tmpl.html ├── index-keytap3-app-tmpl.html ├── index-keytap3-gui-tmpl.html ├── key-average-gui.cpp ├── key-detector.cpp ├── keytap-gui.cpp ├── keytap.cpp ├── keytap2-gui-old.cpp ├── keytap2-gui.cpp ├── keytap2.cpp ├── keytap3-app.cpp ├── keytap3-gui.cpp ├── keytap3-multi.cpp ├── keytap3.cpp ├── non-exact-subbreak.cpp ├── non-exact-subbreak2.cpp ├── play-full.cpp ├── play.cpp ├── record-full.cpp ├── record.cpp ├── scale.cpp ├── style.css ├── subbreak.cpp ├── subbreak.h ├── subbreak2.cpp ├── subbreak2.h ├── subbreak3.cpp ├── subbreak3.h ├── test-subbreak3.cpp ├── view-full-gui.cpp └── view-gui.cpp