1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-20 00:11:38 +02:00

Name semantics

This commit is contained in:
oparviai 2009-01-25 13:41:18 +00:00
parent 327906e23b
commit f7a0143374

View File

@ -276,7 +276,7 @@ int main(const int nParams, const char *paramStr[])
WavInFile *inFile;
WavOutFile *outFile;
RunParameters *params;
SoundTouch SoundTouch;
SoundTouch soundTouch;
fprintf(stderr, _helloText, SoundTouch::getVersionString());
@ -296,10 +296,10 @@ int main(const int nParams, const char *paramStr[])
}
// Setup the 'SoundTouch' object for processing the sound
setup(&SoundTouch, inFile, params);
setup(&soundTouch, inFile, params);
// Process the sound
process(&SoundTouch, inFile, outFile);
process(&soundTouch, inFile, outFile);
// Close WAV file handles & dispose of the objects
delete inFile;