# HG changeset patch # User atmos4 # Date 1024183918 0 # Node ID 61d750b7a9896a7ea1be061b2b9d12f5222ebc9a # Parent a2eb6f5198551954a4bf72ec96fa6d0822e4d771 Remove unportable lround and maybe speed up rounding a bit. Anders: please check if this is correct. diff -r a2eb6f519855 -r 61d750b7a989 libao2/pl_eq.c --- a/libao2/pl_eq.c Sat Jun 15 19:47:10 2002 +0000 +++ b/libao2/pl_eq.c Sat Jun 15 23:31:58 2002 +0000 @@ -94,11 +94,11 @@ double th=2*3.141592654*fc; double C=(1 - tan(th*q/2))/(1 + tan(th*q/2)); - a[0] = (int16_t)lround( 16383.0 * (1 + C) * cos(th)); - a[1] = (int16_t)lround(-16383.0 * C); + a[0] = (int16_t)( 16383.0 * (1 + C) * cos(th) + 0.5); + a[1] = (int16_t)(-16383.0 * C + 0.5); - b[0] = (int16_t)lround(-16383.0 * (C - 1)/2); - b[1] = (int16_t)lround(-16383.0 * 1.0050); + b[0] = (int16_t)(-16383.0 * (C - 1)/2 + 0.5); + b[1] = (int16_t)(-16383.0 * 1.0050 + 0.5); } // empty buffers