bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Audio subsystem header |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2003-2005 Vassili Karpov (malc) |
| 5 | * |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
Markus Armbruster | 175de52 | 2016-06-29 15:29:06 +0200 | [diff] [blame] | 24 | |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 25 | #ifndef QEMU_AUDIO_INT_H |
| 26 | #define QEMU_AUDIO_INT_H |
| 27 | |
Gerd Hoffmann | 1ef1ec2 | 2018-03-01 11:05:46 +0100 | [diff] [blame] | 28 | #ifdef CONFIG_AUDIO_COREAUDIO |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 29 | #define FLOAT_MIXENG |
| 30 | /* #define RECIPROCAL */ |
| 31 | #endif |
| 32 | #include "mixeng.h" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 33 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 34 | struct audio_pcm_ops; |
| 35 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 36 | struct audio_callback { |
| 37 | void *opaque; |
malc | cb4f03e | 2009-10-15 02:40:17 +0400 | [diff] [blame] | 38 | audio_callback_fn fn; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | struct audio_pcm_info { |
| 42 | int bits; |
Kővágó, Zoltán | ed2a4a7 | 2020-02-02 20:38:07 +0100 | [diff] [blame] | 43 | bool is_signed; |
| 44 | bool is_float; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 45 | int freq; |
| 46 | int nchannels; |
Kővágó, Zoltán | 2b9cce8 | 2019-10-13 21:58:02 +0200 | [diff] [blame] | 47 | int bytes_per_frame; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 48 | int bytes_per_second; |
bellard | d929eba | 2006-07-04 21:47:22 +0000 | [diff] [blame] | 49 | int swap_endianness; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 52 | typedef struct AudioState AudioState; |
bellard | ec36b69 | 2006-07-16 18:57:03 +0000 | [diff] [blame] | 53 | typedef struct SWVoiceCap SWVoiceCap; |
| 54 | |
Kővágó, Zoltán | dc88e38 | 2019-09-19 23:24:20 +0200 | [diff] [blame] | 55 | typedef struct STSampleBuffer { |
| 56 | size_t pos, size; |
| 57 | st_sample samples[]; |
| 58 | } STSampleBuffer; |
| 59 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 60 | typedef struct HWVoiceOut { |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 61 | AudioState *s; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 62 | int enabled; |
malc | 713a98f | 2009-09-12 02:28:45 +0400 | [diff] [blame] | 63 | int poll_mode; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 64 | int pending_disable; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 65 | struct audio_pcm_info info; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 66 | |
| 67 | f_sample *clip; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 68 | uint64_t ts_helper; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 69 | |
Kővágó, Zoltán | dc88e38 | 2019-09-19 23:24:20 +0200 | [diff] [blame] | 70 | STSampleBuffer *mix_buf; |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 71 | void *buf_emul; |
| 72 | size_t pos_emul, pending_emul, size_emul; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 73 | |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 74 | size_t samples; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 75 | QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head; |
| 76 | QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head; |
blueswir1 | 35f4b58 | 2008-10-06 18:08:30 +0000 | [diff] [blame] | 77 | struct audio_pcm_ops *pcm_ops; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 78 | QLIST_ENTRY (HWVoiceOut) entries; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 79 | } HWVoiceOut; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 80 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 81 | typedef struct HWVoiceIn { |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 82 | AudioState *s; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 83 | int enabled; |
malc | 713a98f | 2009-09-12 02:28:45 +0400 | [diff] [blame] | 84 | int poll_mode; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 85 | struct audio_pcm_info info; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 86 | |
| 87 | t_sample *conv; |
| 88 | |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 89 | size_t total_samples_captured; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 90 | uint64_t ts_helper; |
| 91 | |
Kővágó, Zoltán | dc88e38 | 2019-09-19 23:24:20 +0200 | [diff] [blame] | 92 | STSampleBuffer *conv_buf; |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 93 | void *buf_emul; |
| 94 | size_t pos_emul, pending_emul, size_emul; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 95 | |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 96 | size_t samples; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 97 | QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head; |
blueswir1 | 35f4b58 | 2008-10-06 18:08:30 +0000 | [diff] [blame] | 98 | struct audio_pcm_ops *pcm_ops; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 99 | QLIST_ENTRY (HWVoiceIn) entries; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 100 | } HWVoiceIn; |
| 101 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 102 | struct SWVoiceOut { |
malc | 1a7dafc | 2009-05-14 03:11:35 +0400 | [diff] [blame] | 103 | QEMUSoundCard *card; |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 104 | AudioState *s; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 105 | struct audio_pcm_info info; |
| 106 | t_sample *conv; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 107 | int64_t ratio; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 108 | struct st_sample *buf; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 109 | void *rate; |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 110 | size_t total_hw_samples_mixed; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 111 | int active; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 112 | int empty; |
| 113 | HWVoiceOut *hw; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 114 | char *name; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 115 | struct mixeng_volume vol; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 116 | struct audio_callback callback; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 117 | QLIST_ENTRY (SWVoiceOut) entries; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 120 | struct SWVoiceIn { |
malc | 1a7dafc | 2009-05-14 03:11:35 +0400 | [diff] [blame] | 121 | QEMUSoundCard *card; |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 122 | AudioState *s; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 123 | int active; |
| 124 | struct audio_pcm_info info; |
| 125 | int64_t ratio; |
| 126 | void *rate; |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 127 | size_t total_hw_samples_acquired; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 128 | struct st_sample *buf; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 129 | f_sample *clip; |
| 130 | HWVoiceIn *hw; |
| 131 | char *name; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 132 | struct mixeng_volume vol; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 133 | struct audio_callback callback; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 134 | QLIST_ENTRY (SWVoiceIn) entries; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 135 | }; |
| 136 | |
Gerd Hoffmann | d3893a3 | 2018-03-06 08:40:47 +0100 | [diff] [blame] | 137 | typedef struct audio_driver audio_driver; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 138 | struct audio_driver { |
| 139 | const char *name; |
| 140 | const char *descr; |
Kővágó, Zoltán | 7183022 | 2019-03-08 23:34:15 +0100 | [diff] [blame] | 141 | void *(*init) (Audiodev *); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 142 | void (*fini) (void *); |
blueswir1 | 35f4b58 | 2008-10-06 18:08:30 +0000 | [diff] [blame] | 143 | struct audio_pcm_ops *pcm_ops; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 144 | int can_be_default; |
| 145 | int max_voices_out; |
| 146 | int max_voices_in; |
| 147 | int voice_size_out; |
| 148 | int voice_size_in; |
Gerd Hoffmann | d3893a3 | 2018-03-06 08:40:47 +0100 | [diff] [blame] | 149 | QLIST_ENTRY(audio_driver) next; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 150 | }; |
| 151 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 152 | struct audio_pcm_ops { |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 153 | int (*init_out)(HWVoiceOut *hw, audsettings *as, void *drv_opaque); |
| 154 | void (*fini_out)(HWVoiceOut *hw); |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 155 | size_t (*write) (HWVoiceOut *hw, void *buf, size_t size); |
Volker Rümelin | fdc8c5f | 2020-01-23 08:49:39 +0100 | [diff] [blame] | 156 | void (*run_buffer_out)(HWVoiceOut *hw); |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 157 | /* |
| 158 | * get a buffer that after later can be passed to put_buffer_out; optional |
| 159 | * returns the buffer, and writes it's size to size (in bytes) |
| 160 | * this is unrelated to the above buffer_size_out function |
| 161 | */ |
| 162 | void *(*get_buffer_out)(HWVoiceOut *hw, size_t *size); |
| 163 | /* |
| 164 | * put back the buffer returned by get_buffer_out; optional |
| 165 | * buf must be equal the pointer returned by get_buffer_out, |
| 166 | * size may be smaller |
| 167 | */ |
| 168 | size_t (*put_buffer_out)(HWVoiceOut *hw, void *buf, size_t size); |
Kővágó, Zoltán | 571a8c5 | 2019-09-19 23:24:22 +0200 | [diff] [blame] | 169 | void (*enable_out)(HWVoiceOut *hw, bool enable); |
Kővágó, Zoltán | cecc1e7 | 2019-10-13 21:58:01 +0200 | [diff] [blame] | 170 | void (*volume_out)(HWVoiceOut *hw, Volume *vol); |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 171 | |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 172 | int (*init_in) (HWVoiceIn *hw, audsettings *as, void *drv_opaque); |
| 173 | void (*fini_in) (HWVoiceIn *hw); |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 174 | size_t (*read) (HWVoiceIn *hw, void *buf, size_t size); |
| 175 | void *(*get_buffer_in)(HWVoiceIn *hw, size_t *size); |
| 176 | void (*put_buffer_in)(HWVoiceIn *hw, void *buf, size_t size); |
Kővágó, Zoltán | 571a8c5 | 2019-09-19 23:24:22 +0200 | [diff] [blame] | 177 | void (*enable_in)(HWVoiceIn *hw, bool enable); |
Kővágó, Zoltán | cecc1e7 | 2019-10-13 21:58:01 +0200 | [diff] [blame] | 178 | void (*volume_in)(HWVoiceIn *hw, Volume *vol); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 179 | }; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 180 | |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 181 | void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size); |
| 182 | void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size); |
Volker Rümelin | fdc8c5f | 2020-01-23 08:49:39 +0100 | [diff] [blame] | 183 | void audio_generic_run_buffer_out(HWVoiceOut *hw); |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 184 | void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size); |
| 185 | size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size); |
Kővágó, Zoltán | ff095e5 | 2019-09-19 23:24:09 +0200 | [diff] [blame] | 186 | size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size); |
| 187 | size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size); |
| 188 | |
bellard | 8ead62c | 2006-07-04 16:51:32 +0000 | [diff] [blame] | 189 | struct capture_callback { |
| 190 | struct audio_capture_ops ops; |
| 191 | void *opaque; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 192 | QLIST_ENTRY (capture_callback) entries; |
bellard | 8ead62c | 2006-07-04 16:51:32 +0000 | [diff] [blame] | 193 | }; |
| 194 | |
bellard | ec36b69 | 2006-07-16 18:57:03 +0000 | [diff] [blame] | 195 | struct CaptureVoiceOut { |
bellard | 8ead62c | 2006-07-04 16:51:32 +0000 | [diff] [blame] | 196 | HWVoiceOut hw; |
| 197 | void *buf; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 198 | QLIST_HEAD (cb_listhead, capture_callback) cb_head; |
| 199 | QLIST_ENTRY (CaptureVoiceOut) entries; |
bellard | ec36b69 | 2006-07-16 18:57:03 +0000 | [diff] [blame] | 200 | }; |
| 201 | |
| 202 | struct SWVoiceCap { |
| 203 | SWVoiceOut sw; |
| 204 | CaptureVoiceOut *cap; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 205 | QLIST_ENTRY (SWVoiceCap) entries; |
bellard | ec36b69 | 2006-07-16 18:57:03 +0000 | [diff] [blame] | 206 | }; |
bellard | 8ead62c | 2006-07-04 16:51:32 +0000 | [diff] [blame] | 207 | |
Philippe Mathieu-Daudé | fd5283f | 2019-01-11 15:08:53 +0100 | [diff] [blame] | 208 | typedef struct AudioState { |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 209 | struct audio_driver *drv; |
Kővágó, Zoltán | 7183022 | 2019-03-08 23:34:15 +0100 | [diff] [blame] | 210 | Audiodev *dev; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 211 | void *drv_opaque; |
| 212 | |
| 213 | QEMUTimer *ts; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 214 | QLIST_HEAD (card_listhead, QEMUSoundCard) card_head; |
| 215 | QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in; |
| 216 | QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out; |
| 217 | QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 218 | int nb_hw_voices_out; |
| 219 | int nb_hw_voices_in; |
malc | 978dd63 | 2009-02-18 20:44:04 +0000 | [diff] [blame] | 220 | int vm_running; |
Kővágó, Zoltán | 7183022 | 2019-03-08 23:34:15 +0100 | [diff] [blame] | 221 | int64_t period_ticks; |
Kővágó, Zoltán | 526fb05 | 2019-08-19 01:06:46 +0200 | [diff] [blame] | 222 | |
| 223 | bool timer_running; |
| 224 | uint64_t timer_last; |
Kővágó, Zoltán | ecd97e9 | 2019-08-19 01:06:47 +0200 | [diff] [blame] | 225 | |
| 226 | QTAILQ_ENTRY(AudioState) list; |
Philippe Mathieu-Daudé | fd5283f | 2019-01-11 15:08:53 +0100 | [diff] [blame] | 227 | } AudioState; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 228 | |
Michael Walle | 00e0767 | 2011-01-05 01:05:47 +0100 | [diff] [blame] | 229 | extern const struct mixeng_volume nominal_volume; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 230 | |
Kővágó, Zoltán | 7183022 | 2019-03-08 23:34:15 +0100 | [diff] [blame] | 231 | extern const char *audio_prio_list[]; |
| 232 | |
Gerd Hoffmann | d3893a3 | 2018-03-06 08:40:47 +0100 | [diff] [blame] | 233 | void audio_driver_register(audio_driver *drv); |
| 234 | audio_driver *audio_driver_lookup(const char *name); |
| 235 | |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 236 | void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 237 | void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len); |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 238 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 239 | int audio_bug (const char *funcname, int cond); |
| 240 | void *audio_calloc (const char *funcname, int nmemb, size_t size); |
| 241 | |
Kővágó, Zoltán | 18e2c17 | 2019-08-19 01:06:55 +0200 | [diff] [blame] | 242 | void audio_run(AudioState *s, const char *msg); |
malc | 713a98f | 2009-09-12 02:28:45 +0400 | [diff] [blame] | 243 | |
Kővágó, Zoltán | 857271a | 2019-09-19 23:24:21 +0200 | [diff] [blame] | 244 | typedef struct RateCtl { |
| 245 | int64_t start_ticks; |
| 246 | int64_t bytes_sent; |
| 247 | } RateCtl; |
| 248 | |
| 249 | void audio_rate_start(RateCtl *rate); |
| 250 | size_t audio_rate_get_bytes(struct audio_pcm_info *info, RateCtl *rate, |
| 251 | size_t bytes_avail); |
| 252 | |
Kővágó, Zoltán | 7520462 | 2019-08-19 01:06:58 +0200 | [diff] [blame] | 253 | static inline size_t audio_ring_dist(size_t dst, size_t src, size_t len) |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 254 | { |
| 255 | return (dst >= src) ? (dst - src) : (len - src + dst); |
| 256 | } |
| 257 | |
Stefan Weil | 87e613e | 2013-06-16 11:19:31 +0200 | [diff] [blame] | 258 | #define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__) |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 259 | |
| 260 | #ifdef DEBUG |
Stefan Weil | 87e613e | 2013-06-16 11:19:31 +0200 | [diff] [blame] | 261 | #define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__) |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 262 | #else |
Stefan Weil | 87e613e | 2013-06-16 11:19:31 +0200 | [diff] [blame] | 263 | #define ldebug(fmt, ...) (void)0 |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 264 | #endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 265 | |
| 266 | #define AUDIO_STRINGIFY_(n) #n |
| 267 | #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n) |
| 268 | |
Kővágó, Zoltán | 7183022 | 2019-03-08 23:34:15 +0100 | [diff] [blame] | 269 | typedef struct AudiodevListEntry { |
| 270 | Audiodev *dev; |
| 271 | QSIMPLEQ_ENTRY(AudiodevListEntry) next; |
| 272 | } AudiodevListEntry; |
| 273 | |
| 274 | typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead; |
| 275 | AudiodevListHead audio_handle_legacy_opts(void); |
| 276 | |
| 277 | void audio_free_audiodev_list(AudiodevListHead *head); |
| 278 | |
| 279 | void audio_create_pdos(Audiodev *dev); |
| 280 | AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev); |
| 281 | AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev); |
| 282 | |
Markus Armbruster | 175de52 | 2016-06-29 15:29:06 +0200 | [diff] [blame] | 283 | #endif /* QEMU_AUDIO_INT_H */ |