├── .github ├── actions │ └── action.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── NeuralRack.png ├── NeuralRack ├── clap │ ├── NeuralRack.cc │ ├── NeuralRackClap.cpp │ ├── Parameter.h │ ├── clap │ │ ├── all.h │ │ ├── audio-buffer.h │ │ ├── clap.h │ │ ├── color.h │ │ ├── entry.h │ │ ├── events.h │ │ ├── ext │ │ │ ├── ambisonic.h │ │ │ ├── audio-ports-activation.h │ │ │ ├── audio-ports-config.h │ │ │ ├── audio-ports.h │ │ │ ├── configurable-audio-ports.h │ │ │ ├── context-menu.h │ │ │ ├── draft │ │ │ │ ├── extensible-audio-ports.h │ │ │ │ ├── resource-directory.h │ │ │ │ ├── transport-control.h │ │ │ │ ├── triggers.h │ │ │ │ ├── tuning.h │ │ │ │ └── undo.h │ │ │ ├── event-registry.h │ │ │ ├── gui.h │ │ │ ├── latency.h │ │ │ ├── log.h │ │ │ ├── note-name.h │ │ │ ├── note-ports.h │ │ │ ├── param-indication.h │ │ │ ├── params.h │ │ │ ├── posix-fd-support.h │ │ │ ├── preset-load.h │ │ │ ├── remote-controls.h │ │ │ ├── render.h │ │ │ ├── state-context.h │ │ │ ├── state.h │ │ │ ├── surround.h │ │ │ ├── tail.h │ │ │ ├── thread-check.h │ │ │ ├── thread-pool.h │ │ │ ├── timer-support.h │ │ │ ├── track-info.h │ │ │ └── voice-info.h │ │ ├── factory │ │ │ ├── draft │ │ │ │ ├── plugin-invalidation.h │ │ │ │ └── plugin-state-converter.h │ │ │ ├── plugin-factory.h │ │ │ └── preset-discovery.h │ │ ├── fixedpoint.h │ │ ├── host.h │ │ ├── id.h │ │ ├── plugin-features.h │ │ ├── plugin.h │ │ ├── private │ │ │ ├── macros.h │ │ │ └── std.h │ │ ├── process.h │ │ ├── stream.h │ │ ├── string-sizes.h │ │ ├── timestamp.h │ │ ├── universal-plugin-id.h │ │ └── version.h │ └── clapplug.h ├── engine │ ├── NeuralModelLoader.cpp │ ├── NeuralModelLoader.h │ ├── NoiseGate.cc │ ├── ParallelThread.h │ ├── cdelay.cc │ ├── dcblocker.cc │ ├── engine.h │ ├── eq.cc │ ├── fftconvolver.cpp │ ├── fftconvolver.h │ ├── gx_resampler.cc │ ├── gx_resampler.h │ └── phasecor.cc ├── gui │ ├── NeuralRack.c │ ├── widgets.cc │ └── widgets.h ├── lv2 │ ├── NeuralRack.cpp │ ├── NeuralRack.ttl │ ├── lv2_plugin.cc │ ├── lv2_plugin.h │ ├── manifest.ttl │ └── uris.h ├── makefile ├── resources │ ├── NeuralRack.png │ ├── eject.png │ ├── exit_.png │ ├── menu.png │ └── norm.png ├── standalone │ ├── NeuralRack.cc │ ├── NeuralRack.desktop │ ├── NeuralRack.svg │ ├── TextEntry.h │ ├── jack.cc │ ├── main.cpp │ ├── standalone.h │ └── xpa.h ├── vst2 │ ├── NeuralRackvst.cpp │ └── vestige.h └── zita-resampler-1.1.0 │ ├── AUTHORS │ ├── README │ ├── resampler-table.cc │ ├── resampler.cc │ └── zita-resampler │ ├── resampler-table.h │ └── resampler.h ├── README.md └── makefile /.github/actions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/.github/actions/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/LICENSE -------------------------------------------------------------------------------- /NeuralRack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack.png -------------------------------------------------------------------------------- /NeuralRack/clap/NeuralRack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/NeuralRack.cc -------------------------------------------------------------------------------- /NeuralRack/clap/NeuralRackClap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/NeuralRackClap.cpp -------------------------------------------------------------------------------- /NeuralRack/clap/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/Parameter.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/all.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/audio-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/audio-buffer.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/clap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/clap.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/color.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/entry.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/events.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/ambisonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/ambisonic.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/audio-ports-activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/audio-ports-activation.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/audio-ports-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/audio-ports-config.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/audio-ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/audio-ports.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/configurable-audio-ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/configurable-audio-ports.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/context-menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/context-menu.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/extensible-audio-ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/extensible-audio-ports.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/resource-directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/resource-directory.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/transport-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/transport-control.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/triggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/triggers.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/tuning.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/draft/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/draft/undo.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/event-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/event-registry.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/gui.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/latency.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/log.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/note-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/note-name.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/note-ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/note-ports.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/param-indication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/param-indication.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/params.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/posix-fd-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/posix-fd-support.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/preset-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/preset-load.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/remote-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/remote-controls.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/render.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/state-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/state-context.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/state.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/surround.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/tail.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/thread-check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/thread-check.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/thread-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/thread-pool.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/timer-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/timer-support.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/track-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/track-info.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/ext/voice-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/ext/voice-info.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/factory/draft/plugin-invalidation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/factory/draft/plugin-invalidation.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/factory/draft/plugin-state-converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/factory/draft/plugin-state-converter.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/factory/plugin-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/factory/plugin-factory.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/factory/preset-discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/factory/preset-discovery.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/fixedpoint.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/host.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/id.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/plugin-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/plugin-features.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/plugin.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/private/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/private/macros.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/private/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/private/std.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/process.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/stream.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/string-sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/string-sizes.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/timestamp.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/universal-plugin-id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/universal-plugin-id.h -------------------------------------------------------------------------------- /NeuralRack/clap/clap/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clap/version.h -------------------------------------------------------------------------------- /NeuralRack/clap/clapplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/clap/clapplug.h -------------------------------------------------------------------------------- /NeuralRack/engine/NeuralModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/NeuralModelLoader.cpp -------------------------------------------------------------------------------- /NeuralRack/engine/NeuralModelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/NeuralModelLoader.h -------------------------------------------------------------------------------- /NeuralRack/engine/NoiseGate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/NoiseGate.cc -------------------------------------------------------------------------------- /NeuralRack/engine/ParallelThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/ParallelThread.h -------------------------------------------------------------------------------- /NeuralRack/engine/cdelay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/cdelay.cc -------------------------------------------------------------------------------- /NeuralRack/engine/dcblocker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/dcblocker.cc -------------------------------------------------------------------------------- /NeuralRack/engine/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/engine.h -------------------------------------------------------------------------------- /NeuralRack/engine/eq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/eq.cc -------------------------------------------------------------------------------- /NeuralRack/engine/fftconvolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/fftconvolver.cpp -------------------------------------------------------------------------------- /NeuralRack/engine/fftconvolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/fftconvolver.h -------------------------------------------------------------------------------- /NeuralRack/engine/gx_resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/gx_resampler.cc -------------------------------------------------------------------------------- /NeuralRack/engine/gx_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/gx_resampler.h -------------------------------------------------------------------------------- /NeuralRack/engine/phasecor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/engine/phasecor.cc -------------------------------------------------------------------------------- /NeuralRack/gui/NeuralRack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/gui/NeuralRack.c -------------------------------------------------------------------------------- /NeuralRack/gui/widgets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/gui/widgets.cc -------------------------------------------------------------------------------- /NeuralRack/gui/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/gui/widgets.h -------------------------------------------------------------------------------- /NeuralRack/lv2/NeuralRack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/NeuralRack.cpp -------------------------------------------------------------------------------- /NeuralRack/lv2/NeuralRack.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/NeuralRack.ttl -------------------------------------------------------------------------------- /NeuralRack/lv2/lv2_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/lv2_plugin.cc -------------------------------------------------------------------------------- /NeuralRack/lv2/lv2_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/lv2_plugin.h -------------------------------------------------------------------------------- /NeuralRack/lv2/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/manifest.ttl -------------------------------------------------------------------------------- /NeuralRack/lv2/uris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/lv2/uris.h -------------------------------------------------------------------------------- /NeuralRack/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/makefile -------------------------------------------------------------------------------- /NeuralRack/resources/NeuralRack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/resources/NeuralRack.png -------------------------------------------------------------------------------- /NeuralRack/resources/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/resources/eject.png -------------------------------------------------------------------------------- /NeuralRack/resources/exit_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/resources/exit_.png -------------------------------------------------------------------------------- /NeuralRack/resources/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/resources/menu.png -------------------------------------------------------------------------------- /NeuralRack/resources/norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/resources/norm.png -------------------------------------------------------------------------------- /NeuralRack/standalone/NeuralRack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/NeuralRack.cc -------------------------------------------------------------------------------- /NeuralRack/standalone/NeuralRack.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/NeuralRack.desktop -------------------------------------------------------------------------------- /NeuralRack/standalone/NeuralRack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/NeuralRack.svg -------------------------------------------------------------------------------- /NeuralRack/standalone/TextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/TextEntry.h -------------------------------------------------------------------------------- /NeuralRack/standalone/jack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/jack.cc -------------------------------------------------------------------------------- /NeuralRack/standalone/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/main.cpp -------------------------------------------------------------------------------- /NeuralRack/standalone/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/standalone.h -------------------------------------------------------------------------------- /NeuralRack/standalone/xpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/standalone/xpa.h -------------------------------------------------------------------------------- /NeuralRack/vst2/NeuralRackvst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/vst2/NeuralRackvst.cpp -------------------------------------------------------------------------------- /NeuralRack/vst2/vestige.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/vst2/vestige.h -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Fons Adriaensen 2 | -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/zita-resampler-1.1.0/README -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/resampler-table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/zita-resampler-1.1.0/resampler-table.cc -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/zita-resampler-1.1.0/resampler.cc -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/zita-resampler/resampler-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/zita-resampler-1.1.0/zita-resampler/resampler-table.h -------------------------------------------------------------------------------- /NeuralRack/zita-resampler-1.1.0/zita-resampler/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/NeuralRack/zita-resampler-1.1.0/zita-resampler/resampler.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/NeuralRack/HEAD/makefile --------------------------------------------------------------------------------