source: tests/src/io/test-source_apple_audio.c @ b429b68

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since b429b68 was 856ceb5, checked in by Paul Brossier <piem@piem.org>, 11 years ago

tests/src/io/: add comment about unstable

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[9ffcf83]1#define AUBIO_UNSTABLE 1
[301b807]2#include <aubio.h>
[248da64]3#include "utils_tests.h"
[301b807]4
[856ceb5]5// this file uses the unstable aubio api, please use aubio_source instead
6// see src/io/source.h and tests/src/source/test-source.c
7
[248da64]8int main (int argc, char **argv)
9{
10  uint_t err = 0;
11  if (argc < 2) {
12    err = 2;
13    PRINT_ERR("not enough arguments\n");
14    PRINT_MSG("usage: %s <source_path> [samplerate]\n", argv[0]);
15    return err;
16  }
[301b807]17
[248da64]18#if __APPLE__
[301b807]19  uint_t samplerate = 32000;
[248da64]20  uint_t hop_size = 256;
21  uint_t n_frames = 0, read = 0;
22  if ( argc == 3 ) samplerate = atoi(argv[2]);
23
24  char_t *source_path = argv[1];
25
[301b807]26  fvec_t *vec = new_fvec(hop_size);
[248da64]27  aubio_source_apple_audio_t * s = new_aubio_source_apple_audio(source_path, samplerate, hop_size);
28  if (samplerate == 0 ) samplerate = aubio_source_apple_audio_get_samplerate(s);
[301b807]29
[248da64]30  if (!s) { err = 1; goto beach; }
[301b807]31
[248da64]32  do {
[301b807]33    aubio_source_apple_audio_do(s, vec, &read);
[248da64]34    // fvec_print (vec);
35    n_frames += read;
36  } while ( read == hop_size );
[301b807]37
[248da64]38beach:
39  del_aubio_source_apple_audio (s);
40  del_fvec (vec);
[4722e63]41#else
[248da64]42  err = 3;
43  PRINT_ERR("aubio was not compiled with aubio_source_apple_audio\n");
[4722e63]44#endif /* __APPLE__ */
[301b807]45  return 0;
46}
Note: See TracBrowser for help on using the repository browser.