Implementing simple high and low pass filters in C

前端 未结 2 1111
无人共我
无人共我 2021-02-02 03:05

Trying to use portaudio to record some data, then use an algorithmic filter to change the recorded voice and then play it back. I\'ve verified a lot of it (coming from example)

2条回答
  •  余生分开走
    2021-02-02 04:04

    The problem is that data.recordedSamples now (at the time of free()) points towards a structure allocated on the stack, not on the heap!

    Since you had this instruction:

    data.recordedSamples = filteredArray;
    

    The

    if( data.recordedSamples )
    

    is of no use, since the adress id valid, but not consistent: it is never allocated with malloc() and it is not on the heap, but on the stack!

    At the moment when you are calling free(), that adress could well point towards the stack of another function.

    Copy your filtered data back over the original recordedSamples if you want, just do not re-assign that pointer.

    edit:

    use this:

    for(i = 0; i

提交回复
热议问题