You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
4.6 KiB
144 lines
4.6 KiB
4 years ago
|
/* SerialManager_FreqShift_OA.h
|
||
|
* Demonstrate frequency shifting via frequency domain processing.
|
||
|
*
|
||
|
* Created: Chip Audette (OpenAudio) Aug 2019
|
||
|
* Built for the Tympan library for Teensy 3.6-based hardware
|
||
|
*
|
||
|
* Convert to Open Audio Bob Larkin June 2020
|
||
|
*
|
||
|
* MIT License. Use at your own risk.
|
||
|
*/
|
||
|
|
||
|
#include "AudioEffectFreqShiftFD_OA_F32.h"
|
||
|
|
||
|
void AudioEffectFreqShiftFD_OA_F32::update(void)
|
||
|
{
|
||
|
//get a pointer to the latest data
|
||
|
audio_block_f32_t *in_audio_block = AudioStream_F32::receiveReadOnly_f32();
|
||
|
if (!in_audio_block) return;
|
||
|
|
||
|
//simply return the audio if this class hasn't been enabled
|
||
|
if (!enabled) {
|
||
|
AudioStream_F32::transmit(in_audio_block);
|
||
|
AudioStream_F32::release(in_audio_block);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
//convert to frequency domain
|
||
|
//FFT is in complex_2N_buffer, interleaved real, imaginary, real, imaginary, etc
|
||
|
myFFT.execute(in_audio_block, complex_2N_buffer);
|
||
|
unsigned long incoming_id = in_audio_block->id;
|
||
|
// We just passed ownership of in_audio_block to myFFT, so we can
|
||
|
// release it here as we won't use it here again.
|
||
|
AudioStream_F32::release(in_audio_block);
|
||
|
|
||
|
// ////////////// Do your processing here!!!
|
||
|
|
||
|
//define some variables
|
||
|
int fftSize = myFFT.getNFFT();
|
||
|
int N_2 = fftSize / 2 + 1;
|
||
|
int source_ind; // neg_dest_ind;
|
||
|
|
||
|
//zero out DC and Nyquist
|
||
|
//complex_2N_buffer[0] = 0.0; complex_2N_buffer[1] = 0.0;
|
||
|
//complex_2N_buffer[N_2] = 0.0; complex_2N_buffer[N_2] = 0.0;
|
||
|
|
||
|
//do the shifting
|
||
|
if (shift_bins < 0) {
|
||
|
for (int dest_ind=0; dest_ind < N_2; dest_ind++) {
|
||
|
source_ind = dest_ind - shift_bins;
|
||
|
if (source_ind < N_2) {
|
||
|
complex_2N_buffer[2 * dest_ind] = complex_2N_buffer[2 * source_ind]; //real
|
||
|
complex_2N_buffer[(2 * dest_ind) + 1] = complex_2N_buffer[(2 * source_ind) + 1]; //imaginary
|
||
|
} else {
|
||
|
complex_2N_buffer[2 * dest_ind] = 0.0;
|
||
|
complex_2N_buffer[(2 * dest_ind) + 1] = 0.0;
|
||
|
}
|
||
|
}
|
||
|
} else if (shift_bins > 0) {
|
||
|
//do reverse order because, otherwise, we'd overwrite our source indices with zeros!
|
||
|
for (int dest_ind=N_2-1; dest_ind >= 0; dest_ind--) {
|
||
|
source_ind = dest_ind - shift_bins;
|
||
|
if (source_ind >= 0) {
|
||
|
complex_2N_buffer[2 * dest_ind] = complex_2N_buffer[2 * source_ind]; //real
|
||
|
complex_2N_buffer[(2 * dest_ind) + 1] = complex_2N_buffer[(2 * source_ind) +1]; //imaginary
|
||
|
} else {
|
||
|
complex_2N_buffer[2 * dest_ind] = 0.0;
|
||
|
complex_2N_buffer[(2 * dest_ind) + 1] = 0.0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//here's the tricky bit! If the phase shift is an odd number of bins, we must manually evolve the phase through time
|
||
|
if ((abs(shift_bins) % 2) == 1) {
|
||
|
switch (overlap_amount) {
|
||
|
case NONE:
|
||
|
//no phase change needed
|
||
|
break;
|
||
|
case HALF:
|
||
|
//alternate adding 180 deg...which is flipping the sign
|
||
|
overlap_block_counter++;
|
||
|
if (overlap_block_counter == 2){
|
||
|
overlap_block_counter = 0;
|
||
|
for (int i=0; i < N_2; i++) {
|
||
|
complex_2N_buffer[2*i] = -complex_2N_buffer[2*i];
|
||
|
complex_2N_buffer[2*i+1] = -complex_2N_buffer[2*i+1];
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
case THREE_QUARTERS:
|
||
|
overlap_block_counter++; //will be 1 to 4
|
||
|
float foo;
|
||
|
switch (overlap_block_counter) {
|
||
|
case 1:
|
||
|
//no rotation
|
||
|
break;
|
||
|
case 2:
|
||
|
//90 deg
|
||
|
for (int i=0; i < N_2; i++) {
|
||
|
foo = complex_2N_buffer[2*i+1];
|
||
|
complex_2N_buffer[2*i+1] = complex_2N_buffer[2*i];
|
||
|
complex_2N_buffer[2*i] = -foo;
|
||
|
}
|
||
|
break;
|
||
|
case 3:
|
||
|
//180 deg
|
||
|
for (int i=0; i < N_2; i++) {
|
||
|
complex_2N_buffer[2*i] = -complex_2N_buffer[2*i];
|
||
|
complex_2N_buffer[2*i+1] = -complex_2N_buffer[2*i+1];
|
||
|
}
|
||
|
break;
|
||
|
case 4:
|
||
|
//270 deg
|
||
|
for (int i=0; i < N_2; i++) {
|
||
|
foo = complex_2N_buffer[2*i+1];
|
||
|
complex_2N_buffer[2*i+1] = -complex_2N_buffer[2*i];
|
||
|
complex_2N_buffer[2*i] = foo;
|
||
|
}
|
||
|
overlap_block_counter = 0;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//zero out the new DC and new nyquist
|
||
|
//complex_2N_buffer[0] = 0.0; complex_2N_buffer[1] = 0.0;
|
||
|
//complex_2N_buffer[N_2] = 0.0; complex_2N_buffer[N_2] = 0.0;
|
||
|
|
||
|
//rebuild the negative frequency space
|
||
|
myFFT.rebuildNegativeFrequencySpace(complex_2N_buffer); //set the negative frequency space based on the positive
|
||
|
|
||
|
// ///////////// End do your processing here
|
||
|
|
||
|
//call the IFFT
|
||
|
audio_block_f32_t *out_audio_block = myIFFT.execute(complex_2N_buffer); //out_block is pre-allocated in here.
|
||
|
|
||
|
//update the block number to match the incoming one
|
||
|
out_audio_block->id = incoming_id;
|
||
|
|
||
|
//send the returned audio block. Don't issue the release command here because myIFFT will re-use it
|
||
|
AudioStream_F32::transmit(out_audio_block); //don't release this buffer because myIFFT re-uses it within its own code
|
||
|
return;
|
||
|
};
|