1
0
Fork
You've already forked DPF
0
Fork of https://github.com/DISTRHO/DPF (all changes merged upstream)
  • C++ 84.5%
  • C 14%
  • Makefile 0.8%
  • CMake 0.5%
  • Python 0.1%
2024年02月17日 16:36:29 -08:00
.github Fix build, add SDL2 stuff for CI testing 2023年02月09日 11:39:09 +01:00
cmake Use correct VST 3 directory name on PowerPC 2024年02月09日 03:38:01 -08:00
dgl Fix custom class name 2023年10月24日 20:47:44 +02:00
distrho VST3: do not set parameter can-automate flag for output params 2024年01月06日 22:05:22 +01:00
examples Use drag/edit for UI parameter example, cleanup 2024年01月06日 20:43:45 +01:00
lac Update pres 2014年05月01日 20:52:06 +02:00
tests wasm and egl/gles related things 2022年07月02日 16:33:58 +01:00
utils A small utlity to convert binary plugin state to json 2024年01月06日 20:44:13 +01:00
.gitignore Ignore a few cmake temporary files 2023年04月22日 19:27:41 +02:00
.gitmodules Start adding some actual implementation to Window class 2021年05月03日 16:43:44 +01:00
CMakeLists.txt Do not activate cairo under Haiku for now 2023年01月01日 17:01:58 +00:00
dpf.doxygen Skip doxygen timestamps for online docs 2022年10月03日 16:52:13 +01:00
dpf.kdev4 Fix typo 2014年05月13日 14:49:17 +01:00
FEATURES.md Cleanup FEATURES.md, updating VST3 state and adding CLAP 2022年10月30日 16:30:07 +00:00
LICENSE Use new CI template for the example plugins 2022年11月18日 20:34:20 +00:00
LICENSING.md Replace vestige with a more liberally-licensed version 2022年09月24日 12:28:15 +01:00
Makefile Add makefile extra rules for MOD Audio stuff 2022年09月26日 16:17:19 +01:00
Makefile.base.mk Use correct VST 3 directory name on PowerPC 2024年02月09日 03:38:01 -08:00
Makefile.plugins.mk Update to latest pugl 2023年10月15日 15:54:07 +02:00
README.md Update README with fork info 2024年02月17日 16:36:29 -08:00

PowerAudio fork of DPF

This fork of DPF currently has the following changes:

  • Fixed VST 3 directory names on IBM Power.

DPF - DISTRHO Plugin Framework

makefile cmake example-plugins

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, VST2, VST3 and CLAP formats.
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.

Provided features and implementation status for specific plugin formats can be seen in FEATURES.md.

Licensing

DPF is released under ISC, which basically means you can do whatever you want as long as you credit the original authors.
Some plugin formats may have additional restrictions, see LICENSING.md for details.

Help and documentation

Bug reports happen on the DPF github project.

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

Online help and discussion about DPF happens in the kx.studio chat, DPF room.

List of plugins made with DPF:

See this wiki page for a list of plugins made with DPF.

Plugin examples are also available in the example/ folder inside this repo.