2 * QEMU Audio subsystem header
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #ifndef QEMU_AUDIO_INT_H
26 #define QEMU_AUDIO_INT_H
28 #ifdef CONFIG_AUDIO_COREAUDIO
30 /* #define RECIPROCAL */
40 struct audio_callback
{
45 struct audio_pcm_info
{
56 typedef struct AudioState AudioState
;
57 typedef struct SWVoiceCap SWVoiceCap
;
59 typedef struct STSampleBuffer
{
64 typedef struct HWVoiceOut
{
69 struct audio_pcm_info info
;
74 STSampleBuffer
*mix_buf
;
76 size_t pos_emul
, pending_emul
, size_emul
;
79 QLIST_HEAD (sw_out_listhead
, SWVoiceOut
) sw_head
;
80 QLIST_HEAD (sw_cap_listhead
, SWVoiceCap
) cap_head
;
81 struct audio_pcm_ops
*pcm_ops
;
82 QLIST_ENTRY (HWVoiceOut
) entries
;
85 typedef struct HWVoiceIn
{
89 struct audio_pcm_info info
;
93 size_t total_samples_captured
;
96 STSampleBuffer
*conv_buf
;
98 size_t pos_emul
, pending_emul
, size_emul
;
101 QLIST_HEAD (sw_in_listhead
, SWVoiceIn
) sw_head
;
102 struct audio_pcm_ops
*pcm_ops
;
103 QLIST_ENTRY (HWVoiceIn
) entries
;
109 struct audio_pcm_info info
;
112 struct st_sample
*buf
;
114 size_t total_hw_samples_mixed
;
119 struct mixeng_volume vol
;
120 struct audio_callback callback
;
121 QLIST_ENTRY (SWVoiceOut
) entries
;
128 struct audio_pcm_info info
;
131 size_t total_hw_samples_acquired
;
132 struct st_sample
*buf
;
136 struct mixeng_volume vol
;
137 struct audio_callback callback
;
138 QLIST_ENTRY (SWVoiceIn
) entries
;
141 typedef struct audio_driver audio_driver
;
142 struct audio_driver
{
145 void *(*init
) (Audiodev
*);
146 void (*fini
) (void *);
148 void (*set_dbus_server
) (AudioState
*s
, GDBusObjectManagerServer
*manager
);
150 struct audio_pcm_ops
*pcm_ops
;
156 QLIST_ENTRY(audio_driver
) next
;
159 struct audio_pcm_ops
{
160 int (*init_out
)(HWVoiceOut
*hw
, audsettings
*as
, void *drv_opaque
);
161 void (*fini_out
)(HWVoiceOut
*hw
);
162 size_t (*write
) (HWVoiceOut
*hw
, void *buf
, size_t size
);
163 void (*run_buffer_out
)(HWVoiceOut
*hw
);
165 * Get the free output buffer size. This is an upper limit. The size
166 * returned by function get_buffer_out may be smaller.
168 size_t (*buffer_get_free
)(HWVoiceOut
*hw
);
170 * get a buffer that after later can be passed to put_buffer_out; optional
171 * returns the buffer, and writes it's size to size (in bytes)
173 void *(*get_buffer_out
)(HWVoiceOut
*hw
, size_t *size
);
175 * put back the buffer returned by get_buffer_out; optional
176 * buf must be equal the pointer returned by get_buffer_out,
177 * size may be smaller
179 size_t (*put_buffer_out
)(HWVoiceOut
*hw
, void *buf
, size_t size
);
180 void (*enable_out
)(HWVoiceOut
*hw
, bool enable
);
181 void (*volume_out
)(HWVoiceOut
*hw
, Volume
*vol
);
183 int (*init_in
) (HWVoiceIn
*hw
, audsettings
*as
, void *drv_opaque
);
184 void (*fini_in
) (HWVoiceIn
*hw
);
185 size_t (*read
) (HWVoiceIn
*hw
, void *buf
, size_t size
);
186 void (*run_buffer_in
)(HWVoiceIn
*hw
);
187 void *(*get_buffer_in
)(HWVoiceIn
*hw
, size_t *size
);
188 void (*put_buffer_in
)(HWVoiceIn
*hw
, void *buf
, size_t size
);
189 void (*enable_in
)(HWVoiceIn
*hw
, bool enable
);
190 void (*volume_in
)(HWVoiceIn
*hw
, Volume
*vol
);
193 void audio_generic_run_buffer_in(HWVoiceIn
*hw
);
194 void *audio_generic_get_buffer_in(HWVoiceIn
*hw
, size_t *size
);
195 void audio_generic_put_buffer_in(HWVoiceIn
*hw
, void *buf
, size_t size
);
196 void audio_generic_run_buffer_out(HWVoiceOut
*hw
);
197 size_t audio_generic_buffer_get_free(HWVoiceOut
*hw
);
198 void *audio_generic_get_buffer_out(HWVoiceOut
*hw
, size_t *size
);
199 size_t audio_generic_put_buffer_out(HWVoiceOut
*hw
, void *buf
, size_t size
);
200 size_t audio_generic_write(HWVoiceOut
*hw
, void *buf
, size_t size
);
201 size_t audio_generic_read(HWVoiceIn
*hw
, void *buf
, size_t size
);
203 struct capture_callback
{
204 struct audio_capture_ops ops
;
206 QLIST_ENTRY (capture_callback
) entries
;
209 struct CaptureVoiceOut
{
212 QLIST_HEAD (cb_listhead
, capture_callback
) cb_head
;
213 QLIST_ENTRY (CaptureVoiceOut
) entries
;
218 CaptureVoiceOut
*cap
;
219 QLIST_ENTRY (SWVoiceCap
) entries
;
222 typedef struct AudioState
{
223 struct audio_driver
*drv
;
228 QLIST_HEAD (card_listhead
, QEMUSoundCard
) card_head
;
229 QLIST_HEAD (hw_in_listhead
, HWVoiceIn
) hw_head_in
;
230 QLIST_HEAD (hw_out_listhead
, HWVoiceOut
) hw_head_out
;
231 QLIST_HEAD (cap_listhead
, CaptureVoiceOut
) cap_head
;
232 int nb_hw_voices_out
;
235 int64_t period_ticks
;
240 QTAILQ_ENTRY(AudioState
) list
;
243 extern const struct mixeng_volume nominal_volume
;
245 extern const char *audio_prio_list
[];
247 void audio_driver_register(audio_driver
*drv
);
248 audio_driver
*audio_driver_lookup(const char *name
);
250 void audio_pcm_init_info (struct audio_pcm_info
*info
, struct audsettings
*as
);
251 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
);
253 int audio_bug (const char *funcname
, int cond
);
254 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
);
256 void audio_run(AudioState
*s
, const char *msg
);
258 const char *audio_application_name(void);
260 typedef struct RateCtl
{
265 void audio_rate_start(RateCtl
*rate
);
266 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
269 static inline size_t audio_ring_dist(size_t dst
, size_t src
, size_t len
)
271 return (dst
>= src
) ? (dst
- src
) : (len
- src
+ dst
);
275 * audio_ring_posb() - returns new position in ringbuffer in backward
276 * direction at given distance
278 * @pos: current position in ringbuffer
279 * @dist: distance in ringbuffer to walk in reverse direction
280 * @len: size of ringbuffer
282 static inline size_t audio_ring_posb(size_t pos
, size_t dist
, size_t len
)
284 return pos
>= dist
? pos
- dist
: len
- dist
+ pos
;
287 #define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
290 #define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
292 #define ldebug(fmt, ...) (void)0
295 #define AUDIO_STRINGIFY_(n) #n
296 #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
298 typedef struct AudiodevListEntry
{
300 QSIMPLEQ_ENTRY(AudiodevListEntry
) next
;
303 typedef QSIMPLEQ_HEAD(, AudiodevListEntry
) AudiodevListHead
;
304 AudiodevListHead
audio_handle_legacy_opts(void);
306 void audio_free_audiodev_list(AudiodevListHead
*head
);
308 void audio_create_pdos(Audiodev
*dev
);
309 AudiodevPerDirectionOptions
*audio_get_pdo_in(Audiodev
*dev
);
310 AudiodevPerDirectionOptions
*audio_get_pdo_out(Audiodev
*dev
);
312 #endif /* QEMU_AUDIO_INT_H */