summaryrefslogtreecommitdiff
path: root/lib/rbcodec/dsp/tone_controls.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/dsp/tone_controls.c')
-rw-r--r--lib/rbcodec/dsp/tone_controls.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/rbcodec/dsp/tone_controls.c b/lib/rbcodec/dsp/tone_controls.c
index 922c966e3f..01381ea330 100644
--- a/lib/rbcodec/dsp/tone_controls.c
+++ b/lib/rbcodec/dsp/tone_controls.c
@@ -90,7 +90,7 @@ static void tone_process(struct dsp_proc_entry *this,
90 struct dsp_buffer **buf_p) 90 struct dsp_buffer **buf_p)
91{ 91{
92 struct dsp_buffer *buf = *buf_p; 92 struct dsp_buffer *buf = *buf_p;
93 filter_process((void *)this->data, buf->p32, buf->remcount, 93 filter_process((struct dsp_filter *)this->data, buf->p32, buf->remcount,
94 buf->format.num_channels); 94 buf->format.num_channels);
95} 95}
96 96
@@ -104,15 +104,17 @@ static intptr_t tone_configure(struct dsp_proc_entry *this,
104 { 104 {
105 case DSP_PROC_INIT: 105 case DSP_PROC_INIT:
106 if (value != 0) 106 if (value != 0)
107 break; 107 break; /* Already enabled */
108
108 this->data = (intptr_t)&tone_filters[dsp_get_id(dsp)]; 109 this->data = (intptr_t)&tone_filters[dsp_get_id(dsp)];
109 this->process[0] = tone_process; 110 this->process = tone_process;
111 /* Fall-through */
110 case DSP_FLUSH: 112 case DSP_FLUSH:
111 filter_flush((struct dsp_filter *)this->data); 113 filter_flush((struct dsp_filter *)this->data);
112 break; 114 break;
113 } 115 }
114 116
115 return 1; 117 return 0;
116} 118}
117 119
118/* Database entry */ 120/* Database entry */