forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiir_df1.h
More file actions
63 lines (50 loc) · 1.75 KB
/
Copy pathiir_df1.h
File metadata and controls
63 lines (50 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2022 Intel Corporation. All rights reserved.
*
* Author: Andrula Song <andrula.song@intel.com>
*/
#ifndef __SOF_MATH_IIR_DF1_H__
#define __SOF_MATH_IIR_DF1_H__
#include <stddef.h>
#include <stdint.h>
#include <sof/common.h>
#define IIR_DF1_NUM_STATE 4
#define SOF_IIR_DF1_4TH_NUM_BIQUADS 2
struct iir_state_df1 {
unsigned int biquads; /* Number of IIR 2nd order sections total */
unsigned int biquads_in_series; /* Number of IIR 2nd order sections
* in series.
*/
int32_t *coef; /* Pointer to IIR coefficients */
int32_t *delay; /* Pointer to IIR delay line */
};
struct sof_eq_iir_header;
int iir_init_coef_df1(struct iir_state_df1 *iir,
struct sof_eq_iir_header *config);
int iir_delay_size_df1(struct sof_eq_iir_header *config);
void iir_init_delay_df1(struct iir_state_df1 *iir, int32_t **state);
void iir_reset_df1(struct iir_state_df1 *iir);
/**
* Calculate IIR filter consisting of biquads
* @param iir IIR state with configured biquad coefficients and delay lines data
* @param x Single s32 Q1.31 format input sample
* @return Single s32 Q1.31 format output samples
*/
int32_t iir_df1(struct iir_state_df1 *iir, int32_t x);
/**
* Calculate IIR filter consisting of biquads, special simplified version for
* 4th order filter with two biquads in series. Note: There are no checks for
* iir struct members.
* @param iir IIR state with configured biquad coefficients and delay lines data
* @param x Single s32 Q1.31 format input sample
* @return Single s32 Q1.31 format output samples
*/
int32_t iir_df1_4th(struct iir_state_df1 *iir, int32_t x);
/* Inline functions */
#if SOF_USE_MIN_HIFI(3, FILTER)
#include "iir_df1_hifi3.h"
#else
#include "iir_df1_generic.h"
#endif
#endif