diff options
author | waker <wakeroid@gmail.com> | 2010-11-13 21:35:53 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2010-11-13 21:35:53 +0100 |
commit | 086360352150cd032523090bbd75eb2f4208e6ed (patch) | |
tree | 166ebaa55e0cafa237ad821c77d178d08cc4b6a2 /plugins/supereq | |
parent | 607479be3172aed4c5f906dcb326089e1d5538e6 (diff) |
implemented conversion between streams with different channel masks
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 577af84a..6ebf9b24 100644 --- a/plugins/supereq/supereq.c +++ b/plugins/supereq/supereq.c @@ -129,7 +129,7 @@ supereq_regen_table_thread (void *param) { } int -supereq_process_int16 (int16_t *samples, int nsamples, int nch, int bps, int srate) { +supereq_process (char * restrict samples, ddb_waveformat_t * restrict fmt) { if ((nch != 1 && nch != 2) || (bps != 8 && bps != 16 && bps != 24)) return nsamples; if (params_changed && !tid) { tid = deadbeef->thread_start (supereq_regen_table_thread, NULL); |