source: tests/src/io/test-source_avcodec.c @ 23bf001

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

tests/src/io/test-source_avcodec.c: really abort on error

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