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 */
36 struct audio_callback
{
41 struct audio_pcm_info
{
52 typedef struct AudioState AudioState
;
53 typedef struct SWVoiceCap SWVoiceCap
;
55 typedef struct STSampleBuffer
{
60 typedef struct HWVoiceOut
{
65 struct audio_pcm_info info
;
70 STSampleBuffer
*mix_buf
;
72 size_t pos_emul
, pending_emul
, size_emul
;
75 QLIST_HEAD (sw_out_listhead
, SWVoiceOut
) sw_head
;
76 QLIST_HEAD (sw_cap_listhead
, SWVoiceCap
) cap_head
;
77 struct audio_pcm_ops
*pcm_ops
;
78 QLIST_ENTRY (HWVoiceOut
) entries
;
81 typedef struct HWVoiceIn
{
85 struct audio_pcm_info info
;
89 size_t total_samples_captured
;
92 STSampleBuffer
*conv_buf
;
94 size_t pos_emul
, pending_emul
, size_emul
;
97 QLIST_HEAD (sw_in_listhead
, SWVoiceIn
) sw_head
;
98 struct audio_pcm_ops
*pcm_ops
;
99 QLIST_ENTRY (HWVoiceIn
) entries
;
105 struct audio_pcm_info info
;
108 struct st_sample
*buf
;
110 size_t total_hw_samples_mixed
;
115 struct mixeng_volume vol
;
116 struct audio_callback callback
;
117 QLIST_ENTRY (SWVoiceOut
) entries
;
124 struct audio_pcm_info info
;
127 size_t total_hw_samples_acquired
;
128 struct st_sample
*buf
;
132 struct mixeng_volume vol
;
133 struct audio_callback callback
;
134 QLIST_ENTRY (SWVoiceIn
) entries
;
137 typedef struct audio_driver audio_driver
;
138 struct audio_driver
{
141 void *(*init
) (Audiodev
*);
142 void (*fini
) (void *);
143 struct audio_pcm_ops
*pcm_ops
;
149 QLIST_ENTRY(audio_driver
) next
;
152 struct audio_pcm_ops
{
153 int (*init_out
)(HWVoiceOut
*hw
, audsettings
*as
, void *drv_opaque
);
154 void (*fini_out
)(HWVoiceOut
*hw
);
155 size_t (*write
) (HWVoiceOut
*hw
, void *buf
, size_t size
);
156 void (*run_buffer_out
)(HWVoiceOut
*hw
);
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
162 void *(*get_buffer_out
)(HWVoiceOut
*hw
, size_t *size
);
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
168 size_t (*put_buffer_out
)(HWVoiceOut
*hw
, void *buf
, size_t size
);
169 void (*enable_out
)(HWVoiceOut
*hw
, bool enable
);
170 void (*volume_out
)(HWVoiceOut
*hw
, Volume
*vol
);
172 int (*init_in
) (HWVoiceIn
*hw
, audsettings
*as
, void *drv_opaque
);
173 void (*fini_in
) (HWVoiceIn
*hw
);
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
);
177 void (*enable_in
)(HWVoiceIn
*hw
, bool enable
);
178 void (*volume_in
)(HWVoiceIn
*hw
, Volume
*vol
);
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
);
183 void audio_generic_run_buffer_out(HWVoiceOut
*hw
);
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
);
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
);
189 struct capture_callback
{
190 struct audio_capture_ops ops
;
192 QLIST_ENTRY (capture_callback
) entries
;
195 struct CaptureVoiceOut
{
198 QLIST_HEAD (cb_listhead
, capture_callback
) cb_head
;
199 QLIST_ENTRY (CaptureVoiceOut
) entries
;
204 CaptureVoiceOut
*cap
;
205 QLIST_ENTRY (SWVoiceCap
) entries
;
208 typedef struct AudioState
{
209 struct audio_driver
*drv
;
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
;
218 int nb_hw_voices_out
;
221 int64_t period_ticks
;
226 QTAILQ_ENTRY(AudioState
) list
;
229 extern const struct mixeng_volume nominal_volume
;
231 extern const char *audio_prio_list
[];
233 void audio_driver_register(audio_driver
*drv
);
234 audio_driver
*audio_driver_lookup(const char *name
);
236 void audio_pcm_init_info (struct audio_pcm_info
*info
, struct audsettings
*as
);
237 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
);
239 int audio_bug (const char *funcname
, int cond
);
240 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
);
242 void audio_run(AudioState
*s
, const char *msg
);
244 typedef struct RateCtl
{
249 void audio_rate_start(RateCtl
*rate
);
250 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
253 static inline size_t audio_ring_dist(size_t dst
, size_t src
, size_t len
)
255 return (dst
>= src
) ? (dst
- src
) : (len
- src
+ dst
);
258 #define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
261 #define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
263 #define ldebug(fmt, ...) (void)0
266 #define AUDIO_STRINGIFY_(n) #n
267 #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
269 typedef struct AudiodevListEntry
{
271 QSIMPLEQ_ENTRY(AudiodevListEntry
) next
;
274 typedef QSIMPLEQ_HEAD(, AudiodevListEntry
) AudiodevListHead
;
275 AudiodevListHead
audio_handle_legacy_opts(void);
277 void audio_free_audiodev_list(AudiodevListHead
*head
);
279 void audio_create_pdos(Audiodev
*dev
);
280 AudiodevPerDirectionOptions
*audio_get_pdo_in(Audiodev
*dev
);
281 AudiodevPerDirectionOptions
*audio_get_pdo_out(Audiodev
*dev
);
283 #endif /* QEMU_AUDIO_INT_H */