blob: 280973d258a205e0f97ebb476d0d8f996ffa7e9e (
plain)
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
|
#ifndef WUFF_CONVERT_H
#define WUFF_CONVERT_H
#define WUFF_CONV_FUNC(name) WUFF_INTERN_API void name(wuff_uint8 * dst, wuff_uint8 * src, size_t samples, wuff_uint8 offset, wuff_uint8 head, wuff_uint8 tail)
WUFF_CONV_FUNC(wuff_int8_to_int8);
WUFF_CONV_FUNC(wuff_int8_to_int16);
WUFF_CONV_FUNC(wuff_int8_to_int24);
WUFF_CONV_FUNC(wuff_int8_to_int32);
WUFF_CONV_FUNC(wuff_int8_to_float32);
WUFF_CONV_FUNC(wuff_int8_to_float64);
WUFF_CONV_FUNC(wuff_int16_to_int8);
WUFF_CONV_FUNC(wuff_int16_to_int16);
WUFF_CONV_FUNC(wuff_int16_to_int24);
WUFF_CONV_FUNC(wuff_int16_to_int32);
WUFF_CONV_FUNC(wuff_int16_to_float32);
WUFF_CONV_FUNC(wuff_int16_to_float64);
WUFF_CONV_FUNC(wuff_int24_to_int8);
WUFF_CONV_FUNC(wuff_int24_to_int16);
WUFF_CONV_FUNC(wuff_int24_to_int24);
WUFF_CONV_FUNC(wuff_int24_to_int32);
WUFF_CONV_FUNC(wuff_int24_to_float32);
WUFF_CONV_FUNC(wuff_int24_to_float64);
WUFF_CONV_FUNC(wuff_int32_to_int8);
WUFF_CONV_FUNC(wuff_int32_to_int16);
WUFF_CONV_FUNC(wuff_int32_to_int24);
WUFF_CONV_FUNC(wuff_int32_to_int32);
WUFF_CONV_FUNC(wuff_int32_to_float32);
WUFF_CONV_FUNC(wuff_int32_to_float64);
WUFF_CONV_FUNC(wuff_float32_to_int8);
WUFF_CONV_FUNC(wuff_float32_to_int16);
WUFF_CONV_FUNC(wuff_float32_to_int24);
WUFF_CONV_FUNC(wuff_float32_to_int32);
WUFF_CONV_FUNC(wuff_float32_to_float32);
WUFF_CONV_FUNC(wuff_float32_to_float64);
WUFF_CONV_FUNC(wuff_float64_to_int8);
WUFF_CONV_FUNC(wuff_float64_to_int16);
WUFF_CONV_FUNC(wuff_float64_to_int24);
WUFF_CONV_FUNC(wuff_float64_to_int32);
WUFF_CONV_FUNC(wuff_float64_to_float32);
WUFF_CONV_FUNC(wuff_float64_to_float64);
#endif /* WUFF_CONVERT_H */
|