I've implemented an 13 band EQ using EQ10Q filters. Doing some measurements with the smaartV7 software I realized that my bands were overlapping each other giving an extra undesired gain. I think this is because I was applying every filter over the same buffer (series). So the solution I was thinking is use 13 buffers in stereo 32 bit PCM format with same original data. I'm going to apply one filter to each buffer and then merge all the buffers (parallel). So I have some doubts.
Is my approach correct?
How should I merge the buffers? (I tried sum all the samples and then dividing the result by 13 but the filter gain is reduced a lot with this method).
NOTE: I don't want to modify the Q Factor of my filters.