浏览代码

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);

正在加载...
取消
保存