Skip to content

Commit 98df631

Browse files
committed
Resync
1 parent 72d233a commit 98df631

4 files changed

Lines changed: 224 additions & 169 deletions

File tree

audio/dsp_filters/iir.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ static void iir_filter_init(struct iir_data *iir,
223223
case RIAA_phono: /* http://www.dsprelated.com/showmessage/73300/3.php */
224224
{
225225
double y, b_re, a_re, b_im, a_im, g;
226-
float b[3], a[3];
226+
float b[3] = {0.0f};
227+
float a[3] = {0.0f};
227228

228229
if ((int)sample_rate == 44100)
229230
{

0 commit comments

Comments
 (0)