#include "test.h" #include "fluidsynth.h" #include "fluidsynth_priv.h" #include "fluid_synth.h" #include // static const int CHANNELS=16; enum { SAMPLES=1024 }; static int smpl; int render_one_mock(fluid_synth_t *synth, int blocks) { fluid_real_t *left_in, *fx_left_in; fluid_real_t *right_in, *fx_right_in; int i, j; int naudchan = fluid_synth_count_audio_channels(synth); fluid_rvoice_mixer_get_bufs(synth->eventhandler->mixer, &left_in, &right_in); fluid_rvoice_mixer_get_fx_bufs(synth->eventhandler->mixer, &fx_left_in, &fx_right_in); for(i = 0; i < naudchan; i++) { for(j = 0; j < blocks * FLUID_BUFSIZE; j++) { int idx = i * FLUID_MIXER_MAX_BUFFERS_DEFAULT * FLUID_BUFSIZE + j; right_in[idx] = left_in[idx] = (float)smpl++; } } return blocks; } int process_and_check(fluid_synth_t* synth, int number_of_samples, int offset) { int i; float left[SAMPLES], right[SAMPLES]; float *dry[1 * 2]; dry[0] = left; dry[1] = right; FLUID_MEMSET(left, 0, sizeof(left)); FLUID_MEMSET(right, 0, sizeof(right)); TEST_SUCCESS(fluid_synth_process_LOCAL(synth, number_of_samples, 0, NULL, 2, dry, render_one_mock)); for(i=0; i