ERIS CORE

◆ apply_window_to_fft_buffer_f32()

static void apply_window_to_fft_buffer_f32 ( float32_t *  buffer,
const float32_t *  window 
)
static

Definition at line 124 of file eris_analyze_fft1024.cpp.

125 {
126  float32_t *buf = (float32_t *)buffer;
127  const float32_t *win = (float32_t *)window;;
128 
129  for (int16_t i=0; i < 1024; i++) {
130  *buf++ *= *win++;
131  }
132 
133 }

Referenced by erisAudioAnalyzeFFT1024::analyze().

+ Here is the caller graph for this function: