Skip to content

Commit

Permalink
tests/varispeed_test.c : Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Sep 28, 2012
1 parent f4e2bc3 commit 756dc2c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2012-09-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>

* tests/varispeed_test.c
FIx compile error.

2012-08-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>

* src/common.h src/samplerate.c
Expand Down
8 changes: 8 additions & 0 deletions tests/varispeed_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
Expand All @@ -25,6 +27,12 @@

#include "util.h"

#if HAVE_FFTW3
#include <fftw3.h>
#else
#define fftw_cleanup()
#endif

#define BUFFER_LEN (1 << 16)

static void varispeed_test (int converter, double target_snr) ;
Expand Down

0 comments on commit 756dc2c

Please sign in to comment.