[Libxtract-commits] SF.net SVN: libxtract: [77] trunk/src/vector.c
Status: Alpha
Brought to you by:
postlude
From: <dan...@us...> - 2007-04-04 10:26:01
|
Revision: 77 http://libxtract.svn.sourceforge.net/libxtract/?rev=77&view=rev Author: danstowell Date: 2007-04-04 03:25:47 -0700 (Wed, 04 Apr 2007) Log Message: ----------- Small changes thanks to compiler warnings (no change to behaviour) Modified Paths: -------------- trunk/src/vector.c Modified: trunk/src/vector.c =================================================================== --- trunk/src/vector.c 2007-03-20 07:57:56 UTC (rev 76) +++ trunk/src/vector.c 2007-04-04 10:25:47 UTC (rev 77) @@ -182,7 +182,6 @@ int xtract_mfcc(const float *data, const int N, const void *argv, float *result){ xtract_mel_filter *f; - size_t bytes; int n, filter; f = (xtract_mel_filter *)argv; @@ -205,10 +204,9 @@ int xtract_dct(const float *data, const int N, const void *argv, float *result){ fftwf_plan plan; - size_t bytes; plan = - fftwf_plan_r2r_1d(N, data, result, FFTW_REDFT00, FFTW_ESTIMATE); + fftwf_plan_r2r_1d(N, (float *) data, result, FFTW_REDFT00, FFTW_ESTIMATE); fftwf_execute(plan); fftwf_destroy_plan(plan); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |