ソースを参照

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

読み込み中…
キャンセル
保存