source: tests/src/io/test-sink_sndfile.c

Last change on this file was 05774ba3, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[tests] improve test-sink

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#define AUBIO_UNSTABLE 1
2#include <aubio.h>
3#include "utils_tests.h"
4
5#define aubio_sink_custom "sndfile"
6
7#ifdef HAVE_SNDFILE
8#define HAVE_AUBIO_SINK_CUSTOM
9#define aubio_sink_custom_t aubio_sink_sndfile_t
10#define new_aubio_sink_custom new_aubio_sink_sndfile
11#define del_aubio_sink_custom del_aubio_sink_sndfile
12#define aubio_sink_custom_do aubio_sink_sndfile_do
13#define aubio_sink_custom_do_multi aubio_sink_sndfile_do_multi
14#define aubio_sink_custom_close aubio_sink_sndfile_close
15#define aubio_sink_custom_preset_samplerate aubio_sink_sndfile_preset_samplerate
16#define aubio_sink_custom_preset_channels aubio_sink_sndfile_preset_channels
17#define aubio_sink_custom_get_samplerate aubio_sink_sndfile_get_samplerate
18#define aubio_sink_custom_get_channels aubio_sink_sndfile_get_channels
19#endif /* HAVE_SNDFILE */
20
21#include "base-sink_custom.h"
22
23// this file uses the unstable aubio api, please use aubio_sink instead
24// see src/io/sink.h and tests/src/sink/test-sink.c
25
26int main (int argc, char **argv)
27{
28  return base_main(argc, argv);
29}
Note: See TracBrowser for help on using the repository browser.