]> code.delx.au - pulseaudio/blob - src/pulsecore/sconv-s16be.c
remap: Change remapping function argument type from void to int16_t / float as approp...
[pulseaudio] / src / pulsecore / sconv-s16be.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include "endianmacros.h"
27
28 #define INT16_FROM PA_INT16_FROM_BE
29 #define INT16_TO PA_INT16_TO_BE
30 #define UINT16_FROM PA_UINT16_FROM_BE
31 #define UINT16_TO PA_UINT16_TO_BE
32
33 #define INT32_FROM PA_INT32_FROM_BE
34 #define INT32_TO PA_INT32_TO_BE
35 #define UINT32_FROM PA_UINT32_FROM_BE
36 #define UINT32_TO PA_UINT32_TO_BE
37
38 #define READ24 PA_READ24BE
39 #define WRITE24 PA_WRITE24BE
40
41 #define pa_sconv_s16le_to_float32ne pa_sconv_s16be_to_float32ne
42 #define pa_sconv_s16le_from_float32ne pa_sconv_s16be_from_float32ne
43 #define pa_sconv_s16le_to_float32re pa_sconv_s16be_to_float32re
44 #define pa_sconv_s16le_from_float32re pa_sconv_s16be_from_float32re
45
46 #define pa_sconv_s32le_to_float32ne pa_sconv_s32be_to_float32ne
47 #define pa_sconv_s32le_from_float32ne pa_sconv_s32be_from_float32ne
48 #define pa_sconv_s32le_to_float32re pa_sconv_s32be_to_float32re
49 #define pa_sconv_s32le_from_float32re pa_sconv_s32be_from_float32re
50
51 #define pa_sconv_s24le_to_float32ne pa_sconv_s24be_to_float32ne
52 #define pa_sconv_s24le_from_float32ne pa_sconv_s24be_from_float32ne
53 #define pa_sconv_s24le_to_float32re pa_sconv_s24be_to_float32re
54 #define pa_sconv_s24le_from_float32re pa_sconv_s24be_from_float32re
55
56 #define pa_sconv_s24_32le_to_float32ne pa_sconv_s24_32be_to_float32ne
57 #define pa_sconv_s24_32le_from_float32ne pa_sconv_s24_32be_from_float32ne
58 #define pa_sconv_s24_32le_to_float32re pa_sconv_s24_32be_to_float32re
59 #define pa_sconv_s24_32le_from_float32re pa_sconv_s24_32be_from_float32re
60
61 #define pa_sconv_s32le_to_s16ne pa_sconv_s32be_to_s16ne
62 #define pa_sconv_s32le_from_s16ne pa_sconv_s32be_from_s16ne
63 #define pa_sconv_s32le_to_s16re pa_sconv_s32be_to_s16re
64 #define pa_sconv_s32le_from_s16re pa_sconv_s32be_from_s16re
65
66 #define pa_sconv_s24le_to_s16ne pa_sconv_s24be_to_s16ne
67 #define pa_sconv_s24le_from_s16ne pa_sconv_s24be_from_s16ne
68 #define pa_sconv_s24le_to_s16re pa_sconv_s24be_to_s16re
69 #define pa_sconv_s24le_from_s16re pa_sconv_s24be_from_s16re
70
71 #define pa_sconv_s24_32le_to_s16ne pa_sconv_s24_32be_to_s16ne
72 #define pa_sconv_s24_32le_from_s16ne pa_sconv_s24_32be_from_s16ne
73 #define pa_sconv_s24_32le_to_s16re pa_sconv_s24_32be_to_s16re
74 #define pa_sconv_s24_32le_from_s16re pa_sconv_s24_32be_from_s16re
75
76 #ifdef WORDS_BIGENDIAN
77 #define SWAP_WORDS 0
78 #else
79 #define SWAP_WORDS 1
80 #endif
81
82 #include "sconv-s16le.h"
83 #include "sconv-s16le.c"