2022-03-07 03:54:23 +11:00
|
|
|
use fftw::array::AlignedVec;
|
|
|
|
use fftw::plan::{C2RPlan, C2RPlan32, R2CPlan, R2CPlan32};
|
|
|
|
use fftw::types::{c32, Flag};
|
2022-03-06 12:07:53 +11:00
|
|
|
use nih_plug::prelude::*;
|
2022-03-07 05:17:42 +11:00
|
|
|
use std::f32;
|
2022-03-06 12:07:53 +11:00
|
|
|
use std::pin::Pin;
|
|
|
|
|
2022-03-07 00:33:30 +11:00
|
|
|
const WINDOW_SIZE: usize = 2048;
|
2022-03-07 01:28:44 +11:00
|
|
|
const OVERLAP_TIMES: usize = 4;
|
2022-03-07 00:33:30 +11:00
|
|
|
|
2022-03-06 12:07:53 +11:00
|
|
|
struct Stft {
|
|
|
|
params: Pin<Box<StftParams>>,
|
|
|
|
|
2022-03-07 03:54:23 +11:00
|
|
|
/// An adapter that performs most of the overlap-add algorithm for us.
|
2022-03-06 12:07:53 +11:00
|
|
|
stft: util::StftHelper,
|
2022-03-08 07:19:38 +11:00
|
|
|
/// A Hann window function, passed to the overlap-add helper.
|
2022-03-07 00:48:41 +11:00
|
|
|
window_function: Vec<f32>,
|
2022-03-07 03:54:23 +11:00
|
|
|
|
|
|
|
/// The FFT of a simple low pass FIR filter.
|
|
|
|
lp_filter_kernel: Vec<c32>,
|
|
|
|
|
|
|
|
/// The algorithms for the FFT and IFFT operations.
|
|
|
|
plan: Plan,
|
|
|
|
/// Scratch buffers for computing our FFT. The [`StftHelper`] already contains a buffer for the
|
|
|
|
/// real values.
|
|
|
|
complex_fft_scratch_buffer: AlignedVec<c32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FFTW uses raw pointers which aren't Send+Sync, so we'll wrap this in a separate struct.
|
|
|
|
struct Plan {
|
|
|
|
r2c_plan: R2CPlan32,
|
|
|
|
c2r_plan: C2RPlan32,
|
2022-03-06 12:07:53 +11:00
|
|
|
}
|
|
|
|
|
2022-03-07 03:54:23 +11:00
|
|
|
unsafe impl Send for Plan {}
|
|
|
|
unsafe impl Sync for Plan {}
|
|
|
|
|
2022-03-06 12:07:53 +11:00
|
|
|
#[derive(Params)]
|
|
|
|
struct StftParams {}
|
|
|
|
|
|
|
|
impl Default for Stft {
|
|
|
|
fn default() -> Self {
|
2022-03-08 23:50:45 +11:00
|
|
|
let mut r2c_plan: R2CPlan32 =
|
|
|
|
R2CPlan32::aligned(&[WINDOW_SIZE], Flag::MEASURE | Flag::DESTROYINPUT).unwrap();
|
|
|
|
let c2r_plan: C2RPlan32 =
|
|
|
|
C2RPlan32::aligned(&[WINDOW_SIZE], Flag::MEASURE | Flag::DESTROYINPUT).unwrap();
|
2022-03-07 03:54:23 +11:00
|
|
|
let mut real_fft_scratch_buffer: AlignedVec<f32> = AlignedVec::new(WINDOW_SIZE);
|
|
|
|
let mut complex_fft_scratch_buffer: AlignedVec<c32> = AlignedVec::new(WINDOW_SIZE / 2 + 1);
|
|
|
|
|
|
|
|
// Build a super simple low pass filter from one of the built in window function
|
|
|
|
const FILTER_WINDOW_SIZE: usize = 33;
|
|
|
|
let filter_window = util::window::hann(FILTER_WINDOW_SIZE);
|
|
|
|
real_fft_scratch_buffer[0..FILTER_WINDOW_SIZE].copy_from_slice(&filter_window);
|
|
|
|
|
2022-03-07 12:02:46 +11:00
|
|
|
// And make sure to normalize this so convolution sums to 1
|
|
|
|
let filter_normalization_factor = real_fft_scratch_buffer.iter().sum::<f32>().recip();
|
2022-03-07 03:54:23 +11:00
|
|
|
for sample in real_fft_scratch_buffer.as_slice_mut() {
|
2022-03-07 04:54:18 +11:00
|
|
|
*sample *= filter_normalization_factor;
|
2022-03-07 03:54:23 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
r2c_plan
|
|
|
|
.r2c(
|
|
|
|
&mut real_fft_scratch_buffer,
|
|
|
|
&mut complex_fft_scratch_buffer,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2022-03-06 12:07:53 +11:00
|
|
|
Self {
|
|
|
|
params: Box::pin(StftParams::default()),
|
|
|
|
|
2022-03-07 00:33:30 +11:00
|
|
|
stft: util::StftHelper::new(2, WINDOW_SIZE),
|
2022-03-07 04:54:18 +11:00
|
|
|
window_function: util::window::hann(WINDOW_SIZE),
|
2022-03-07 03:54:23 +11:00
|
|
|
|
|
|
|
lp_filter_kernel: complex_fft_scratch_buffer
|
|
|
|
.iter()
|
|
|
|
.take(WINDOW_SIZE)
|
|
|
|
.copied()
|
|
|
|
.collect(),
|
|
|
|
|
|
|
|
plan: Plan { r2c_plan, c2r_plan },
|
|
|
|
complex_fft_scratch_buffer,
|
2022-03-06 12:07:53 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 03:54:23 +11:00
|
|
|
#[allow(clippy::derivable_impls)]
|
2022-03-06 12:07:53 +11:00
|
|
|
impl Default for StftParams {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Plugin for Stft {
|
|
|
|
const NAME: &'static str = "STFT Example";
|
|
|
|
const VENDOR: &'static str = "Moist Plugins GmbH";
|
|
|
|
const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ";
|
|
|
|
const EMAIL: &'static str = "info@example.com";
|
|
|
|
|
|
|
|
const VERSION: &'static str = "0.0.1";
|
|
|
|
|
|
|
|
const DEFAULT_NUM_INPUTS: u32 = 2;
|
|
|
|
const DEFAULT_NUM_OUTPUTS: u32 = 2;
|
|
|
|
|
|
|
|
const ACCEPTS_MIDI: bool = false;
|
|
|
|
|
|
|
|
fn params(&self) -> Pin<&dyn Params> {
|
|
|
|
self.params.as_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accepts_bus_config(&self, config: &BusConfig) -> bool {
|
|
|
|
// We'll only do stereo for simplicity's sake
|
|
|
|
config.num_input_channels == config.num_output_channels && config.num_input_channels == 2
|
|
|
|
}
|
|
|
|
|
|
|
|
fn initialize(
|
|
|
|
&mut self,
|
|
|
|
_bus_config: &BusConfig,
|
|
|
|
_buffer_config: &BufferConfig,
|
|
|
|
context: &mut impl ProcessContext,
|
|
|
|
) -> bool {
|
|
|
|
context.set_latency_samples(self.stft.latency_samples());
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2022-03-08 10:42:58 +11:00
|
|
|
fn reset(&mut self) {
|
|
|
|
// Normally we'd also initialize the STFT helper for the correct channel count here, but we
|
|
|
|
// only do stereo so that's not necessary. Setting the block size also zeroes out the
|
|
|
|
// buffers.
|
|
|
|
self.stft.set_block_size(WINDOW_SIZE);
|
|
|
|
}
|
|
|
|
|
2022-03-06 12:07:53 +11:00
|
|
|
fn process(
|
|
|
|
&mut self,
|
|
|
|
buffer: &mut Buffer,
|
|
|
|
_context: &mut impl ProcessContext,
|
|
|
|
) -> ProcessStatus {
|
2022-03-07 05:07:46 +11:00
|
|
|
// Compensate for the window function, the overlap, and the extra gain introduced by the
|
|
|
|
// IDFT operation
|
2022-03-07 12:02:46 +11:00
|
|
|
const GAIN_COMPENSATION: f32 = f32::consts::E / OVERLAP_TIMES as f32 / WINDOW_SIZE as f32;
|
2022-03-07 03:54:23 +11:00
|
|
|
|
2022-03-07 01:28:44 +11:00
|
|
|
self.stft.process_overlap_add(
|
|
|
|
buffer,
|
|
|
|
&self.window_function,
|
|
|
|
OVERLAP_TIMES,
|
2022-03-07 08:26:37 +11:00
|
|
|
|_channel_idx, real_fft_scratch_buffer| {
|
2022-03-07 03:54:23 +11:00
|
|
|
// Forward FFT, the helper has already applied window function
|
|
|
|
self.plan
|
|
|
|
.r2c_plan
|
|
|
|
.r2c(
|
|
|
|
real_fft_scratch_buffer,
|
|
|
|
&mut self.complex_fft_scratch_buffer,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// As per the convolution theorem we can simply multiply these two buffers. We'll
|
|
|
|
// also apply the gain compensation at this point.
|
|
|
|
for (fft_bin, kernel_bin) in self
|
|
|
|
.complex_fft_scratch_buffer
|
|
|
|
.as_slice_mut()
|
|
|
|
.iter_mut()
|
|
|
|
.zip(&self.lp_filter_kernel)
|
|
|
|
{
|
|
|
|
*fft_bin *= *kernel_bin * GAIN_COMPENSATION;
|
2022-03-07 01:33:16 +11:00
|
|
|
}
|
2022-03-07 03:54:23 +11:00
|
|
|
|
|
|
|
// Inverse FFT back into the scratch buffer. This will be added to a ring buffer
|
|
|
|
// which gets written back to the host at a one block delay.
|
|
|
|
self.plan
|
|
|
|
.c2r_plan
|
|
|
|
.c2r(
|
|
|
|
&mut self.complex_fft_scratch_buffer,
|
|
|
|
real_fft_scratch_buffer,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2022-03-07 01:28:44 +11:00
|
|
|
},
|
|
|
|
);
|
2022-03-06 12:07:53 +11:00
|
|
|
|
|
|
|
ProcessStatus::Normal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ClapPlugin for Stft {
|
|
|
|
const CLAP_ID: &'static str = "com.moist-plugins-gmbh.stft";
|
|
|
|
const CLAP_DESCRIPTION: &'static str = "An example plugin using the STFT helper";
|
|
|
|
const CLAP_FEATURES: &'static [&'static str] = &["audio_effect", "stereo", "tool"];
|
|
|
|
const CLAP_MANUAL_URL: &'static str = Self::URL;
|
|
|
|
const CLAP_SUPPORT_URL: &'static str = Self::URL;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Vst3Plugin for Stft {
|
|
|
|
const VST3_CLASS_ID: [u8; 16] = *b"StftMoistestPlug";
|
|
|
|
const VST3_CATEGORIES: &'static str = "Fx|Tools";
|
|
|
|
}
|
|
|
|
|
|
|
|
nih_export_clap!(Stft);
|
|
|
|
nih_export_vst3!(Stft);
|