Mercurial > hg > pyin
comparison PYinVamp.cpp @ 73:062f0e491877 tony tony_v0.6
reduced low amp to 0.1 by default
author | matthiasm |
---|---|
date | Mon, 16 Jun 2014 11:47:18 +0100 |
parents | fa3a2dbd09a3 |
children | 4cbbd87a8c7f |
comparison
equal
deleted
inserted
replaced
72:fa3a2dbd09a3 | 73:062f0e491877 |
---|---|
44 m_oSmoothedPitchTrack(0), | 44 m_oSmoothedPitchTrack(0), |
45 m_oNotes(0), | 45 m_oNotes(0), |
46 m_threshDistr(2.0f), | 46 m_threshDistr(2.0f), |
47 m_outputUnvoiced(0.0f), | 47 m_outputUnvoiced(0.0f), |
48 m_preciseTime(0.0f), | 48 m_preciseTime(0.0f), |
49 m_lowAmp(0.2), | 49 m_lowAmp(0.1), |
50 m_pitchProb(0), | 50 m_pitchProb(0), |
51 m_timestamp(0) | 51 m_timestamp(0) |
52 { | 52 { |
53 } | 53 } |
54 | 54 |
182 d.name = "Suppress low amplitude pitch estimates."; | 182 d.name = "Suppress low amplitude pitch estimates."; |
183 d.description = "."; | 183 d.description = "."; |
184 d.unit = ""; | 184 d.unit = ""; |
185 d.minValue = 0.0f; | 185 d.minValue = 0.0f; |
186 d.maxValue = 1.0f; | 186 d.maxValue = 1.0f; |
187 d.defaultValue = 0.2f; | 187 d.defaultValue = 0.1f; |
188 d.isQuantized = false; | 188 d.isQuantized = false; |
189 list.push_back(d); | 189 list.push_back(d); |
190 | 190 |
191 return list; | 191 return list; |
192 } | 192 } |