forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiir_df1.h
More file actions
60 lines (47 loc) · 1.31 KB
/
iir_df1.h
File metadata and controls
60 lines (47 loc) · 1.31 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
/* 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>
#define IIR_DF1_NUM_STATE 4
#if defined __XCC__
#include <xtensa/config/core-isa.h>
#if XCHAL_HAVE_HIFI3
#define IIR_DF1_GENERIC 0
#define IIR_DF1_HIFI3 1
#else
#define IIR_DF1_GENERIC 1
#define IIR_DF1_HIFI3 0
#endif /* XCHAL_HAVE_HIFI3 */
#else
/* GCC */
#define IIR_DF1_GENERIC 1
#define IIR_DF1_HIFI3 0
#endif
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);
int32_t iir_df1(struct iir_state_df1 *iir, int32_t x);
/* Inline functions */
#if IIR_DF1_HIFI3
#include "iir_df1_hifi3.h"
#else
#include "iir_df1_generic.h"
#endif
#endif