]> iEval git - fdkaac.git/blame_incremental - src/lpcm.c
reimplement int16 conversion as pcm_reader
[fdkaac.git] / src / lpcm.c
... / ...
CommitLineData
1/*
2 * Copyright (C) 2013 nu774
3 * For conditions of distribution and use, see copyright notice in COPYING
4 */
5#if HAVE_CONFIG_H
6# include "config.h"
7#endif
8#if HAVE_STDINT_H
9# include <stdint.h>
10#endif
11#include <stdlib.h>
12#include <math.h>
13#include "lpcm.h"
14#include "m4af_endian.h"
15
16#ifdef _MSC_VER
17# define inline __inline
18# ifdef _M_IX86
19inline int lrint(double x)
20{
21 int n;
22 _asm {
23 fld x
24 fistp n
25 }
26 return n;
27}
28# else
29# include <emmintrin.h>
30inline int lrint(double x)
31{
32 return _mm_cvtsd_si32(_mm_load_sd(&x));
33}
34# endif
35#endif
36
37static
38inline double pcm_clip(double n, double min_value, double max_value)
39{
40 if (n < min_value)
41 return min_value;
42 else if (n > max_value)
43 return max_value;
44 return n;
45}
46static
47inline float pcm_i2f(int32_t n)
48{
49 union {
50 int32_t ivalue;
51 float fvalue;
52 } u;
53 u.ivalue = n;
54 return u.fvalue;
55}
56static
57inline double pcm_i2d(int64_t n)
58{
59 union {
60 int64_t ivalue;
61 double fvalue;
62 } u;
63 u.ivalue = n;
64 return u.fvalue;
65}
66static
67inline int16_t pcm_quantize_s32(int32_t n)
68{
69 n = ((n >> 15) + 1) >> 1;
70 return (n == 0x8000) ? 0x7fff : n;
71}
72static
73inline int16_t pcm_quantize_f64(double v)
74{
75 return (int16_t)lrint(pcm_clip(v * 32768.0, -32768.0, 32767.0));
76}
77static
78inline int16_t pcm_s8_to_s16(int8_t n)
79{
80 return n << 8;
81}
82static
83inline int16_t pcm_u8_to_s16(uint8_t n)
84{
85 return (n << 8) ^ 0x8000;
86}
87static
88inline int16_t pcm_s16le_to_s16(int16_t n)
89{
90 return m4af_ltoh16(n);
91}
92static
93inline int16_t pcm_s16be_to_s16(int16_t n)
94{
95 return m4af_btoh16(n);
96}
97static
98inline int16_t pcm_u16le_to_s16(uint16_t n)
99{
100 return m4af_ltoh16(n) ^ 0x8000;
101}
102static
103inline int16_t pcm_u16be_to_s16(uint16_t n)
104{
105 return m4af_btoh16(n) ^ 0x8000;
106}
107static
108inline int32_t pcm_s24le_to_s32(uint8_t *p)
109{
110 return p[0]<<8 | p[1]<<16 | p[2]<<24;
111}
112static
113inline int32_t pcm_s24be_to_s32(uint8_t *p)
114{
115 return p[0]<<24 | p[1]<<16 | p[2]<<8;
116}
117static
118inline int32_t pcm_u24le_to_s32(uint8_t *p)
119{
120 return pcm_s24le_to_s32(p) ^ 0x80000000;
121}
122static
123inline int32_t pcm_u24be_to_s32(uint8_t *p)
124{
125 return pcm_s24be_to_s32(p) ^ 0x80000000;
126}
127static
128inline int16_t pcm_s24le_to_s16(uint8_t *p)
129{
130 return pcm_quantize_s32(pcm_s24le_to_s32(p));
131}
132static
133inline int16_t pcm_s24be_to_s16(uint8_t *p)
134{
135 return pcm_quantize_s32(pcm_s24be_to_s32(p));
136}
137static
138inline int16_t pcm_u24le_to_s16(uint8_t *p)
139{
140 return pcm_quantize_s32(pcm_u24le_to_s32(p));
141}
142static
143inline int16_t pcm_u24be_to_s16(uint8_t *p)
144{
145 return pcm_quantize_s32(pcm_u24be_to_s32(p));
146}
147static
148inline int16_t pcm_s32le_to_s16(int32_t n)
149{
150 return pcm_quantize_s32(m4af_ltoh32(n));
151}
152static
153inline int16_t pcm_s32be_to_s16(int32_t n)
154{
155 return pcm_quantize_s32(m4af_btoh32(n));
156}
157static
158inline int16_t pcm_u32le_to_s16(int32_t n)
159{
160 return pcm_quantize_s32(m4af_ltoh32(n) ^ 0x80000000);
161}
162static
163inline int16_t pcm_u32be_to_s16(int32_t n)
164{
165 return pcm_quantize_s32(m4af_btoh32(n) ^ 0x80000000);
166}
167static
168inline int16_t pcm_f32le_to_s16(int32_t n)
169{
170 return pcm_quantize_f64(pcm_i2f(m4af_ltoh32(n)));
171}
172static
173inline int16_t pcm_f32be_to_s16(int32_t n)
174{
175 return pcm_quantize_f64(pcm_i2f(m4af_btoh32(n)));
176}
177static
178inline int16_t pcm_f64le_to_s16(int64_t n)
179{
180 return pcm_quantize_f64(pcm_i2d(m4af_ltoh64(n)));
181}
182static
183inline int16_t pcm_f64be_to_s16(int64_t n)
184{
185 return pcm_quantize_f64(pcm_i2d(m4af_btoh64(n)));
186}
187
188int pcm_convert_to_native_sint16(const pcm_sample_description_t *format,
189 const void *input, uint32_t nframes,
190 int16_t *result)
191{
192#define CONVERT(type, conv) \
193 do { \
194 unsigned i; \
195 type *ip = (type *)input; \
196 for (i = 0; i < count; ++i) { \
197 result[i] = conv(ip[i]); \
198 } \
199 } while(0)
200
201#define CONVERT_BYTES(conv) \
202 do { \
203 unsigned i, bytes_per_channel; \
204 uint8_t *ip = (uint8_t *)input; \
205 bytes_per_channel = PCM_BYTES_PER_CHANNEL(format); \
206 for (i = 0; i < count; ++i) { \
207 result[i] = conv(ip); \
208 ip += bytes_per_channel; \
209 } \
210 } while(0)
211
212 uint32_t count = nframes * format->channels_per_frame;
213 if (!count)
214 return 0;
215 switch (PCM_BYTES_PER_CHANNEL(format) | format->sample_type<<4) {
216 case 1 | PCM_TYPE_SINT<<4:
217 CONVERT(int8_t, pcm_s8_to_s16); break;
218 case 1 | PCM_TYPE_UINT<<4:
219 CONVERT(uint8_t, pcm_u8_to_s16); break;
220 case 2 | PCM_TYPE_SINT<<4:
221 CONVERT(int16_t, pcm_s16le_to_s16); break;
222 case 2 | PCM_TYPE_UINT<<4:
223 CONVERT(uint16_t, pcm_u16le_to_s16); break;
224 case 2 | PCM_TYPE_SINT_BE<<4:
225 CONVERT(int16_t, pcm_s16be_to_s16); break;
226 case 2 | PCM_TYPE_UINT_BE<<4:
227 CONVERT(int16_t, pcm_u16be_to_s16); break;
228 case 3 | PCM_TYPE_SINT<<4:
229 CONVERT_BYTES(pcm_s24le_to_s16); break;
230 case 3 | PCM_TYPE_UINT<<4:
231 CONVERT_BYTES(pcm_u24le_to_s16); break;
232 case 3 | PCM_TYPE_SINT_BE<<4:
233 CONVERT_BYTES(pcm_s24be_to_s16); break;
234 case 3 | PCM_TYPE_UINT_BE<<4:
235 CONVERT_BYTES(pcm_u24be_to_s16); break;
236 case 4 | PCM_TYPE_SINT<<4:
237 CONVERT(int32_t, pcm_s32le_to_s16); break;
238 case 4 | PCM_TYPE_UINT<<4:
239 CONVERT(uint32_t, pcm_u32le_to_s16); break;
240 case 4 | PCM_TYPE_FLOAT<<4:
241 CONVERT(int32_t, pcm_f32le_to_s16); break;
242 case 4 | PCM_TYPE_SINT_BE<<4:
243 CONVERT(int32_t, pcm_s32be_to_s16); break;
244 case 4 | PCM_TYPE_UINT_BE<<4:
245 CONVERT(uint32_t, pcm_u32be_to_s16); break;
246 case 4 | PCM_TYPE_FLOAT_BE<<4:
247 CONVERT(int32_t, pcm_f32be_to_s16); break;
248 case 8 | PCM_TYPE_FLOAT<<4:
249 CONVERT(int64_t, pcm_f64le_to_s16); break;
250 case 8 | PCM_TYPE_FLOAT_BE<<4:
251 CONVERT(int64_t, pcm_f64be_to_s16); break;
252 default:
253 return -1;
254 }
255 return 0;
256}
This page took 0.023748 seconds and 4 git commands to generate.