# HG changeset patch # User Chris Cannam # Date 1445508383 -3600 # Node ID 0a743c2dac6aa0eaa093d5291c697e51eac1035e # Parent 25db325b6cf956af1e97ba14b3c8ec8fc76c83eb Let's be even more slack about that one diff -r 25db325b6cf9 -r 0a743c2dac6a Chordino.cpp --- a/Chordino.cpp Thu Oct 22 11:03:13 2015 +0100 +++ b/Chordino.cpp Thu Oct 22 11:06:23 2015 +0100 @@ -501,12 +501,12 @@ } if (iChord == nChord-1) tempchordvalue *= .7; if (tempchordvalue < 0) tempchordvalue = 0.0; - if (tempchordvalue > 40.0) { + if (tempchordvalue > 200.0) { if (!clipwarned) { cerr << "WARNING: interim chroma contains extreme chord value " << tempchordvalue << ", clipping this and any others that appear" << endl; clipwarned = true; } - tempchordvalue = 40.0; + tempchordvalue = 200.0; } tempchordvalue = pow(1.3, tempchordvalue); sumchordvalue += tempchordvalue;