瀏覽代碼

Add TODO for analyze peak optimization

dds
PaulStoffregen 8 年之前
父節點
當前提交
0af537f2ca
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      analyze_peak.cpp

+ 2
- 0
analyze_peak.cpp 查看文件

@@ -42,6 +42,8 @@ void AudioAnalyzePeak::update(void)
max = max_sample;
do {
int16_t d=*p++;
// TODO: can we speed this up with SSUB16 and SEL
// http://www.m4-unleashed.com/parallel-comparison/
if (d<min) min=d;
if (d>max) max=d;
} while (p < end);

Loading…
取消
儲存