├── .gitignore ├── CMakeLists.txt ├── README.md ├── dsp.h ├── test ├── CMakeLists.txt └── wavingz-test.cpp ├── wave-in.cpp ├── wave-out.cpp ├── wavingz.cpp └── wavingz.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/README.md -------------------------------------------------------------------------------- /dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/dsp.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/wavingz-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/test/wavingz-test.cpp -------------------------------------------------------------------------------- /wave-in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/wave-in.cpp -------------------------------------------------------------------------------- /wave-out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/wave-out.cpp -------------------------------------------------------------------------------- /wavingz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/wavingz.cpp -------------------------------------------------------------------------------- /wavingz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baol/waving-z/HEAD/wavingz.h --------------------------------------------------------------------------------