Hello there, I'm developing an OpenAL application using STK to generate and process my data, but I'm having trouble figuring out how to apply a filter. Take the following piece of code for example, using a generator to fill an array of pcm data.
<br><br>for(int time=0; time<length; time+=1)<br> pcmdata[i] = A * generator.tick();<br><br>For arguements sake, lets say this data is sometimes supplied by an external PCM file, so I'm not always going to be using a generator.
<br><br>My question is would it be possible to apply say a 1-pole lp filter to this data?<br><br>- Mick<br>