2004-11-07 19:04:02 +01:00
|
|
|
/*
|
|
|
|
* QEMU Mixing engine header
|
2005-10-30 19:58:22 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2004-2005 Vassili Karpov (malc)
|
|
|
|
*
|
2004-11-07 19:04:02 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-06-29 15:29:06 +02:00
|
|
|
|
2004-11-07 19:04:02 +01:00
|
|
|
#ifndef QEMU_MIXENG_H
|
|
|
|
#define QEMU_MIXENG_H
|
|
|
|
|
2005-10-30 19:58:22 +01:00
|
|
|
#ifdef FLOAT_MIXENG
|
2008-12-03 23:48:44 +01:00
|
|
|
typedef float mixeng_real;
|
|
|
|
struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; };
|
2009-09-18 06:06:01 +02:00
|
|
|
struct st_sample { mixeng_real l; mixeng_real r; };
|
2005-10-30 19:58:22 +01:00
|
|
|
#else
|
2008-12-03 23:48:44 +01:00
|
|
|
struct mixeng_volume { int mute; int64_t r; int64_t l; };
|
|
|
|
struct st_sample { int64_t l; int64_t r; };
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
2019-08-19 01:06:58 +02:00
|
|
|
typedef struct st_sample st_sample;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2011-01-05 01:05:47 +01:00
|
|
|
typedef void (t_sample) (struct st_sample *dst, const void *src, int samples);
|
2008-12-03 23:48:44 +01:00
|
|
|
typedef void (f_sample) (void *dst, const struct st_sample *src, int samples);
|
2004-11-07 19:04:02 +01:00
|
|
|
|
2023-07-14 13:30:34 +02:00
|
|
|
/* indices: [stereo][signed][swap endianness][8, 16 or 32-bits] */
|
2007-02-17 23:19:29 +01:00
|
|
|
extern t_sample *mixeng_conv[2][2][2][3];
|
|
|
|
extern f_sample *mixeng_clip[2][2][2][3];
|
2004-11-07 19:04:02 +01:00
|
|
|
|
2020-02-02 20:38:07 +01:00
|
|
|
/* indices: [stereo] */
|
|
|
|
extern t_sample *mixeng_conv_float[2];
|
|
|
|
extern f_sample *mixeng_clip_float[2];
|
2020-02-02 15:06:41 +01:00
|
|
|
|
2004-11-07 19:04:02 +01:00
|
|
|
void *st_rate_start (int inrate, int outrate);
|
2019-08-19 01:06:58 +02:00
|
|
|
void st_rate_flow(void *opaque, st_sample *ibuf, st_sample *obuf,
|
|
|
|
size_t *isamp, size_t *osamp);
|
|
|
|
void st_rate_flow_mix(void *opaque, st_sample *ibuf, st_sample *obuf,
|
|
|
|
size_t *isamp, size_t *osamp);
|
2004-11-07 19:04:02 +01:00
|
|
|
void st_rate_stop (void *opaque);
|
2023-02-24 20:05:52 +01:00
|
|
|
uint32_t st_rate_frames_out(void *opaque, uint32_t frames_in);
|
2023-02-24 20:05:49 +01:00
|
|
|
uint32_t st_rate_frames_in(void *opaque, uint32_t frames_out);
|
2008-12-03 23:48:44 +01:00
|
|
|
void mixeng_clear (struct st_sample *buf, int len);
|
2011-01-05 01:05:47 +01:00
|
|
|
void mixeng_volume (struct st_sample *buf, int len, struct mixeng_volume *vol);
|
2004-11-07 19:04:02 +01:00
|
|
|
|
2016-06-29 15:29:06 +02:00
|
|
|
#endif /* QEMU_MIXENG_H */
|