Mercurial > hg > qm-dsp
comparison dsp/chromagram/ConstantQ.h @ 499:af5b7ef02aa7
Style fixes: avoid unsigned, fix formatting
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 03 Jun 2019 14:20:39 +0100 |
parents | 1bea13b8f951 |
children |
comparison
equal
deleted
inserted
replaced
498:8b92623e81c9 | 499:af5b7ef02aa7 |
---|---|
22 | 22 |
23 struct CQConfig { | 23 struct CQConfig { |
24 double FS; // samplerate | 24 double FS; // samplerate |
25 double min; // minimum frequency | 25 double min; // minimum frequency |
26 double max; // maximum frequency | 26 double max; // maximum frequency |
27 unsigned int BPO; // bins per octave | 27 int BPO; // bins per octave |
28 double CQThresh; // threshold | 28 double CQThresh; // threshold |
29 }; | 29 }; |
30 | 30 |
31 class ConstantQ | 31 class ConstantQ |
32 { | 32 { |