X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Ffreeverb%2FComponents%2Fdenormals.h;h=78285c46aa36f9929d70e3c4f49beae5060c5a2e;hb=bd0694fcee6080ec61e243ac6f278be5a48d564b;hp=a6d599a665c0e3bc8dd665322144e389dd2f9973;hpb=e13e0a987ad66b8274fcbaddc71eac583ea80bea;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/freeverb/Components/denormals.h b/cinelerra-5.1/plugins/freeverb/Components/denormals.h index a6d599a6..78285c46 100644 --- a/cinelerra-5.1/plugins/freeverb/Components/denormals.h +++ b/cinelerra-5.1/plugins/freeverb/Components/denormals.h @@ -17,7 +17,7 @@ static inline void undenormalise(float &sample) { union { float f; unsigned int u; } v; v.f = sample; if( !(v.u & 0x7f800000) ) sample=0.f; } - + #endif//_denormals_ //ends