# Overlap-Add Method Question

**URL:** https://forum.juce.com/t/overlap-add-method-question/22299
**Category:** Audio Plugins
**Created:** [May 8, 2017, 12:56am UTC](https://forum.juce.com/t/overlap-add-method-question/22299 "2017-05-08T00:56:56Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![mUmbler](https://avatars.discourse-cdn.com/v4/letter/m/b19c9b/32.png) [@mUmbler](https://forum.juce.com/u/mUmbler)
#### Post date: [May 8, 2017, 12:56am UTC](https://forum.juce.com/t/overlap-add-method-question/22299/1 "2017-05-08T00:56:56Z")

</div>

Hello!

So I am back again with my real time convolution plugin. I implemented the convolution, add my convoluted samples to a FIFO using the abstractFifo class as suggested, and it worked! There was only one problem, a ton of aliasing was present. I was told to use the overlap-add method on my FIFO to overcome this problem. Is this a good way to handle my aliasing, or could be problem stem from something math related?

---

<div class="post-metadata">

### Author: ![PluginPenguin](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.juce.com/pluginpenguin/32/10203_2.png) [@PluginPenguin](https://forum.juce.com/u/PluginPenguin)
#### Post date: [May 12, 2017, 8:16am UTC](https://forum.juce.com/t/overlap-add-method-question/22299/2 "2017-05-12T08:16:31Z")

</div>

I’m not exactly sure if you need help understanding the mathematical background of the overlap-add method or if the idea of the overlap-add method is clear to you and you just need help implementing it.

If you need help understanding the background, I would like to propose this PHD to you:  
[http://publications.rwth-aachen.de/record/466561/files/466561.pdf?subformat=pdfa](http://publications.rwth-aachen.de/record/466561/files/466561.pdf?subformat=pdfa)

I compared some approaches of FPGA- and CPU-based real-time convolution in my bachelor thesis last year and this document helped me a lot understanding the different approaches of real-time convolution algorithms.

By the way, I implemented a non-JUCE-based convolution algorithm written in C++ using the overlap-save method, which I personally prefer some time ago. But it’s up to you to check which approach suits better to your needs…
