comparison dsp/chromagram/Chromagram.cpp @ 465:50a97c8d52ed

Apply fix from daschuer/mixxx:957aed58 : Use double precision for FS
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 29 May 2019 13:55:26 +0100
parents 7e8d1f26b098
children 46375e6d1b54
comparison
equal deleted inserted replaced
464:0076c66d2932 465:50a97c8d52ed
42 // Create Config Structure for ConstantQ operator 42 // Create Config Structure for ConstantQ operator
43 CQConfig ConstantQConfig; 43 CQConfig ConstantQConfig;
44 44
45 // Populate CQ config structure with parameters 45 // Populate CQ config structure with parameters
46 // inherited from the Chroma config 46 // inherited from the Chroma config
47 ConstantQConfig.FS = Config.FS; 47 ConstantQConfig.FS = Config.FS;
48 ConstantQConfig.min = m_FMin; 48 ConstantQConfig.min = m_FMin;
49 ConstantQConfig.max = m_FMax; 49 ConstantQConfig.max = m_FMax;
50 ConstantQConfig.BPO = m_BPO; 50 ConstantQConfig.BPO = m_BPO;
51 ConstantQConfig.CQThresh = Config.CQThresh; 51 ConstantQConfig.CQThresh = Config.CQThresh;
52 52