1mlib_SignalMul_F32(3MLIB) mediaLib Library Functions mlib_SignalMul_F32(3MLIB)
2
3
4
6 mlib_SignalMul_F32, mlib_SignalMul_F32S - multiplication
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_SignalMul_F32(mlib_f32 *scr1dst,
13 const mlib_f32 *src2, mlib_s32 n);
14
15
16 mlib_status mlib_SignalMul_F32S(mlib_f32 *scr1dst,
17 const mlib_f32 *src2, mlib_s32 n);
18
19
21 Each of these functions performs multiplication.
22
24 Each of the functions takes the following arguments:
25
26 src1dst The first input and the output signal array.
27
28
29 src2 The second input signal array.
30
31
32 n Number of samples in the input signal arrays.
33
34
36 Each of the functions returns MLIB_SUCCESS if successful. Otherwise it
37 returns MLIB_FAILURE.
38
40 See attributes(5) for descriptions of the following attributes:
41
42
43
44
45 ┌─────────────────────────────┬─────────────────────────────┐
46 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
47 ├─────────────────────────────┼─────────────────────────────┤
48 │Interface Stability │Committed │
49 ├─────────────────────────────┼─────────────────────────────┤
50 │MT-Level │MT-Safe │
51 └─────────────────────────────┴─────────────────────────────┘
52
54 attributes(5)
55
56
57
58SunOS 5.11 2 Mar 2007 mlib_SignalMul_F32(3MLIB)