├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── Makefile ├── README.md ├── audio.c ├── audio.h ├── common.c ├── common.h ├── config.h ├── dirt.c ├── file.c ├── file.h ├── jack.c ├── jack.h ├── jobqueue.c ├── jobqueue.h ├── pitch.c ├── pitch.h ├── segment.c ├── segment.h ├── server.c ├── server.h ├── thpool.c ├── thpool.h ├── windows └── dirt-pa.exe └── zmqserv.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | (c) 2015 Alex McLean and contributors 2 | GPLv3.0 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/README.md -------------------------------------------------------------------------------- /audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/audio.c -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/audio.h -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/common.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/common.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/config.h -------------------------------------------------------------------------------- /dirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/dirt.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/file.c -------------------------------------------------------------------------------- /file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/file.h -------------------------------------------------------------------------------- /jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/jack.c -------------------------------------------------------------------------------- /jack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/jack.h -------------------------------------------------------------------------------- /jobqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/jobqueue.c -------------------------------------------------------------------------------- /jobqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/jobqueue.h -------------------------------------------------------------------------------- /pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/pitch.c -------------------------------------------------------------------------------- /pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/pitch.h -------------------------------------------------------------------------------- /segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/segment.c -------------------------------------------------------------------------------- /segment.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | extern int *segment_get_onsets(t_sample *sound); 4 | -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/server.h -------------------------------------------------------------------------------- /thpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/thpool.c -------------------------------------------------------------------------------- /thpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/thpool.h -------------------------------------------------------------------------------- /windows/dirt-pa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/windows/dirt-pa.exe -------------------------------------------------------------------------------- /zmqserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidalcycles/Dirt/HEAD/zmqserv.c --------------------------------------------------------------------------------