forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrossover_common.h
More file actions
84 lines (71 loc) · 2.26 KB
/
crossover_common.h
File metadata and controls
84 lines (71 loc) · 2.26 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
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2023 Intel Corporation. All rights reserved.
*
* Author: Sebastiano Carlucci <scarlucci@google.com>
*/
#ifndef __SOF_CROSSOVER_COMMON_H__
#define __SOF_CROSSOVER_COMMON_H__
#include <sof/math/iir_df1.h>
#include <user/eq.h>
/* Number of sinks for a 2 way crossover filter */
#define CROSSOVER_2WAY_NUM_SINKS 2
/* Number of sinks for a 3 way crossover filter */
#define CROSSOVER_3WAY_NUM_SINKS 3
/* Number of sinks for a 4 way crossover filter */
#define CROSSOVER_4WAY_NUM_SINKS 4
/* Number of delay slots allocated for LR4 Filters */
#define CROSSOVER_NUM_DELAYS_LR4 4
/* Maximum number of LR4 highpass OR lowpass filters */
#define CROSSOVER_MAX_LR4 3
/* Maximum Number of sinks allowed in config */
#define SOF_CROSSOVER_MAX_STREAMS 4
/**
* Stores the state of one channel of the Crossover filter
*/
struct crossover_state {
/* Store the state for each LR4 filter. */
struct iir_state_df1 lowpass[CROSSOVER_MAX_LR4];
struct iir_state_df1 highpass[CROSSOVER_MAX_LR4];
};
typedef void (*crossover_split)(int32_t in, int32_t out[],
struct crossover_state *state);
extern const crossover_split crossover_split_fnmap[];
/* crossover init function */
int crossover_init_coef_ch(struct sof_eq_iir_biquad *coef,
struct crossover_state *ch_state,
int32_t num_sinks);
/**
* \brief Reset the state of an LR4 filter.
*/
static inline void crossover_reset_state_lr4(struct iir_state_df1 *lr4)
{
rfree(lr4->coef);
rfree(lr4->delay);
lr4->coef = NULL;
lr4->delay = NULL;
}
/**
* \brief Reset the state (coefficients and delay) of the crossover filter
* of a single channel.
*/
static inline void crossover_reset_state_ch(struct crossover_state *ch_state)
{
int i;
for (i = 0; i < CROSSOVER_MAX_LR4; i++) {
crossover_reset_state_lr4(&ch_state->lowpass[i]);
crossover_reset_state_lr4(&ch_state->highpass[i]);
}
}
/**
* \brief Returns Crossover split function.
*/
static inline crossover_split crossover_find_split_func(int32_t num_sinks)
{
if (num_sinks < CROSSOVER_2WAY_NUM_SINKS ||
num_sinks > CROSSOVER_4WAY_NUM_SINKS)
return NULL;
// The functions in the map are offset by 2 indices.
return crossover_split_fnmap[num_sinks - CROSSOVER_2WAY_NUM_SINKS];
}
#endif /* __SOF_CROSSOVER_COMMON_H__ */