source:
tests/src/io/test-source_wavread.c
@
66fff6c
Last change on this file since 66fff6c was 7735d06, checked in by , 6 years ago | |
---|---|
|
|
File size: 1.1 KB |
Rev | Line | |
---|---|---|
[5158c22] | 1 | #define AUBIO_UNSTABLE 1 |
2 | #include <aubio.h> | |
3 | #include "utils_tests.h" | |
4 | ||
[7735d06] | 5 | #define aubio_source_custom "wavread" |
[5158c22] | 6 | |
7 | #ifdef HAVE_WAVREAD | |
[7735d06] | 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 */ | |
[5158c22] | 21 | |
[7735d06] | 22 | #include "base-source_custom.h" |
[5158c22] | 23 | |
[7735d06] | 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 | |
[5158c22] | 26 | |
[7735d06] | 27 | int main (int argc, char **argv) |
28 | { | |
29 | return base_main(argc, argv); | |
[5158c22] | 30 | } |
Note: See TracBrowser
for help on using the repository browser.