No description
  • C++ 81.5%
  • C 17.1%
  • Makefile 0.5%
  • Objective-C 0.5%
  • Rez 0.2%
  • Other 0.1%
Find a file
2020-04-19 13:50:55 +10:00
.travis
dgl Naming 2019-01-28 10:06:00 +01:00
distrho WIP: AUv2 2020-04-19 13:50:55 +10:00
examples aurez fixups 2019-12-26 21:12:38 +11:00
lac
utils aurez fixups 2019-12-26 21:12:38 +11:00
.gitignore
.travis.yml
dpf.doxygen Adjustments for Cairo, and general cleanup 2019-01-07 01:10:57 +01:00
dpf.kdev4
LICENSE Adds 2 software as "made with DPF" + copyright years update (#93) 2018-12-16 21:13:00 +01:00
Makefile aurez fixups 2019-12-26 21:12:38 +11:00
Makefile.base.mk Allow to use a different pkg-config program (issue #102) (#104) 2019-01-11 10:37:16 +01:00
Makefile.plugins.mk WIP: AUv2 2020-04-19 13:50:55 +10:00
README.md Adds 2 software as "made with DPF" + copyright years update (#93) 2018-12-16 21:13:00 +01:00

DPF - DISTRHO Plugin Framework

Build Status

DPF is designed to make development of new plugins an easy and enjoyable task.
It allows developers to create plugins with custom UIs using a simple C++ API.
The framework facilitates exporting various different plugin formats from the same code-base.

DPF can build for LADSPA, DSSI, LV2 and VST formats.
All current plugin format implementations are complete.
A JACK/Standalone mode is also available, allowing you to quickly test plugins.

Plugin DSP and UI communication is done via key-value string pairs.
You send messages from the UI to the DSP side, which is automatically saved in the host when required.
(You can also store state internally if needed, but this breaks DSSI compatibility).

Getting time information from the host is possible.
It uses the same format as the JACK Transport API, making porting some code easier.

List of plugins made with DPF:

Plugin examples are available in the example/ folder inside this repo.
Extra OpenGL UI examples are available here.

Online documentation is available at https://distrho.github.io/DPF/.