blob: 2f5ba71381d43f774acbcda632cd882da8b485f5 [file] [log] [blame]
bellard85571bc2004-11-07 18:04:02 +00001/*
2 * QEMU Mixing engine
3 *
bellard1d14ffa2005-10-30 18:58:22 +00004 * Copyright (c) 2004-2005 Vassili Karpov (malc)
bellard85571bc2004-11-07 18:04:02 +00005 * Copyright (c) 1998 Fabrice Bellard
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
Peter Maydell6086a562016-01-18 17:33:52 +000025#include "qemu/osdep.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010026#include "qemu/bswap.h"
Pavel Dovgalyuk3d4d16f2017-02-02 08:50:54 +030027#include "qemu/error-report.h"
pbrook87ecb682007-11-17 17:14:51 +000028#include "audio.h"
bellard85571bc2004-11-07 18:04:02 +000029
bellard1d14ffa2005-10-30 18:58:22 +000030#define AUDIO_CAP "mixeng"
31#include "audio_int.h"
32
bellard1d14ffa2005-10-30 18:58:22 +000033/* 8 bit */
34#define ENDIAN_CONVERSION natural
35#define ENDIAN_CONVERT(v) (v)
36
37/* Signed 8 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +010038#define BSIZE 8
39#define ITYPE int
bellard1d14ffa2005-10-30 18:58:22 +000040#define IN_MIN SCHAR_MIN
41#define IN_MAX SCHAR_MAX
bellard85571bc2004-11-07 18:04:02 +000042#define SIGNED
bellard1d14ffa2005-10-30 18:58:22 +000043#define SHIFT 8
bellard85571bc2004-11-07 18:04:02 +000044#include "mixeng_template.h"
45#undef SIGNED
46#undef IN_MAX
47#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +010048#undef BSIZE
49#undef ITYPE
bellard1d14ffa2005-10-30 18:58:22 +000050#undef SHIFT
bellard85571bc2004-11-07 18:04:02 +000051
bellard1d14ffa2005-10-30 18:58:22 +000052/* Unsigned 8 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +010053#define BSIZE 8
54#define ITYPE uint
bellard85571bc2004-11-07 18:04:02 +000055#define IN_MIN 0
56#define IN_MAX UCHAR_MAX
bellard1d14ffa2005-10-30 18:58:22 +000057#define SHIFT 8
bellard85571bc2004-11-07 18:04:02 +000058#include "mixeng_template.h"
59#undef IN_MAX
60#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +010061#undef BSIZE
62#undef ITYPE
bellard1d14ffa2005-10-30 18:58:22 +000063#undef SHIFT
bellard85571bc2004-11-07 18:04:02 +000064
bellard1d14ffa2005-10-30 18:58:22 +000065#undef ENDIAN_CONVERT
66#undef ENDIAN_CONVERSION
67
68/* Signed 16 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +010069#define BSIZE 16
70#define ITYPE int
bellard85571bc2004-11-07 18:04:02 +000071#define IN_MIN SHRT_MIN
72#define IN_MAX SHRT_MAX
73#define SIGNED
bellard1d14ffa2005-10-30 18:58:22 +000074#define SHIFT 16
75#define ENDIAN_CONVERSION natural
76#define ENDIAN_CONVERT(v) (v)
bellard85571bc2004-11-07 18:04:02 +000077#include "mixeng_template.h"
bellard1d14ffa2005-10-30 18:58:22 +000078#undef ENDIAN_CONVERT
79#undef ENDIAN_CONVERSION
80#define ENDIAN_CONVERSION swap
81#define ENDIAN_CONVERT(v) bswap16 (v)
82#include "mixeng_template.h"
83#undef ENDIAN_CONVERT
84#undef ENDIAN_CONVERSION
bellard85571bc2004-11-07 18:04:02 +000085#undef SIGNED
86#undef IN_MAX
87#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +010088#undef BSIZE
89#undef ITYPE
bellard1d14ffa2005-10-30 18:58:22 +000090#undef SHIFT
bellard85571bc2004-11-07 18:04:02 +000091
thsf941aa22007-02-17 22:19:29 +000092/* Unsigned 16 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +010093#define BSIZE 16
94#define ITYPE uint
bellard85571bc2004-11-07 18:04:02 +000095#define IN_MIN 0
96#define IN_MAX USHRT_MAX
bellard1d14ffa2005-10-30 18:58:22 +000097#define SHIFT 16
98#define ENDIAN_CONVERSION natural
99#define ENDIAN_CONVERT(v) (v)
bellard85571bc2004-11-07 18:04:02 +0000100#include "mixeng_template.h"
bellard1d14ffa2005-10-30 18:58:22 +0000101#undef ENDIAN_CONVERT
102#undef ENDIAN_CONVERSION
103#define ENDIAN_CONVERSION swap
104#define ENDIAN_CONVERT(v) bswap16 (v)
105#include "mixeng_template.h"
106#undef ENDIAN_CONVERT
107#undef ENDIAN_CONVERSION
bellard85571bc2004-11-07 18:04:02 +0000108#undef IN_MAX
109#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +0100110#undef BSIZE
111#undef ITYPE
bellard1d14ffa2005-10-30 18:58:22 +0000112#undef SHIFT
bellard85571bc2004-11-07 18:04:02 +0000113
thsf941aa22007-02-17 22:19:29 +0000114/* Signed 32 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +0100115#define BSIZE 32
116#define ITYPE int
thsf941aa22007-02-17 22:19:29 +0000117#define IN_MIN INT32_MIN
118#define IN_MAX INT32_MAX
119#define SIGNED
120#define SHIFT 32
121#define ENDIAN_CONVERSION natural
122#define ENDIAN_CONVERT(v) (v)
123#include "mixeng_template.h"
124#undef ENDIAN_CONVERT
125#undef ENDIAN_CONVERSION
126#define ENDIAN_CONVERSION swap
127#define ENDIAN_CONVERT(v) bswap32 (v)
128#include "mixeng_template.h"
129#undef ENDIAN_CONVERT
130#undef ENDIAN_CONVERSION
131#undef SIGNED
132#undef IN_MAX
133#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +0100134#undef BSIZE
135#undef ITYPE
thsf941aa22007-02-17 22:19:29 +0000136#undef SHIFT
137
malcad483a52010-03-11 18:28:38 +0300138/* Unsigned 32 bit */
Roger Pau Monnea2885382012-05-18 12:08:14 +0100139#define BSIZE 32
140#define ITYPE uint
thsf941aa22007-02-17 22:19:29 +0000141#define IN_MIN 0
142#define IN_MAX UINT32_MAX
143#define SHIFT 32
144#define ENDIAN_CONVERSION natural
145#define ENDIAN_CONVERT(v) (v)
146#include "mixeng_template.h"
147#undef ENDIAN_CONVERT
148#undef ENDIAN_CONVERSION
149#define ENDIAN_CONVERSION swap
150#define ENDIAN_CONVERT(v) bswap32 (v)
151#include "mixeng_template.h"
152#undef ENDIAN_CONVERT
153#undef ENDIAN_CONVERSION
154#undef IN_MAX
155#undef IN_MIN
Roger Pau Monnea2885382012-05-18 12:08:14 +0100156#undef BSIZE
157#undef ITYPE
thsf941aa22007-02-17 22:19:29 +0000158#undef SHIFT
159
160t_sample *mixeng_conv[2][2][2][3] = {
bellard85571bc2004-11-07 18:04:02 +0000161 {
162 {
bellard1d14ffa2005-10-30 18:58:22 +0000163 {
164 conv_natural_uint8_t_to_mono,
thsf941aa22007-02-17 22:19:29 +0000165 conv_natural_uint16_t_to_mono,
166 conv_natural_uint32_t_to_mono
bellard1d14ffa2005-10-30 18:58:22 +0000167 },
168 {
169 conv_natural_uint8_t_to_mono,
thsf941aa22007-02-17 22:19:29 +0000170 conv_swap_uint16_t_to_mono,
171 conv_swap_uint32_t_to_mono,
bellard1d14ffa2005-10-30 18:58:22 +0000172 }
bellard85571bc2004-11-07 18:04:02 +0000173 },
174 {
bellard1d14ffa2005-10-30 18:58:22 +0000175 {
176 conv_natural_int8_t_to_mono,
thsf941aa22007-02-17 22:19:29 +0000177 conv_natural_int16_t_to_mono,
178 conv_natural_int32_t_to_mono
bellard1d14ffa2005-10-30 18:58:22 +0000179 },
180 {
181 conv_natural_int8_t_to_mono,
thsf941aa22007-02-17 22:19:29 +0000182 conv_swap_int16_t_to_mono,
183 conv_swap_int32_t_to_mono
bellard1d14ffa2005-10-30 18:58:22 +0000184 }
bellard85571bc2004-11-07 18:04:02 +0000185 }
186 },
187 {
188 {
bellard1d14ffa2005-10-30 18:58:22 +0000189 {
190 conv_natural_uint8_t_to_stereo,
thsf941aa22007-02-17 22:19:29 +0000191 conv_natural_uint16_t_to_stereo,
192 conv_natural_uint32_t_to_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000193 },
194 {
195 conv_natural_uint8_t_to_stereo,
thsf941aa22007-02-17 22:19:29 +0000196 conv_swap_uint16_t_to_stereo,
197 conv_swap_uint32_t_to_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000198 }
bellard85571bc2004-11-07 18:04:02 +0000199 },
200 {
bellard1d14ffa2005-10-30 18:58:22 +0000201 {
202 conv_natural_int8_t_to_stereo,
thsf941aa22007-02-17 22:19:29 +0000203 conv_natural_int16_t_to_stereo,
204 conv_natural_int32_t_to_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000205 },
206 {
207 conv_natural_int8_t_to_stereo,
thsf941aa22007-02-17 22:19:29 +0000208 conv_swap_int16_t_to_stereo,
209 conv_swap_int32_t_to_stereo,
bellard1d14ffa2005-10-30 18:58:22 +0000210 }
bellard85571bc2004-11-07 18:04:02 +0000211 }
212 }
213};
214
thsf941aa22007-02-17 22:19:29 +0000215f_sample *mixeng_clip[2][2][2][3] = {
bellard85571bc2004-11-07 18:04:02 +0000216 {
217 {
bellard1d14ffa2005-10-30 18:58:22 +0000218 {
219 clip_natural_uint8_t_from_mono,
thsf941aa22007-02-17 22:19:29 +0000220 clip_natural_uint16_t_from_mono,
221 clip_natural_uint32_t_from_mono
bellard1d14ffa2005-10-30 18:58:22 +0000222 },
223 {
224 clip_natural_uint8_t_from_mono,
thsf941aa22007-02-17 22:19:29 +0000225 clip_swap_uint16_t_from_mono,
226 clip_swap_uint32_t_from_mono
bellard1d14ffa2005-10-30 18:58:22 +0000227 }
bellard85571bc2004-11-07 18:04:02 +0000228 },
229 {
bellard1d14ffa2005-10-30 18:58:22 +0000230 {
231 clip_natural_int8_t_from_mono,
thsf941aa22007-02-17 22:19:29 +0000232 clip_natural_int16_t_from_mono,
233 clip_natural_int32_t_from_mono
bellard1d14ffa2005-10-30 18:58:22 +0000234 },
235 {
236 clip_natural_int8_t_from_mono,
thsf941aa22007-02-17 22:19:29 +0000237 clip_swap_int16_t_from_mono,
238 clip_swap_int32_t_from_mono
bellard1d14ffa2005-10-30 18:58:22 +0000239 }
bellard85571bc2004-11-07 18:04:02 +0000240 }
241 },
242 {
243 {
bellard1d14ffa2005-10-30 18:58:22 +0000244 {
245 clip_natural_uint8_t_from_stereo,
thsf941aa22007-02-17 22:19:29 +0000246 clip_natural_uint16_t_from_stereo,
247 clip_natural_uint32_t_from_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000248 },
249 {
250 clip_natural_uint8_t_from_stereo,
thsf941aa22007-02-17 22:19:29 +0000251 clip_swap_uint16_t_from_stereo,
252 clip_swap_uint32_t_from_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000253 }
bellard85571bc2004-11-07 18:04:02 +0000254 },
255 {
bellard1d14ffa2005-10-30 18:58:22 +0000256 {
257 clip_natural_int8_t_from_stereo,
thsf941aa22007-02-17 22:19:29 +0000258 clip_natural_int16_t_from_stereo,
259 clip_natural_int32_t_from_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000260 },
261 {
262 clip_natural_int8_t_from_stereo,
thsf941aa22007-02-17 22:19:29 +0000263 clip_swap_int16_t_from_stereo,
264 clip_swap_int32_t_from_stereo
bellard1d14ffa2005-10-30 18:58:22 +0000265 }
bellard85571bc2004-11-07 18:04:02 +0000266 }
267 }
268};
269
Pavel Dovgalyuk3d4d16f2017-02-02 08:50:54 +0300270
271void audio_sample_to_uint64(void *samples, int pos,
272 uint64_t *left, uint64_t *right)
273{
274 struct st_sample *sample = samples;
275 sample += pos;
276#ifdef FLOAT_MIXENG
277 error_report(
278 "Coreaudio and floating point samples are not supported by replay yet");
279 abort();
280#else
281 *left = sample->l;
282 *right = sample->r;
283#endif
284}
285
286void audio_sample_from_uint64(void *samples, int pos,
287 uint64_t left, uint64_t right)
288{
289 struct st_sample *sample = samples;
290 sample += pos;
291#ifdef FLOAT_MIXENG
292 error_report(
293 "Coreaudio and floating point samples are not supported by replay yet");
294 abort();
295#else
296 sample->l = left;
297 sample->r = right;
298#endif
299}
300
bellard85571bc2004-11-07 18:04:02 +0000301/*
302 * August 21, 1998
303 * Copyright 1998 Fabrice Bellard.
304 *
Stefan Weilcb8d4c82016-03-23 15:59:57 +0100305 * [Rewrote completely the code of Lance Norskog And Sundry
bellard85571bc2004-11-07 18:04:02 +0000306 * Contributors with a more efficient algorithm.]
307 *
308 * This source code is freely redistributable and may be used for
bellard1d14ffa2005-10-30 18:58:22 +0000309 * any purpose. This copyright notice must be maintained.
310 * Lance Norskog And Sundry Contributors are not responsible for
311 * the consequences of using this software.
bellard85571bc2004-11-07 18:04:02 +0000312 */
313
314/*
315 * Sound Tools rate change effect file.
316 */
317/*
318 * Linear Interpolation.
319 *
320 * The use of fractional increment allows us to use no buffer. It
321 * avoid the problems at the end of the buffer we had with the old
322 * method which stored a possibly big buffer of size
323 * lcm(in_rate,out_rate).
324 *
325 * Limited to 16 bit samples and sampling frequency <= 65535 Hz. If
326 * the input & output frequencies are equal, a delay of one sample is
327 * introduced. Limited to processing 32-bit count worth of samples.
328 *
329 * 1 << FRAC_BITS evaluating to zero in several places. Changed with
330 * an (unsigned long) cast to make it safe. MarkMLl 2/1/99
331 */
332
333/* Private data */
bellardc0fe3822005-11-05 18:55:28 +0000334struct rate {
bellard85571bc2004-11-07 18:04:02 +0000335 uint64_t opos;
336 uint64_t opos_inc;
337 uint32_t ipos; /* position in the input stream (integer) */
malc1ea879e2008-12-03 22:48:44 +0000338 struct st_sample ilast; /* last sample in the input stream */
bellardc0fe3822005-11-05 18:55:28 +0000339};
bellard85571bc2004-11-07 18:04:02 +0000340
341/*
342 * Prepare processing.
343 */
344void *st_rate_start (int inrate, int outrate)
345{
Alistair Francis470bcab2018-02-03 09:43:02 +0100346 struct rate *rate = audio_calloc(__func__, 1, sizeof(*rate));
bellard85571bc2004-11-07 18:04:02 +0000347
348 if (!rate) {
bellarde7cad332005-11-11 00:03:36 +0000349 dolog ("Could not allocate resampler (%zu bytes)\n", sizeof (*rate));
bellard1d14ffa2005-10-30 18:58:22 +0000350 return NULL;
bellard85571bc2004-11-07 18:04:02 +0000351 }
352
353 rate->opos = 0;
354
355 /* increment */
bellard1d14ffa2005-10-30 18:58:22 +0000356 rate->opos_inc = ((uint64_t) inrate << 32) / outrate;
bellard85571bc2004-11-07 18:04:02 +0000357
358 rate->ipos = 0;
359 rate->ilast.l = 0;
360 rate->ilast.r = 0;
361 return rate;
362}
363
bellard1d14ffa2005-10-30 18:58:22 +0000364#define NAME st_rate_flow_mix
365#define OP(a, b) a += b
366#include "rate_template.h"
bellard85571bc2004-11-07 18:04:02 +0000367
bellard1d14ffa2005-10-30 18:58:22 +0000368#define NAME st_rate_flow
369#define OP(a, b) a = b
370#include "rate_template.h"
bellard85571bc2004-11-07 18:04:02 +0000371
372void st_rate_stop (void *opaque)
373{
Anthony Liguori7267c092011-08-20 22:09:37 -0500374 g_free (opaque);
bellard85571bc2004-11-07 18:04:02 +0000375}
bellard1d14ffa2005-10-30 18:58:22 +0000376
malc1ea879e2008-12-03 22:48:44 +0000377void mixeng_clear (struct st_sample *buf, int len)
bellard1d14ffa2005-10-30 18:58:22 +0000378{
malc1ea879e2008-12-03 22:48:44 +0000379 memset (buf, 0, len * sizeof (struct st_sample));
bellard1d14ffa2005-10-30 18:58:22 +0000380}
Michael Walle00e07672011-01-05 01:05:47 +0100381
382void mixeng_volume (struct st_sample *buf, int len, struct mixeng_volume *vol)
383{
Michael Walle00e07672011-01-05 01:05:47 +0100384 if (vol->mute) {
385 mixeng_clear (buf, len);
386 return;
387 }
388
389 while (len--) {
390#ifdef FLOAT_MIXENG
391 buf->l = buf->l * vol->l;
392 buf->r = buf->r * vol->r;
393#else
394 buf->l = (buf->l * vol->l) >> 32;
395 buf->r = (buf->r * vol->r) >> 32;
396#endif
397 buf += 1;
398 }
Michael Walle00e07672011-01-05 01:05:47 +0100399}