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
24 #ifndef QEMU_AUDIO_INT_H
25 #define QEMU_AUDIO_INT_H
27 #ifdef CONFIG_COREAUDIO
29 /* #define RECIPROCAL */
44 audio_option_tag_e tag
;
51 struct audio_callback
{
53 audio_callback_fn_t fn
;
56 struct audio_pcm_info
{
67 typedef struct SWVoiceCap SWVoiceCap
;
69 typedef struct HWVoiceOut
{
72 struct audio_pcm_info info
;
82 LIST_HEAD (sw_out_listhead
, SWVoiceOut
) sw_head
;
83 LIST_HEAD (sw_cap_listhead
, SWVoiceCap
) cap_head
;
84 struct audio_pcm_ops
*pcm_ops
;
85 LIST_ENTRY (HWVoiceOut
) entries
;
88 typedef struct HWVoiceIn
{
90 struct audio_pcm_info info
;
95 int total_samples_captured
;
98 st_sample_t
*conv_buf
;
101 LIST_HEAD (sw_in_listhead
, SWVoiceIn
) sw_head
;
102 struct audio_pcm_ops
*pcm_ops
;
103 LIST_ENTRY (HWVoiceIn
) entries
;
107 struct audio_pcm_info info
;
112 int total_hw_samples_mixed
;
118 struct audio_callback callback
;
119 LIST_ENTRY (SWVoiceOut
) entries
;
124 struct audio_pcm_info info
;
127 int total_hw_samples_acquired
;
133 struct audio_callback callback
;
134 LIST_ENTRY (SWVoiceIn
) entries
;
137 struct audio_driver
{
140 struct audio_option
*options
;
141 void *(*init
) (void);
142 void (*fini
) (void *);
143 struct audio_pcm_ops
*pcm_ops
;
151 struct audio_pcm_ops
{
152 int (*init_out
)(HWVoiceOut
*hw
, audsettings_t
*as
);
153 void (*fini_out
)(HWVoiceOut
*hw
);
154 int (*run_out
) (HWVoiceOut
*hw
);
155 int (*write
) (SWVoiceOut
*sw
, void *buf
, int size
);
156 int (*ctl_out
) (HWVoiceOut
*hw
, int cmd
, ...);
158 int (*init_in
) (HWVoiceIn
*hw
, audsettings_t
*as
);
159 void (*fini_in
) (HWVoiceIn
*hw
);
160 int (*run_in
) (HWVoiceIn
*hw
);
161 int (*read
) (SWVoiceIn
*sw
, void *buf
, int size
);
162 int (*ctl_in
) (HWVoiceIn
*hw
, int cmd
, ...);
165 struct capture_callback
{
166 struct audio_capture_ops ops
;
168 LIST_ENTRY (capture_callback
) entries
;
171 struct CaptureVoiceOut
{
174 LIST_HEAD (cb_listhead
, capture_callback
) cb_head
;
175 LIST_ENTRY (CaptureVoiceOut
) entries
;
180 CaptureVoiceOut
*cap
;
181 LIST_ENTRY (SWVoiceCap
) entries
;
185 struct audio_driver
*drv
;
189 LIST_HEAD (card_listhead
, QEMUSoundCard
) card_head
;
190 LIST_HEAD (hw_in_listhead
, HWVoiceIn
) hw_head_in
;
191 LIST_HEAD (hw_out_listhead
, HWVoiceOut
) hw_head_out
;
192 LIST_HEAD (cap_listhead
, CaptureVoiceOut
) cap_head
;
193 int nb_hw_voices_out
;
197 extern struct audio_driver no_audio_driver
;
198 extern struct audio_driver oss_audio_driver
;
199 extern struct audio_driver sdl_audio_driver
;
200 extern struct audio_driver wav_audio_driver
;
201 extern struct audio_driver fmod_audio_driver
;
202 extern struct audio_driver alsa_audio_driver
;
203 extern struct audio_driver coreaudio_audio_driver
;
204 extern struct audio_driver dsound_audio_driver
;
205 extern struct audio_driver esd_audio_driver
;
206 extern struct audio_driver pa_audio_driver
;
207 extern volume_t nominal_volume
;
209 void audio_pcm_init_info (struct audio_pcm_info
*info
, audsettings_t
*as
);
210 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
);
212 int audio_pcm_sw_write (SWVoiceOut
*sw
, void *buf
, int len
);
213 int audio_pcm_hw_get_live_in (HWVoiceIn
*hw
);
215 int audio_pcm_sw_read (SWVoiceIn
*sw
, void *buf
, int len
);
216 int audio_pcm_hw_get_live_out (HWVoiceOut
*hw
);
217 int audio_pcm_hw_get_live_out2 (HWVoiceOut
*hw
, int *nb_live
);
219 int audio_bug (const char *funcname
, int cond
);
220 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
);
222 #define VOICE_ENABLE 1
223 #define VOICE_DISABLE 2
225 static inline int audio_ring_dist (int dst
, int src
, int len
)
227 return (dst
>= src
) ? (dst
- src
) : (len
- src
+ dst
);
231 #define GCC_ATTR __attribute__ ((__unused__, __format__ (__printf__, 1, 2)))
232 #define INIT_FIELD(f) . f
233 #define GCC_FMT_ATTR(n, m) __attribute__ ((__format__ (__printf__, n, m)))
235 #define GCC_ATTR /**/
236 #define INIT_FIELD(f) /**/
237 #define GCC_FMT_ATTR(n, m)
240 static void GCC_ATTR
dolog (const char *fmt
, ...)
245 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
250 static void GCC_ATTR
ldebug (const char *fmt
, ...)
255 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
259 #if defined NDEBUG && defined __GNUC__
261 #elif defined NDEBUG && defined _MSC_VER
262 #define ldebug __noop
264 static void GCC_ATTR
ldebug (const char *fmt
, ...)
273 #define AUDIO_STRINGIFY_(n) #n
274 #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
276 #if defined _MSC_VER || defined __GNUC__
277 #define AUDIO_FUNC __FUNCTION__
279 #define AUDIO_FUNC __FILE__ ":" AUDIO_STRINGIFY (__LINE__)
282 #endif /* audio_int.h */