C/C++
cpro1101.txt
Associated article: Delivery Woes and Music Minus Whatever
Tags: C/C++
Published source code accompanying the article by Al Stevens in which he examines programming issues related to a specific DSP audio problem. Also see CPRO1101.ZIP.
C Programming
by Al Stevens
Example 1:
for (int i = 0; i < numSamples; i+= 2) {
short int s = *(buffer+i);
*(buffer+i) -= *(buffer+i+1);
*(buffer+i+1) -= s;
}
Example 2:
for (int i = 0; i < numSamples; i+= 2)
if (removingleft)
*(buffer+i) = *(buffer+...


