summaryrefslogtreecommitdiff
path: root/lib/rbcodec/dsp/dsp_sample_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/dsp/dsp_sample_input.c')
-rw-r--r--lib/rbcodec/dsp/dsp_sample_input.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rbcodec/dsp/dsp_sample_input.c b/lib/rbcodec/dsp/dsp_sample_input.c
index 8068ce5097..06ce11fab7 100644
--- a/lib/rbcodec/dsp/dsp_sample_input.c
+++ b/lib/rbcodec/dsp/dsp_sample_input.c
@@ -242,8 +242,7 @@ void dsp_sample_input_flush(struct sample_io_data *this)
242 this->sample_buf.remcount = 0; 242 this->sample_buf.remcount = 0;
243} 243}
244 244
245void dsp_sample_input_init(struct sample_io_data *this, 245void dsp_sample_input_init(struct sample_io_data *this, unsigned int dsp_id)
246 enum dsp_ids dsp_id)
247{ 246{
248 int32_t *lbuf, *rbuf; 247 int32_t *lbuf, *rbuf;
249 248
@@ -260,7 +259,7 @@ void dsp_sample_input_init(struct sample_io_data *this,
260 259
261 default: 260 default:
262 /* orly */ 261 /* orly */
263 DEBUGF("DSP Input- unknown dsp %d\n", (int)dsp_id); 262 DEBUGF("DSP Input- unknown dsp %u\n", dsp_id);
264 return; 263 return;
265 } 264 }
266 265