From d8ade6b665ec0e24a7720d8e860b8c30b1c8fbfd Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:17:14 -0500 Subject: [PATCH] spelling: coefficients Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/libutil/math_fixed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/math_fixed.c b/src/libutil/math_fixed.c index a147873e..8c28d07e 100644 --- a/src/libutil/math_fixed.c +++ b/src/libutil/math_fixed.c @@ -35,7 +35,7 @@ Fixed_S64_32 math_fixed_recursive_filter(Fixed_S64_32 x, ytmp = Fixed_S64_32_add(ytmp, Fixed_S64_32_mul(cb[i], state_x[i])); } - // Factor in the y * a coeficients + // Factor in the y * a coefficients for (int i = 0; i < num_output_coefficients; i++) { ytmp = Fixed_S64_32_sub(ytmp, Fixed_S64_32_mul(ca[i], state_y[i])); }