• Stars
    star
    296
  • Rank 140,041 (Top 3 %)
  • Language
    C++
  • License
    MIT License
  • Created over 11 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Audio convolution algorithm in C++ for real time audio processing

FFTConvolver

FFTConvolver is a C++ library for highly efficient convolution of audio data (e.g. for usage in real-time convolution reverbs etc.).

  • Partitioned convolution algorithm (using uniform block sizes)
  • Optional support for non-uniform block sizes (TwoStageFFTConvolver)
  • No external dependencies (FFT already included)
  • Optional optimization for SSE (enabled by defining FFTCONVOLVER_USE_SSE)