C/C++
cpro1201.txt
Associated article: C Programming: More Music Minus Whatever, Failures and Successes
Tags: Web Development C/C++ Design
Published source code accompanying the article by Al Stevens in which he continues development of his Music Minus Whatever project which lets you encode three discrete logical channels of music into one stereo audio file. Also see CPRO1201.ZIP.
C Programming Column
by Al Stevens
Listing One
for (int i = 0; i < numSamples; i+= 2) {
short int s = *(buffer+i);
*(buffer+i) -= *(buffer+i+1);
*(buffer+i+1) -= s;
}
Listing Two
for (int i = 0; i < numSamples; i+= 2) {
short int ...


