[Libxtract-commits] SF.net SVN: libxtract: [64] trunk
Status: Alpha
Brought to you by:
postlude
From: <pos...@us...> - 2007-02-15 10:48:43
|
Revision: 64 http://libxtract.svn.sourceforge.net/libxtract/?rev=64&view=rev Author: postlude Date: 2007-02-15 02:48:41 -0800 (Thu, 15 Feb 2007) Log Message: ----------- Removed '//' comments Modified Paths: -------------- trunk/TODO trunk/src/scalar.c Modified: trunk/TODO =================================================================== --- trunk/TODO 2007-02-15 10:44:28 UTC (rev 63) +++ trunk/TODO 2007-02-15 10:48:41 UTC (rev 64) @@ -1,3 +1,4 @@ +Rationalise use of powf etc. vs pow Add spectral_flux Add geometric_mean Add spectral_mean, spectral_deviation, spectral_geometric_mean etc. Modified: trunk/src/scalar.c =================================================================== --- trunk/src/scalar.c 2007-02-15 10:44:28 UTC (rev 63) +++ trunk/src/scalar.c 2007-02-15 10:48:41 UTC (rev 64) @@ -53,8 +53,7 @@ int xtract_standard_deviation(const float *data, const int N, const void *argv, float *result){ - //*result = sqrt(*(float *)argv); - *result = sqrt(-40.); + *result = sqrt(*(float *)argv); return XTRACT_SUCCESS; } @@ -451,7 +450,6 @@ sfmdb = sfm / -60.f; *result = XTRACT_MIN(sfmdb, 1); - //*result = sfmdb; return XTRACT_SUCCESS; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |