EQ FIR: Fix duplicated buffers pointers advance

This patch removes pointers advance from filter function since it was
added to copy.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2017-09-22 18:11:59 +03:00 committed by Liam Girdwood
parent 8725de778a
commit 1940496e25
1 changed files with 0 additions and 2 deletions

View File

@ -118,8 +118,6 @@ static void eq_fir_s32_default(struct comp_dev *dev,
}
}
source->r_ptr = x - nch + 1; /* After previous loop the x and y */
sink->w_ptr = y - nch + 1; /* point to one frame -1. */
}
static void eq_fir_free_parameters(struct eq_fir_configuration **config)