# HG changeset patch # User vitor # Date 1216869739 0 # Node ID 907d3376da9304e0e9f562b9a4e8bdcc9dc4ddcd # Parent d346c4da00bd0a0b77ed6cf85bc8372af80d2435 Simplify co(): write constant in a more readable way diff -r d346c4da00bd -r 907d3376da93 ra288.c --- a/ra288.c Thu Jul 24 03:19:52 2008 +0000 +++ b/ra288.c Thu Jul 24 03:22:19 2008 +0000 @@ -158,7 +158,7 @@ st2[x] = st2[x] * 0.5625 + buffer1[x]; out[x] = st2[x] + buffer2[x]; } - *out *= 1.00390625; /* to prevent clipping */ + *out *= 257./256.; /* to prevent clipping */ } static void update(Real288_internal *glob)