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
|
Rev | Line | |
---|
[856ceb5] | 1 | #define AUBIO_UNSTABLE 1 |
---|
[afbd7e7] | 2 | #include <aubio.h> |
---|
[248da64] | 3 | #include "utils_tests.h" |
---|
[afbd7e7] | 4 | |
---|
[7735d06] | 5 | #define aubio_source_custom "sndfile" |
---|
| 6 | |
---|
| 7 | #ifdef HAVE_SNDFILE |
---|
| 8 | #define HAVE_AUBIO_SOURCE_CUSTOM |
---|
| 9 | #define aubio_source_custom_t aubio_source_sndfile_t |
---|
| 10 | #define new_aubio_source_custom new_aubio_source_sndfile |
---|
| 11 | #define del_aubio_source_custom del_aubio_source_sndfile |
---|
| 12 | #define aubio_source_custom_get_samplerate aubio_source_sndfile_get_samplerate |
---|
| 13 | #define aubio_source_custom_get_duration aubio_source_sndfile_get_duration |
---|
| 14 | #define aubio_source_custom_do aubio_source_sndfile_do |
---|
| 15 | #define aubio_source_custom_do_multi aubio_source_sndfile_do_multi |
---|
| 16 | #define aubio_source_custom_seek aubio_source_sndfile_seek |
---|
| 17 | #define aubio_source_custom_close aubio_source_sndfile_close |
---|
| 18 | #define aubio_source_custom_get_channels aubio_source_sndfile_get_channels |
---|
| 19 | #define aubio_source_custom_get_samplerate aubio_source_sndfile_get_samplerate |
---|
| 20 | #endif /* HAVE_LIBAV */ |
---|
| 21 | |
---|
| 22 | #include "base-source_custom.h" |
---|
| 23 | |
---|
[856ceb5] | 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 | |
---|
[248da64] | 27 | int main (int argc, char **argv) |
---|
| 28 | { |
---|
[7735d06] | 29 | return base_main(argc, argv); |
---|
[afbd7e7] | 30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.