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