├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── RtAudio.cpp ├── RtAudio.h ├── cmake └── cmake_uninstall.cmake.in ├── data ├── choice.txt ├── output-message.txt ├── param.txt └── rw-param-status.txt ├── documentation ├── 50-cloud-init.yaml ├── How_to_Set_Up_LCC_on_Raspberry_Pi_for_Home_Theater_Entertainment.pdf ├── LCC_Equation.pdf ├── Location_Cue_Correction.pdf └── scripting-with-lcc.md ├── lcc-script-interface ├── bash │ └── bash-script-sample.sh └── cpp │ ├── lcc-cpp-script.cpp │ └── lcc-cpp-script.h ├── lcc_audio.exe └── lcc_rtaudio.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/README.md -------------------------------------------------------------------------------- /RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/RtAudio.cpp -------------------------------------------------------------------------------- /RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/RtAudio.h -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /data/choice.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/output-message.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/param.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/rw-param-status.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /documentation/50-cloud-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/documentation/50-cloud-init.yaml -------------------------------------------------------------------------------- /documentation/How_to_Set_Up_LCC_on_Raspberry_Pi_for_Home_Theater_Entertainment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/documentation/How_to_Set_Up_LCC_on_Raspberry_Pi_for_Home_Theater_Entertainment.pdf -------------------------------------------------------------------------------- /documentation/LCC_Equation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/documentation/LCC_Equation.pdf -------------------------------------------------------------------------------- /documentation/Location_Cue_Correction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/documentation/Location_Cue_Correction.pdf -------------------------------------------------------------------------------- /documentation/scripting-with-lcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/documentation/scripting-with-lcc.md -------------------------------------------------------------------------------- /lcc-script-interface/bash/bash-script-sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/lcc-script-interface/bash/bash-script-sample.sh -------------------------------------------------------------------------------- /lcc-script-interface/cpp/lcc-cpp-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/lcc-script-interface/cpp/lcc-cpp-script.cpp -------------------------------------------------------------------------------- /lcc-script-interface/cpp/lcc-cpp-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/lcc-script-interface/cpp/lcc-cpp-script.h -------------------------------------------------------------------------------- /lcc_audio.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/lcc_audio.exe -------------------------------------------------------------------------------- /lcc_rtaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeteorStudioASU/lcc/HEAD/lcc_rtaudio.cpp --------------------------------------------------------------------------------