diff src/Modules/SSI/ModuleSSI.cc @ 36:74196ff1cb98

-Added debug symbols option for GCC -Fixed SSI bug - too early to try -1 for the other bits - oops again! -Added boost libraries to EC2 script
author tomwalters
date Fri, 26 Feb 2010 16:58:26 +0000
parents 9122efd2b227
children c5f5e9569863
line wrap: on
line diff
--- a/src/Modules/SSI/ModuleSSI.cc	Fri Feb 26 07:16:34 2010 +0000
+++ b/src/Modules/SSI/ModuleSSI.cc	Fri Feb 26 16:58:26 2010 +0000
@@ -193,10 +193,7 @@
         val = weight * (curr_sample
                         + frac_part * (next_sample - curr_sample));
       } else {
-        // Set out-of-range values to a negative number to signify that 
-        // they really don't exist, and shouldn't be used in feature
-        // calculations.
-        val = -1.0f;
+        val = 0.0f;
       }
       output_.set_sample(ch, i, val);
     }