PULP

main Alpha — under active development
GitHub

PulpGain

Category: reference Type: Effect Path: examples/pulp-gain/

Summary

The simplest possible Pulp plugin. A stereo gain effect with input gain, output gain, and bypass parameters. This is the canonical example for learning how to build a Pulp plugin and is the recommended starting point for new developers.

What It Demonstrates

Try in Browser

The same Processor code that runs as VST3/AU/CLAP is compiled to WebAssembly and can run in the local browser host via the Web Audio API. The repo does not yet publish a canonical Pages-hosted browser host, so use tools/browser-host/ locally for now.

Supported Formats

Format Supported
VST3 Yes
AU v2 Yes
CLAP Yes
AAX Optional on macOS/Windows
Standalone Yes
WAMv2 (Browser) Yes
WebCLAP (WASM) Yes

Supported Platforms

Platform Supported
macOS Yes
Windows Build stubs present, not yet validated
Linux Build stubs present, not yet validated

Key Files

File Purpose
pulp_gain.hpp Processor implementation: descriptor, parameters, audio processing
vst3_entry.cpp VST3 format entry point
au_v2_entry.cpp Audio Unit v2 entry point
au_register.cpp AU component registration
clap_entry.cpp CLAP format entry point
aax_entry.cpp AAX format entry point
main.cpp Standalone application entry point
test_pulp_gain.cpp Unit tests exercising the processor through the headless host
Info.plist.au AU bundle metadata
Info.plist.vst3 VST3 bundle metadata
moduleinfo.json VST3 module info
CMakeLists.txt Build configuration using pulp_add_plugin()

Parameters

ID Name Unit Range Default
1 Input Gain dB -60 to 24 0
2 Output Gain dB -60 to 24 0
3 Bypass (toggle) 0 to 1 0

Known Limitations