From d67a08ee153efd898209bb011424ae6647ddf35f Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 5 Dec 2013 21:26:27 -0500 Subject: [PATCH] tests/src/io/test-sink.c: add hop_size option, check all memory allocations --- tests/src/io/test-sink.c | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/tests/src/io/test-sink.c b/tests/src/io/test-sink.c index a47aa19e..f5220f49 100644 --- a/tests/src/io/test-sink.c +++ b/tests/src/io/test-sink.c @@ -8,24 +8,35 @@ int main (int argc, char **argv) if (argc < 3) { err = 2; PRINT_ERR("not enough arguments\n"); - PRINT_MSG("usage: %s [samplerate]\n", argv[0]); + PRINT_MSG("usage: %s [samplerate] [hop_size]\n", argv[0]); return err; } - uint_t samplerate = 44100; - uint_t hop_size = 512; - uint_t n_frames = 0, read = 0; - char_t *source_path = argv[1]; char_t *sink_path = argv[2]; - if ( argc == 4 ) samplerate = atoi(argv[3]); + + uint_t samplerate = 0; + uint_t hop_size = 256; + if ( argc >= 4 ) samplerate = atoi(argv[3]); + if ( argc >= 5 ) hop_size = atoi(argv[4]); + if ( argc >= 6 ) { + err = 2; + PRINT_ERR("too many arguments\n"); + return err; + } fvec_t *vec = new_fvec(hop_size); + if (!vec) { err = 1; goto beach_fvec; } + aubio_source_t *i = new_aubio_source(source_path, samplerate, hop_size); + if (!i) { err = 1; goto beach_source; } + if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(i); + aubio_sink_t *o = new_aubio_sink(sink_path, samplerate); + if (!o) { err = 1; goto beach_sink; } - if (!i || !o) { err = 1; goto beach; } + uint_t n_frames = 0, read = 0; do { aubio_source_do(i, vec, &read); @@ -33,12 +44,15 @@ int main (int argc, char **argv) n_frames += read; } while ( read == hop_size ); - PRINT_MSG("wrote %d frames at %dHz from %s written to %s\n", - n_frames, samplerate, source_path, sink_path); + PRINT_MSG("read %d frames at %dHz (%d blocks) from %s written to %s\n", + n_frames, samplerate, n_frames / hop_size, + source_path, sink_path); -beach: - del_aubio_source(i); del_aubio_sink(o); +beach_sink: + del_aubio_source(i); +beach_source: del_fvec(vec); +beach_fvec: return err; } -- 2.11.0