forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiir_df2t.h
More file actions
85 lines (67 loc) · 2.15 KB
/
iir_df2t.h
File metadata and controls
85 lines (67 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2017 Intel Corporation. All rights reserved.
*
* Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
* Liam Girdwood <liam.r.girdwood@linux.intel.com>
* Keyon Jie <yang.jie@linux.intel.com>
*/
#ifndef __SOF_MATH_IIR_DF2T_H__
#define __SOF_MATH_IIR_DF2T_H__
#include <stddef.h>
#include <stdint.h>
/* Get platforms configuration */
/* If next defines are set to 1 the EQ is configured automatically. Setting
* to zero temporarily is useful is for testing needs.
* Setting EQ_FIR_AUTOARCH to 0 allows to manually set the code variant.
*/
#define IIR_AUTOARCH 1
/* Force manually some code variant when IIR_AUTOARCH is set to zero. These
* are useful in code debugging.
*/
#if IIR_AUTOARCH == 0
#define IIR_GENERIC 1
#define IIR_HIFI3 0
#endif
/* Select optimized code variant when xt-xcc compiler is used */
#if IIR_AUTOARCH == 1
#if defined __XCC__
#include <xtensa/config/core-isa.h>
#if XCHAL_HAVE_HIFI3 == 1
#define IIR_GENERIC 0
#define IIR_HIFI3 1
#else
#define IIR_GENERIC 1
#define IIR_HIFI3 0
#endif /* XCHAL_HAVE_HIFI3 */
#else
/* GCC */
#define IIR_GENERIC 1
#define IIR_HIFI3 0
#endif /* __XCC__ */
#endif /* IIR_AUTOARCH */
#define IIR_DF2T_NUM_DELAYS 2
struct iir_state_df2t {
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 */
int64_t *delay; /* Pointer to IIR delay line */
};
struct sof_eq_iir_header;
int iir_init_coef_df2t(struct iir_state_df2t *iir,
struct sof_eq_iir_header *config);
int iir_delay_size_df2t(struct sof_eq_iir_header *config);
void iir_init_delay_df2t(struct iir_state_df2t *iir, int64_t **delay);
void iir_mute_df2t(struct iir_state_df2t *iir);
void iir_unmute_df2t(struct iir_state_df2t *iir);
void iir_reset_df2t(struct iir_state_df2t *iir);
int32_t iir_df2t(struct iir_state_df2t *iir, int32_t x);
/* Inline functions with or without HiFi3 intrinsics */
#if IIR_HIFI3
#include "iir_df2t_hifi3.h"
#else
#include "iir_df2t_generic.h"
#endif
#endif /* __SOF_MATH_IIR_DF2T_H__ */