diff options
author | waker <wakeroid@gmail.com> | 2011-01-02 18:27:54 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2011-01-02 18:27:54 +0100 |
commit | 915c9c218574207a7954e53b9747045a6ae34282 (patch) | |
tree | e7f4e81d5b23a13d9ca581f2713d11f0f62435bb /plugins/supereq | |
parent | d5a14f3678d81f609278c2b5019ff1c3c3a9ce53 (diff) |
added bounds checking and output ratio to dsp plugin API;
fixed all existing dsp plugins for the new API;
dsp_soundtouch can now be used as a resampler
Diffstat (limited to 'plugins/supereq')
-rw-r--r-- | plugins/supereq/supereq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/supereq/supereq.c b/plugins/supereq/supereq.c index 7c67abc1..558cbd5d 100644 --- a/plugins/supereq/supereq.c +++ b/plugins/supereq/supereq.c @@ -77,7 +77,7 @@ supereq_plugin_stop (void) { } int -supereq_process (ddb_dsp_context_t *ctx, float *samples, int frames, ddb_waveformat_t *fmt) { +supereq_process (ddb_dsp_context_t *ctx, float *samples, int frames, int maxframes, ddb_waveformat_t *fmt, float *r) { ddb_supereq_ctx_t *supereq = (ddb_supereq_ctx_t *)ctx; if (supereq->enabled != ctx->enabled) { if (ctx->enabled && !supereq->enabled) { |