DISTRHO Plugin Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falkTX 0d962da768
Add CVPort example
4 years ago
..
DistrhoPluginInfo.h Add CVPort example 4 years ago
ExamplePluginCVPort.cpp Add CVPort example 4 years ago
Makefile Add CVPort example 4 years ago
README.md Add CVPort example 4 years ago

README.md

CVPort example

This example will show how to modify audio input/output port type in DPF so they can work as CV.
Take a look at initAudioPort() method.

Worth noting that CV is not supported outside of JACK and LV2 formats.
While it can be built and used in other formats, these ports will appear as regular audio to the host.

The plugin does sample & hold (S&H) processing.
3 I/O ports are specified.

  • Input audio port.
  • Input CV port to modify Hold Time.
  • Output CV port.

The plugin also has a Hold Time parameter. It mixes CV value and parameter value.