Changes in / [af27265:eadd8d5]
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink_sndfile.c
raf27265 readd8d5 71 71 /* show libsndfile err msg */ 72 72 AUBIO_ERR("Failed opening %s. %s\n", s->path, sf_strerror (NULL)); 73 AUBIO_FREE(s);74 73 return NULL; 75 74 } … … 80 79 AUBIO_ERR("%d x %d exceeds maximum aubio_sink_sndfile buffer size %d\n", 81 80 s->max_size, s->channels, MAX_CHANNELS * MAX_CHANNELS); 82 AUBIO_FREE(s);83 81 return NULL; 84 82 } -
tests/src/io/test-sink.c
raf27265 readd8d5 9 9 err = 2; 10 10 PRINT_ERR("not enough arguments\n"); 11 PRINT_MSG("usage: %s <input_path> <output_path> [samplerate] [hop_size]\n", argv[0]);11 PRINT_MSG("usage: %s <input_path> <output_path> [samplerate]\n", argv[0]); 12 12 return err; 13 13 } 14 14 15 uint_t samplerate = 44100; 16 uint_t hop_size = 512; 17 uint_t n_frames = 0, read = 0; 18 15 19 char_t *source_path = argv[1]; 16 20 char_t *sink_path = argv[2]; 17 18 uint_t samplerate = 0; 19 uint_t hop_size = 256; 20 if ( argc >= 4 ) samplerate = atoi(argv[3]); 21 if ( argc >= 5 ) hop_size = atoi(argv[4]); 22 if ( argc >= 6 ) { 23 err = 2; 24 PRINT_ERR("too many arguments\n"); 25 return err; 26 } 21 if ( argc == 4 ) samplerate = atoi(argv[3]); 27 22 28 23 fvec_t *vec = new_fvec(hop_size); 29 if (!vec) { err = 1; goto beach_fvec; } 24 aubio_source_t *i = new_aubio_source(source_path, samplerate, hop_size); 25 if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(i); 26 aubio_sink_t *o = new_aubio_sink(sink_path, samplerate); 30 27 31 aubio_source_t *i = new_aubio_source(source_path, samplerate, hop_size); 32 if (!i) { err = 1; goto beach_source; } 33 34 if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(i); 35 36 aubio_sink_t *o = new_aubio_sink(sink_path, samplerate); 37 if (!o) { err = 1; goto beach_sink; } 38 39 uint_t n_frames = 0, read = 0; 28 if (!i || !o) { err = 1; goto beach; } 40 29 41 30 do { … … 45 34 } while ( read == hop_size ); 46 35 47 PRINT_MSG("read %d frames at %dHz (%d blocks) from %s written to %s\n", 48 n_frames, samplerate, n_frames / hop_size, 49 source_path, sink_path); 36 PRINT_MSG("wrote %d frames at %dHz from %s written to %s\n", 37 n_frames, samplerate, source_path, sink_path); 50 38 39 beach: 40 del_aubio_source(i); 51 41 del_aubio_sink(o); 52 beach_sink:53 del_aubio_source(i);54 beach_source:55 42 del_fvec(vec); 56 beach_fvec:57 43 return err; 58 44 }
Note: See TracChangeset
for help on using the changeset viewer.