MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ GrainTaper

Per-grain taper applied before accumulation in OLA reconstruction.

Receives a mutable span covering exactly one grain's samples for one channel. Applied in-place before the grain is added to the output buffer. Pass {} or nullptr to skip tapering entirely.

Common use: [](std::span<double> g){ Kinesis::Discrete::apply_hann(g); } [](std::span<double> g){ Kinesis::Discrete::apply_trapezoid(g, g.size() / 8); }

Definition at line 87 of file GranularWorkflow.hpp.