head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.07.22.15.24.33; author ryoon; state Exp; branches; next ; commitid fD9LRDeghzlQ9FOG; desc @@ 1.1 log @audio/tenacity: import tenacity-1.3.5 Tenacity is an easy-to-use multi-track audio editor and recorder for Windows, macOS, Linux and other operating systems. It is built on top of the widely popular Audacity and is being developed by a wide, diverse group of volunteers. @ text @$NetBSD$ --- src/effects/Compressor2.cpp.orig 2026-03-08 15:09:15.602352465 +0000 +++ src/effects/Compressor2.cpp @@@@ -1138,7 +1138,7 @@@@ double EffectCompressor2::CompressorGain(double env) // envDB can become NaN is env is exactly zero. // As solution, use a very low dB value to prevent NaN propagation. - if(isnan(envDB)) + if(std::isnan(envDB)) envDB = -200; kneeCond = 2.0 * (envDB - mThresholdDB); @