tests/src: include stdio.h as needed, add HAVE_LIBSAMPLERATE
authorPaul Brossier <piem@piem.org>
Thu, 1 Oct 2009 06:22:29 +0000 (08:22 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 1 Oct 2009 06:22:29 +0000 (08:22 +0200)
tests/src/test-beattracking.c
tests/src/test-resample.c
tests/src/test-tempo.c
tests/src/test-tss.c

index 2812a3b0f9fabd6fffff822841374d0a7ce4c663..a14f30426a502c07306fec1fbdc0173155dfec3f 100644 (file)
@@ -1,3 +1,4 @@
+#include <stdio.h>
 #include <aubio.h>
 
 int main(){
index 48a5055257a4c1c2fe6d6eed5743f4ff3c0f1e13..598f05b52a73deaef6067ef16615630bf54cd13d 100644 (file)
@@ -1,6 +1,7 @@
 #include <aubio.h>
 
 int main(){
+#if HAVE_LIBSAMPLERATE
         /* allocate some memory */
         uint_t win_s      = 1024;                       /* window size */
         uint_t channels   = 1;                          /* number of channel */
@@ -19,5 +20,6 @@ int main(){
         del_fvec(in);
         del_fvec(out);
 
+#endif /* HAVE_LIBSAMPLERATE */
         return 0;
 }
index 19abf6815d047f355af90e0193c2b75e8c7a12fc..0b7133322ced06fa8627baf4b86a9bb08d50ff78 100644 (file)
@@ -1,3 +1,4 @@
+#include <stdio.h>
 #include <aubio.h>
 
 int main(){
index a9cc335ee265640e52a4c151397be5e3b375999f..4e8bd4ce9e38f4ca84599fc330c9c0eb79e77148 100644 (file)
@@ -5,6 +5,7 @@
  * a delay equal to the window size, hop_s.
  */
 
+#include <stdio.h>
 #include <aubio.h>
 
 int main(){