source: tests/src/io/test-source_multi.c @ 986131d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 986131d was 986131d, checked in by Eduard Müller <mueller.eduard@googlemail.com>, 7 years ago

Intel IPP support for aubio

See emuell/aubio/ intel_ipp2 for details please

  • Property mode set to 100644
File size: 1.8 KB
Line 
1#include <aubio.h>
2#include "utils_tests.h"
3
4int main (int argc, char **argv)
5{
6  aubio_init();
7
8  sint_t err = 0;
9  if (argc < 2) {
10    err = -2;
11    PRINT_ERR("not enough arguments\n");
12    PRINT_MSG("read a wave file as a mono vector\n");
13    PRINT_MSG("usage: %s <source_path> [samplerate] [hop_size]\n", argv[0]);
14    PRINT_MSG("examples:\n");
15    PRINT_MSG(" - read file.wav at original samplerate\n");
16    PRINT_MSG("       %s file.wav\n", argv[0]);
17    PRINT_MSG(" - read file.wav at 32000Hz\n");
18    PRINT_MSG("       %s file.aif 32000\n", argv[0]);
19    PRINT_MSG(" - read file.wav at original samplerate with 4096 blocks\n");
20    PRINT_MSG("       %s file.wav 0 4096 \n", argv[0]);
21    PRINT_MSG(" - read file.wav at original samplerate with 256 frames blocks, mono\n");
22    PRINT_MSG("       %s file.wav 0 4096 1\n", argv[0]);
23    return err;
24  }
25
26  uint_t samplerate = 0;
27  uint_t hop_size = 256;
28  uint_t n_frames = 0, read = 0;
29  uint_t n_channels = 0;
30  if ( argc >= 3 ) samplerate = atoi(argv[2]);
31  if ( argc >= 4 ) hop_size   = atoi(argv[3]);
32  if ( argc >= 5 ) n_channels = atoi(argv[4]);
33
34  char_t *source_path = argv[1];
35
36  aubio_source_t* s = new_aubio_source(source_path, samplerate, hop_size);
37  if (!s) { err = -1; goto beach; }
38
39  if ( samplerate == 0 ) samplerate = aubio_source_get_samplerate(s);
40
41  if ( n_channels == 0 ) n_channels = aubio_source_get_channels(s);
42
43  fmat_t *mat = new_fmat(n_channels, hop_size);
44
45  do {
46    aubio_source_do_multi (s, mat, &read);
47    fmat_print (mat);
48    n_frames += read;
49  } while ( read == hop_size );
50
51  PRINT_MSG("read %d frames in %d channels at %dHz (%d blocks) from %s\n",
52      n_frames, n_channels, samplerate, n_frames / hop_size, source_path);
53
54  del_fmat (mat);
55  del_aubio_source (s);
56beach:
57
58  aubio_cleanup();
59 
60  return err;
61}
Note: See TracBrowser for help on using the repository browser.