Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/io/test-sink.c

    rd67a08e rb429b68  
    99    err = 2;
    1010    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]);
    1212    return err;
    1313  }
    1414
     15  uint_t samplerate = 44100;
     16  uint_t hop_size = 512;
     17  uint_t n_frames = 0, read = 0;
     18
    1519  char_t *source_path = argv[1];
    1620  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]);
    2722
    2823  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);
    3027
    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; }
    4029
    4130  do {
     
    4534  } while ( read == hop_size );
    4635
    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);
    5038
     39beach:
     40  del_aubio_source(i);
    5141  del_aubio_sink(o);
    52 beach_sink:
    53   del_aubio_source(i);
    54 beach_source:
    5542  del_fvec(vec);
    56 beach_fvec:
    5743  return err;
    5844}
Note: See TracChangeset for help on using the changeset viewer.