comparison projects/basic_FFT_phase_vocoder/render.cpp @ 251:cbf70fe3711b

Typo
author Giulio Moro <giuliomoro@yahoo.it>
date Thu, 28 Apr 2016 19:40:41 +0100
parents aec268b5d1b4
children ac8eb07afcf5
comparison
equal deleted inserted replaced
250:aec268b5d1b4 251:cbf70fe3711b
129 } 129 }
130 130
131 // Initialise auxiliary tasks 131 // Initialise auxiliary tasks
132 if((gFFTTask = BeagleRT_createAuxiliaryTask(&process_fft_background, 90, "fft-calculation")) == 0) 132 if((gFFTTask = BeagleRT_createAuxiliaryTask(&process_fft_background, 90, "fft-calculation")) == 0)
133 return false; 133 return false;
134 rt_printf("You are listening to an FFT phase-vocoder with overlap-and-add " 134 rt_printf("You are listening to an FFT phase-vocoder with overlap-and-add.\n"
135 "Use Midi Control Change to control:\n" 135 "Use Midi Control Change to control:\n"
136 "CC 2: effect type (bypass/robotization/whisperization)" 136 "CC 2: effect type (bypass/robotization/whisperization)\n"
137 "CC 3: mix between recorded sample and live audio input" 137 "CC 3: mix between recorded sample and live audio input\n"
138 "CC 4: mix between the unprocessed and processed sound" 138 "CC 4: mix between the unprocessed and processed sound\n"
139 "CC 5: gain" 139 "CC 5: gain\n"
140 ); 140 );
141 return true; 141 return true;
142 } 142 }
143 143
144 // This function handles the FFT processing in this example once the buffer has 144 // This function handles the FFT processing in this example once the buffer has