ref: 48b6a524f0e7c0f0a83e5b7568901a68408820bc
parent: 24fde74ca116bdfc2d41e1aefee67305428f8d25
author: Paul Brossier <piem@piem.org>
date: Thu Nov 5 18:16:29 EST 2009
tests/src/test-resample.c: indent, no #ifdef here
--- a/tests/src/test-resample.c
+++ b/tests/src/test-resample.c
@@ -1,28 +1,26 @@
#include <stdio.h>
#include <aubio.h>
-int main(){
-#if HAVE_SAMPLERATE
- /* allocate some memory */
- uint_t win_s = 1024; /* window size */
- uint_t channels = 1; /* number of channel */
- smpl_t ratio = 0.5;
- fvec_t * in = new_fvec (win_s, channels); /* input buffer */
- fvec_t * out = new_fvec ((uint_t)(win_s*ratio), channels); /* input buffer */
- aubio_resampler_t * o = new_aubio_resampler(0.5, 0);
- uint_t i = 0;
+int
+main ()
+{
+ /* allocate some memory */
+ uint_t win_s = 1024; /* window size */
+ uint_t channels = 1; /* number of channel */
+ smpl_t ratio = 0.5;
+ fvec_t *in = new_fvec (win_s, channels); /* input buffer */
+ fvec_t *out = new_fvec ((uint_t) (win_s * ratio), channels); /* input buffer */
+ aubio_resampler_t *o = new_aubio_resampler (0.5, 0);
+ uint_t i = 0;
- while (i < 10) {
- aubio_resampler_do(o,in,out);
- i++;
- };
+ while (i < 10) {
+ aubio_resampler_do (o, in, out);
+ i++;
+ };
- del_aubio_resampler(o);
- del_fvec(in);
- del_fvec(out);
+ del_aubio_resampler (o);
+ del_fvec (in);
+ del_fvec (out);
-#else
- fprintf(stderr, "aubio_resampler_t not compiled in\n");
-#endif /* HAVE_SAMPLERATE */
- return 0;
+ return 0;
}