1mlib_SignalFIR_F32S_F32S(3MmLeIdBi)aLib Library Functmiloinbs_SignalFIR_F32S_F32S(3MLIB)
2
3
4
6 mlib_SignalFIR_F32S_F32S - Finite Impulse Response (FIR) filtering
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_SignalFIR_F32S_F32S(mlib_f32 *dst, const mlib_f32 *src,
13 void *filter, mlib_s32 n);
14
15
17 The mlib_SignalFIR_F32S_F32S() function applies the FIR filter to one
18 signal packet and updates the filter state.
19
21 The function takes the following arguments:
22
23 dst Output stereo signal array . . dst[2*i] contains Channel 0,
24 and dst[2*i+1] contains Channel 1.
25
26
27 src Input stereo signal array. src[2*i] contains Channel 0, and
28 src[2*i+1] contains Channel 1.
29
30
31 filter Internal filter structure.
32
33
34 n Number of samples in the input signal array.
35
36
38 The function returns MLIB_SUCCESS if successful. Otherwise it returns
39 MLIB_FAILURE.
40
42 See attributes(5) for descriptions of the following attributes:
43
44
45
46
47 ┌─────────────────────────────┬─────────────────────────────┐
48 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
49 ├─────────────────────────────┼─────────────────────────────┤
50 │Interface Stability │Committed │
51 ├─────────────────────────────┼─────────────────────────────┤
52 │MT-Level │MT-Safe │
53 └─────────────────────────────┴─────────────────────────────┘
54
56 attributes(5)
57
58
59
60SunOS 5.11 2 Mar 2007 mlib_SignalFIR_F32S_F32S(3MLIB)