tests/src/io/test-sink.c: added simple test
authorPaul Brossier <piem@piem.org>
Sun, 15 Jul 2012 20:48:21 +0000 (14:48 -0600)
committerPaul Brossier <piem@piem.org>
Sun, 15 Jul 2012 20:48:21 +0000 (14:48 -0600)
tests/src/io/test-sink.c [new file with mode: 0644]

diff --git a/tests/src/io/test-sink.c b/tests/src/io/test-sink.c
new file mode 100644 (file)
index 0000000..cf57536
--- /dev/null
@@ -0,0 +1,30 @@
+#include <stdio.h>
+#include <aubio.h>
+#include "config.h"
+
+char_t *path = "/home/piem/archives/drum_Chocolate_Milk_-_Ation_Speaks_Louder_Than_Words.wav";
+char_t *outpath = "/var/tmp/test.wav";
+
+int main(){
+  int err = 0;
+  uint_t samplerate = 44100;
+  uint_t hop_size = 512;
+  uint_t read = hop_size;
+  fvec_t *vec = new_fvec(hop_size);
+  aubio_source_t * i = new_aubio_source(path, samplerate, hop_size);
+  aubio_sink_t *   o = new_aubio_sink(outpath, samplerate);
+
+  if (!i || !o) { err = -1; goto beach; }
+
+  while ( read == hop_size ) {
+    aubio_source_do(i, vec, &read);
+    aubio_sink_do(o, vec, read);
+  }
+
+beach:
+  del_aubio_source(i);
+  del_aubio_sink(o);
+  del_fvec(vec);
+  return err;
+}
+