1mlib_SignalIIR_Biquad_S16_Sm1e6d_iSaaLti(b3MLLiIbBrm)alriyb_FSuingcntailoInIsR_Biquad_S16_S16_Sat(3MLIB)
2
3
4
6 mlib_SignalIIR_Biquad_S16_S16_Sat, mlib_SignalIIR_Biquad_S16S_S16S_Sat,
7 mlib_SignalIIR_Biquad_F32_F32, mlib_SignalIIR_Biquad_F32S_F32S - biquad
8 Infinite Impulse Response (IIR) filtering
9
11 cc [ flag... ] file... -lmlib [ library... ]
12 #include <mlib.h>
13
14
15 mlib_status mlib_SignalIIR_Biquad_S16_S16_Sat(mlib_s16 *dst,
16 const mlib_s16 *src, void *filter, mlib_s32 n);
17
18
19 mlib_status mlib_SignalIIR_Biquad_S16S_S16S_Sat(mlib_s16 *dst,
20 const mlib_s16 *src, void *filter, mlib_s32 n);
21
22
23 mlib_status mlib_SignalIIR_Biquad_F32_F32(mlib_f32 *dst,
24 const mlib_f32 *src, void *filter, mlib_s32 n);
25
26
27 mlib_status mlib_SignalIIR_Biquad_F32S_F32S(mlib_f32 *dst,
28 const mlib_f32 *src, void *filter, mlib_s32 n);
29
30
32 Each of these functions applies a biquad IIR filter to a signal array.
33
34 Printed copy or docs.sun.com displays an equation that represents the
35 biquad IIR filtering.
36
37
38 The biquad IIR filter is represented by the following figure:
39
40 Printed copy or docs.sun.com displays a figure that represents the
41 biquad IIR filter.
42
44 Each of the functions takes the following arguments:
45
46 dst Destination signal array.
47
48
49 src Source signal array.
50
51
52 filter Internal filter structure.
53
54
55 n Number of samples in the source signal array.
56
57
59 Each of the functions returns MLIB_SUCCESS if successful. Otherwise it
60 returns MLIB_FAILURE.
61
63 See attributes(5) for descriptions of the following attributes:
64
65
66
67
68 ┌─────────────────────────────┬─────────────────────────────┐
69 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
70 ├─────────────────────────────┼─────────────────────────────┤
71 │Interface Stability │Committed │
72 ├─────────────────────────────┼─────────────────────────────┤
73 │MT-Level │MT-Safe │
74 └─────────────────────────────┴─────────────────────────────┘
75
77 mlib_SignalIIR_P4_S16_S16_Sat(3MLIB), mlib_SignalIIR‐
78 Free_Biquad_S16_S16(3MLIB), mlib_SignalIIRFree_P4_S16_S16(3MLIB),
79 mlib_SignalIIRInit_Biquad_S16_S16(3MLIB), mlib_SignalI‐
80 IRInit_P4_S16_S16(3MLIB), attributes(5)
81
82
83
84SunOS 5.11 2 Marml2i0b0_7SignalIIR_Biquad_S16_S16_Sat(3MLIB)