forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiir_df1_hifi3.h
More file actions
43 lines (31 loc) · 953 Bytes
/
iir_df1_hifi3.h
File metadata and controls
43 lines (31 loc) · 953 Bytes
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
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2022 Intel Corporation. All rights reserved.
*
* Author: Andrula Song <andrula.song@intel.com>
*/
#ifndef __IIR_DF1_HIFI3_H__
#define __IIR_DF1_HIFI3_H__
#include <xtensa/tie/xt_hifi3.h>
#include <stdint.h>
static inline int16_t iir_df1_s16(struct iir_state_df1 *iir, int16_t x)
{
ae_f32x2 y = iir_df1(iir, ((int32_t)x) << 16);
return AE_ROUND16X4F32SSYM(y, y);
}
static inline int32_t iir_df1_s24(struct iir_state_df1 *iir, int32_t x)
{
ae_f32x2 y = iir_df1(iir, x << 8);
return AE_SRAI32(AE_SLAI32S(AE_SRAI32R(y, 8), 8), 8);
}
static inline int16_t iir_df1_s32_s16(struct iir_state_df1 *iir, int32_t x)
{
ae_f32x2 y = iir_df1(iir, x);
return AE_ROUND16X4F32SSYM(y, y);
}
static inline int32_t iir_df1_s32_s24(struct iir_state_df1 *iir, int32_t x)
{
ae_f32x2 y = iir_df1(iir, x);
return AE_SRAI32(AE_SLAI32S(AE_SRAI32R(y, 8), 8), 8);
}
#endif /* __IIR_DF1_HIFI3_H__ */