feature/crepe_org
Last change
on this file since 30cb440e was
7735d06,
checked in by Paul Brossier <piem@piem.org>, 6 years ago
|
[tests] factorise source tests
|
-
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 | |
---|
5 | #define aubio_source_custom "wavread" |
---|
6 | |
---|
7 | #ifdef HAVE_WAVREAD |
---|
8 | #define HAVE_AUBIO_SOURCE_CUSTOM |
---|
9 | #define aubio_source_custom_t aubio_source_wavread_t |
---|
10 | #define new_aubio_source_custom new_aubio_source_wavread |
---|
11 | #define del_aubio_source_custom del_aubio_source_wavread |
---|
12 | #define aubio_source_custom_get_samplerate aubio_source_wavread_get_samplerate |
---|
13 | #define aubio_source_custom_get_duration aubio_source_wavread_get_duration |
---|
14 | #define aubio_source_custom_do aubio_source_wavread_do |
---|
15 | #define aubio_source_custom_do_multi aubio_source_wavread_do_multi |
---|
16 | #define aubio_source_custom_seek aubio_source_wavread_seek |
---|
17 | #define aubio_source_custom_close aubio_source_wavread_close |
---|
18 | #define aubio_source_custom_get_channels aubio_source_wavread_get_channels |
---|
19 | #define aubio_source_custom_get_samplerate aubio_source_wavread_get_samplerate |
---|
20 | #endif /* HAVE_WAVREAD */ |
---|
21 | |
---|
22 | #include "base-source_custom.h" |
---|
23 | |
---|
24 | // this file uses the unstable aubio api, please use aubio_source instead |
---|
25 | // see src/io/source.h and tests/src/source/test-source.c |
---|
26 | |
---|
27 | int main (int argc, char **argv) |
---|
28 | { |
---|
29 | return base_main(argc, argv); |
---|
30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.