#include "utils_tests.h"
int test_wrong_params(void);
int main(int argc, char **argv)
{
if (argc < 3 || argc >= 6) {
PRINT_ERR("wrong number of arguments, running tests\n");
err = test_wrong_params();
PRINT_MSG("usage: %s <input_path> <output_path> [samplerate] [hop_size]\n",
argv[0]);
return err;
}
uint_t n_frames = 0, read = 0;
char_t *source_path = argv[1];
if ( argc >= 4 ) samplerate = atoi(argv[3]);
if ( argc >= 5 ) hop_size = atoi(argv[4]);
if (!vec) { err = 1; goto failure; }
if (!src) { err = 1; goto failure; }
if (!snk) { err = 1; goto failure; }
do {
n_frames += read;
} while ( read == hop_size );
PRINT_MSG("%d frames read at %dHz (%d blocks) from %s and written to %s\n",
n_frames, samplerate, n_frames / hop_size,
source_path, sink_path);
failure:
if (snk)
if (src)
if (vec)
return err;
}
int test_wrong_params(void)
{
char_t sink_path[PATH_MAX] =
"tmp_aubio_XXXXXX";
uint_t oversized_hop_size = 4097;
uint_t oversized_samplerate = 192000 * 8 + 1;
uint_t oversized_channels = 1025;
int fd = create_temp_sink(sink_path);
if (!fd) return 1;
mat =
new_fmat(channels, oversized_hop_size);
close_temp_sink(sink_path, fd);
return run_on_default_source_and_sink(main);
}
Global aubio include file.
void del_fmat(fmat_t *s)
fmat_t buffer deletion function
fmat_t * new_fmat(uint_t height, uint_t length)
fmat_t buffer creation function
fvec_t * new_fvec(uint_t length)
fvec_t buffer creation function
void del_fvec(fvec_t *s)
fvec_t buffer deletion function
uint_t aubio_sink_close(aubio_sink_t *s)
close sink
uint_t aubio_sink_preset_samplerate(aubio_sink_t *s, uint_t samplerate)
preset sink samplerate
void aubio_sink_do_multi(aubio_sink_t *s, fmat_t *write_data, uint_t write)
write polyphonic vector of length hop_size to sink
void aubio_sink_do(aubio_sink_t *s, fvec_t *write_data, uint_t write)
write monophonic vector of length hop_size to sink
void del_aubio_sink(aubio_sink_t *s)
close sink and cleanup memory
uint_t aubio_sink_get_channels(const aubio_sink_t *s)
get channels of sink object
struct _aubio_sink_t aubio_sink_t
media sink object
aubio_sink_t * new_aubio_sink(const char_t *uri, uint_t samplerate)
create new aubio_sink_t
uint_t aubio_sink_preset_channels(aubio_sink_t *s, uint_t channels)
preset sink channels
uint_t aubio_sink_get_samplerate(const aubio_sink_t *s)
get samplerate of sink object
uint_t aubio_source_get_samplerate(aubio_source_t *s)
get samplerate of source object
struct _aubio_source_t aubio_source_t
media source object
aubio_source_t * new_aubio_source(const char_t *uri, uint_t samplerate, uint_t hop_size)
create new aubio_source_t
void del_aubio_source(aubio_source_t *s)
close source and cleanup memory
void aubio_source_do(aubio_source_t *s, fvec_t *read_to, uint_t *read)
read monophonic vector of length hop_size from source object
unsigned int uint_t
unsigned integer