├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.base.mk ├── Makefile.plugins.mk ├── README.md ├── patches ├── a-fluidsynth-hmi.patch └── a-fluidsynth.patch ├── plugins ├── a-comp.lv2 │ ├── Makefile │ ├── a-comp#stereo.ttl.in │ ├── a-comp.c │ ├── a-comp.ttl.in │ ├── manifest.ttl.in │ └── presets.ttl.in ├── a-delay.lv2 │ ├── Makefile │ ├── a-delay.c │ ├── a-delay.ttl.in │ ├── manifest.ttl.in │ └── presets.ttl.in ├── a-eq.lv2 │ ├── Makefile │ ├── a-eq.c │ ├── a-eq.ttl.in │ └── manifest.ttl.in ├── a-exp.lv2 │ ├── Makefile │ ├── a-exp#stereo.ttl.in │ ├── a-exp.c │ ├── a-exp.ttl.in │ └── manifest.ttl.in ├── a-fluidsynth.lv2 │ ├── Makefile │ ├── a-fluidsynth.cc │ ├── a-fluidsynth.ttl.in │ ├── fluidsynth │ │ ├── MSVCfluidsynth │ │ │ └── fluidsynth.vcproj │ │ ├── README │ │ ├── config.h │ │ ├── fluidsynth │ │ │ ├── event.h │ │ │ ├── fluidsynth.h │ │ │ ├── gen.h │ │ │ ├── log.h │ │ │ ├── midi.h │ │ │ ├── misc.h │ │ │ ├── mod.h │ │ │ ├── settings.h │ │ │ ├── sfont.h │ │ │ ├── synth.h │ │ │ ├── types.h │ │ │ └── voice.h │ │ └── src │ │ │ ├── fluid_adsr_env.c │ │ │ ├── fluid_adsr_env.h │ │ │ ├── fluid_chan.c │ │ │ ├── fluid_chan.h │ │ │ ├── fluid_chorus.c │ │ │ ├── fluid_chorus.h │ │ │ ├── fluid_conv.c │ │ │ ├── fluid_conv.h │ │ │ ├── fluid_conv_tables.h │ │ │ ├── fluid_conv_tables.inc.h │ │ │ ├── fluid_defsfont.c │ │ │ ├── fluid_defsfont.h │ │ │ ├── fluid_event.c │ │ │ ├── fluid_event.h │ │ │ ├── fluid_gen.c │ │ │ ├── fluid_gen.h │ │ │ ├── fluid_hash.c │ │ │ ├── fluid_hash.h │ │ │ ├── fluid_iir_filter.c │ │ │ ├── fluid_iir_filter.h │ │ │ ├── fluid_lfo.c │ │ │ ├── fluid_lfo.h │ │ │ ├── fluid_list.c │ │ │ ├── fluid_list.h │ │ │ ├── fluid_midi.c │ │ │ ├── fluid_midi.h │ │ │ ├── fluid_mod.c │ │ │ ├── fluid_mod.h │ │ │ ├── fluid_phase.h │ │ │ ├── fluid_rev.c │ │ │ ├── fluid_rev.h │ │ │ ├── fluid_ringbuffer.c │ │ │ ├── fluid_ringbuffer.h │ │ │ ├── fluid_rvoice.c │ │ │ ├── fluid_rvoice.h │ │ │ ├── fluid_rvoice_dsp.c │ │ │ ├── fluid_rvoice_dsp_tables.inc.h │ │ │ ├── fluid_rvoice_event.c │ │ │ ├── fluid_rvoice_event.h │ │ │ ├── fluid_rvoice_mixer.c │ │ │ ├── fluid_rvoice_mixer.h │ │ │ ├── fluid_samplecache.c │ │ │ ├── fluid_samplecache.h │ │ │ ├── fluid_settings.c │ │ │ ├── fluid_settings.h │ │ │ ├── fluid_sffile.c │ │ │ ├── fluid_sffile.h │ │ │ ├── fluid_sfont.c │ │ │ ├── fluid_sfont.h │ │ │ ├── fluid_synth.c │ │ │ ├── fluid_synth.h │ │ │ ├── fluid_synth_monopoly.c │ │ │ ├── fluid_sys.c │ │ │ ├── fluid_sys.h │ │ │ ├── fluid_tuning.c │ │ │ ├── fluid_tuning.h │ │ │ ├── fluid_voice.c │ │ │ ├── fluid_voice.h │ │ │ └── fluidsynth_priv.h │ ├── manifest.ttl.in │ └── mod-lv2-hmi.h ├── a-reverb.lv2 │ ├── Makefile │ ├── a-reverb.c │ ├── a-reverb.ttl.in │ └── manifest.ttl.in └── shared │ └── dynamic_display.c └── update-plugins.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/Makefile.base.mk -------------------------------------------------------------------------------- /Makefile.plugins.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/Makefile.plugins.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/README.md -------------------------------------------------------------------------------- /patches/a-fluidsynth-hmi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/patches/a-fluidsynth-hmi.patch -------------------------------------------------------------------------------- /patches/a-fluidsynth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/patches/a-fluidsynth.patch -------------------------------------------------------------------------------- /plugins/a-comp.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-comp.lv2/a-comp#stereo.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/a-comp#stereo.ttl.in -------------------------------------------------------------------------------- /plugins/a-comp.lv2/a-comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/a-comp.c -------------------------------------------------------------------------------- /plugins/a-comp.lv2/a-comp.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/a-comp.ttl.in -------------------------------------------------------------------------------- /plugins/a-comp.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/a-comp.lv2/presets.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-comp.lv2/presets.ttl.in -------------------------------------------------------------------------------- /plugins/a-delay.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-delay.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-delay.lv2/a-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-delay.lv2/a-delay.c -------------------------------------------------------------------------------- /plugins/a-delay.lv2/a-delay.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-delay.lv2/a-delay.ttl.in -------------------------------------------------------------------------------- /plugins/a-delay.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-delay.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/a-delay.lv2/presets.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-delay.lv2/presets.ttl.in -------------------------------------------------------------------------------- /plugins/a-eq.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-eq.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-eq.lv2/a-eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-eq.lv2/a-eq.c -------------------------------------------------------------------------------- /plugins/a-eq.lv2/a-eq.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-eq.lv2/a-eq.ttl.in -------------------------------------------------------------------------------- /plugins/a-eq.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-eq.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/a-exp.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-exp.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-exp.lv2/a-exp#stereo.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-exp.lv2/a-exp#stereo.ttl.in -------------------------------------------------------------------------------- /plugins/a-exp.lv2/a-exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-exp.lv2/a-exp.c -------------------------------------------------------------------------------- /plugins/a-exp.lv2/a-exp.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-exp.lv2/a-exp.ttl.in -------------------------------------------------------------------------------- /plugins/a-exp.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-exp.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/a-fluidsynth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/a-fluidsynth.cc -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/MSVCfluidsynth/fluidsynth.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/MSVCfluidsynth/fluidsynth.vcproj -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/README -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/config.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/event.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/fluidsynth.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/gen.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/log.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/midi.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/misc.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/mod.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/settings.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/sfont.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/synth.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/types.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/fluidsynth/voice.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_adsr_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_adsr_env.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_adsr_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_adsr_env.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chan.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chan.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chorus.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_chorus.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv_tables.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv_tables.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_conv_tables.inc.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_defsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_defsfont.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_defsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_defsfont.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_event.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_event.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_gen.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_gen.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_hash.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_hash.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_iir_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_iir_filter.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_iir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_iir_filter.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_lfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_lfo.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_lfo.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_list.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_list.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_midi.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_midi.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_mod.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_mod.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_phase.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rev.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rev.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_ringbuffer.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_ringbuffer.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_dsp.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_dsp_tables.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_dsp_tables.inc.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_event.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_event.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_mixer.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_rvoice_mixer.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_samplecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_samplecache.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_samplecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_samplecache.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_settings.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_settings.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sffile.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sffile.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sfont.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sfont.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth_monopoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_synth_monopoly.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sys.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_sys.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_tuning.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_tuning.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_voice.c -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluid_voice.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/fluidsynth/src/fluidsynth_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/fluidsynth/src/fluidsynth_priv.h -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/a-fluidsynth.lv2/mod-lv2-hmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-fluidsynth.lv2/mod-lv2-hmi.h -------------------------------------------------------------------------------- /plugins/a-reverb.lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-reverb.lv2/Makefile -------------------------------------------------------------------------------- /plugins/a-reverb.lv2/a-reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-reverb.lv2/a-reverb.c -------------------------------------------------------------------------------- /plugins/a-reverb.lv2/a-reverb.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-reverb.lv2/a-reverb.ttl.in -------------------------------------------------------------------------------- /plugins/a-reverb.lv2/manifest.ttl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/a-reverb.lv2/manifest.ttl.in -------------------------------------------------------------------------------- /plugins/shared/dynamic_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/plugins/shared/dynamic_display.c -------------------------------------------------------------------------------- /update-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/DIE-Plugins/HEAD/update-plugins.sh --------------------------------------------------------------------------------