DCOffsetter is an audio plugin developed with the JUCE framework. It allows you to adjust the direct current (DC) component of audio signals by adding DC offset (bias) to the audio signal.
It provides independent bias control for left and right stereo channels, supporting various audio processing applications from fine adjustments to significant modifications.
- Stereo DC Offset Control: Set independent bias values for the left (L Bias) and right (R Bias) channels
- Smooth Parameter Changes: Smooth parameter transitions using SmoothedValue
- Real-time Processing: Low-latency audio processing
| Parameter | Range | Default | Description |
|---|---|---|---|
| L Bias | -1.0 to 1.0 | 0.0 | Left channel DC offset value |
| R Bias | -1.0 to 1.0 | 0.0 | Right channel DC offset value |
DCOffsetter/
├── Source/
│ ├── PluginProcessor.h/cpp # Audio processor implementation
│ ├── PluginEditor.h/cpp # Editor UI implementation
│ ├── DSP/
│ │ └── DCOffsetProcessor.h/cpp # DC offset processing engine
│ ├── Parameters/
│ │ └── PluginParameters.h # Parameter definitions
│ └── LookAndFeel/
│ └── CustomLooks.h/cpp # Custom UI styling
├── JuceLibraryCode/ # JUCE framework code
├── Builds/
│ └── VisualStudio2026/ # Visual Studio project
├── DCOffsetter.jucer # JUCE project configuration file
└── README.md # This file
- JUCE 8.0 or later
- Visual Studio 2022 or 2026 (for Windows)
- Open the
DCOffsetter.jucerfile with JUCE Projucer - Select the build target (VST3, AAX, Standalone, etc.)
- Open the solution file in
Builds/VisualStudio2026/folder - Build with Visual Studio
Open DCOffsetter.jucer with Projucer to configure:
- Plugin formats (VST3, AAX, AU, LV2, etc.)
- Target platform
- Compiler settings
- Insert the plugin in your DAW (Digital Audio Workstation)
- Set the left channel DC offset using the L Bias slider
- Set the right channel DC offset using the R Bias slider
- Signal DC Component Adjustment: Center audio signals as a preprocessing step
- Waveform Shaping: Prepare input for non-linear processing
- Troubleshooting: Correct recording material containing DC offset artifacts
Input Audio
↓
[PluginProcessor::processBlock]
↓
[DCOffsetProcessor::process] (L Channel)
[DCOffsetProcessor::process] (R Channel)
↓
Output Audio
- Role: Implements DC offset processing
- Methods:
prepare(): Initializes the audio systemsetDCOffset(): Sets the bias valueprocess(): Applies bias to audio bufferreset(): Resets internal state
- Role: Implements JUCE AudioProcessor interface
- Functions: Parameter management, audio processing flow control
- Role: User interface implementation
- Features: 320x220 pixel custom editor layout
Bias values are smoothly changed using juce::SmoothedValue, which prevents clicking artifacts when parameters are changed.
juce::SmoothedValue<float> dcOffset{0.0f};For details, see the LICENSE file.
- VST3 (Windows, macOS, Linux)
- AAX (Windows, macOS)
- AU (macOS)
- LV2 (Linux)
- Standalone (executable application)
- Windows: 64-bit (recommended)
- macOS: 10.11 or later
- Linux: ALSA/JACK support
- Verify that the JUCE library is installed correctly
- Ensure Visual Studio is up to date
- Delete the
Builds/folder and regenerate from Projucer
Last Updated: May 2026
