Merge remote-tracking branch 'remotes/ehabkost/tags/x86-next-pull-request' into staging
[qemu/ar7.git] / audio / dsoundaudio.c
blob5da4c864c3f20d0a852423137c2897aadf16be22
1 /*
2 * QEMU DirectSound audio driver
4 * Copyright (c) 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
22 * THE SOFTWARE.
26 * SEAL 1.07 by Carlos 'pel' Hasan was used as documentation
29 #include "qemu/osdep.h"
30 #include "audio.h"
32 #define AUDIO_CAP "dsound"
33 #include "audio_int.h"
34 #include "qemu/host-utils.h"
35 #include "qemu/module.h"
37 #include <windows.h>
38 #include <mmsystem.h>
39 #include <objbase.h>
40 #include <dsound.h>
42 #include "audio_win_int.h"
44 /* #define DEBUG_DSOUND */
46 typedef struct {
47 LPDIRECTSOUND dsound;
48 LPDIRECTSOUNDCAPTURE dsound_capture;
49 struct audsettings settings;
50 Audiodev *dev;
51 } dsound;
53 typedef struct {
54 HWVoiceOut hw;
55 LPDIRECTSOUNDBUFFER dsound_buffer;
56 DWORD old_pos;
57 int first_time;
58 dsound *s;
59 #ifdef DEBUG_DSOUND
60 DWORD old_ppos;
61 DWORD played;
62 DWORD mixed;
63 #endif
64 } DSoundVoiceOut;
66 typedef struct {
67 HWVoiceIn hw;
68 int first_time;
69 LPDIRECTSOUNDCAPTUREBUFFER dsound_capture_buffer;
70 dsound *s;
71 } DSoundVoiceIn;
73 static void dsound_log_hresult (HRESULT hr)
75 const char *str = "BUG";
77 switch (hr) {
78 case DS_OK:
79 str = "The method succeeded";
80 break;
81 #ifdef DS_NO_VIRTUALIZATION
82 case DS_NO_VIRTUALIZATION:
83 str = "The buffer was created, but another 3D algorithm was substituted";
84 break;
85 #endif
86 #ifdef DS_INCOMPLETE
87 case DS_INCOMPLETE:
88 str = "The method succeeded, but not all the optional effects were obtained";
89 break;
90 #endif
91 #ifdef DSERR_ACCESSDENIED
92 case DSERR_ACCESSDENIED:
93 str = "The request failed because access was denied";
94 break;
95 #endif
96 #ifdef DSERR_ALLOCATED
97 case DSERR_ALLOCATED:
98 str = "The request failed because resources, such as a priority level, were already in use by another caller";
99 break;
100 #endif
101 #ifdef DSERR_ALREADYINITIALIZED
102 case DSERR_ALREADYINITIALIZED:
103 str = "The object is already initialized";
104 break;
105 #endif
106 #ifdef DSERR_BADFORMAT
107 case DSERR_BADFORMAT:
108 str = "The specified wave format is not supported";
109 break;
110 #endif
111 #ifdef DSERR_BADSENDBUFFERGUID
112 case DSERR_BADSENDBUFFERGUID:
113 str = "The GUID specified in an audiopath file does not match a valid mix-in buffer";
114 break;
115 #endif
116 #ifdef DSERR_BUFFERLOST
117 case DSERR_BUFFERLOST:
118 str = "The buffer memory has been lost and must be restored";
119 break;
120 #endif
121 #ifdef DSERR_BUFFERTOOSMALL
122 case DSERR_BUFFERTOOSMALL:
123 str = "The buffer size is not great enough to enable effects processing";
124 break;
125 #endif
126 #ifdef DSERR_CONTROLUNAVAIL
127 case DSERR_CONTROLUNAVAIL:
128 str = "The buffer control (volume, pan, and so on) requested by the caller is not available. Controls must be specified when the buffer is created, using the dwFlags member of DSBUFFERDESC";
129 break;
130 #endif
131 #ifdef DSERR_DS8_REQUIRED
132 case DSERR_DS8_REQUIRED:
133 str = "A DirectSound object of class CLSID_DirectSound8 or later is required for the requested functionality. For more information, see IDirectSound8 Interface";
134 break;
135 #endif
136 #ifdef DSERR_FXUNAVAILABLE
137 case DSERR_FXUNAVAILABLE:
138 str = "The effects requested could not be found on the system, or they are in the wrong order or in the wrong location; for example, an effect expected in hardware was found in software";
139 break;
140 #endif
141 #ifdef DSERR_GENERIC
142 case DSERR_GENERIC :
143 str = "An undetermined error occurred inside the DirectSound subsystem";
144 break;
145 #endif
146 #ifdef DSERR_INVALIDCALL
147 case DSERR_INVALIDCALL:
148 str = "This function is not valid for the current state of this object";
149 break;
150 #endif
151 #ifdef DSERR_INVALIDPARAM
152 case DSERR_INVALIDPARAM:
153 str = "An invalid parameter was passed to the returning function";
154 break;
155 #endif
156 #ifdef DSERR_NOAGGREGATION
157 case DSERR_NOAGGREGATION:
158 str = "The object does not support aggregation";
159 break;
160 #endif
161 #ifdef DSERR_NODRIVER
162 case DSERR_NODRIVER:
163 str = "No sound driver is available for use, or the given GUID is not a valid DirectSound device ID";
164 break;
165 #endif
166 #ifdef DSERR_NOINTERFACE
167 case DSERR_NOINTERFACE:
168 str = "The requested COM interface is not available";
169 break;
170 #endif
171 #ifdef DSERR_OBJECTNOTFOUND
172 case DSERR_OBJECTNOTFOUND:
173 str = "The requested object was not found";
174 break;
175 #endif
176 #ifdef DSERR_OTHERAPPHASPRIO
177 case DSERR_OTHERAPPHASPRIO:
178 str = "Another application has a higher priority level, preventing this call from succeeding";
179 break;
180 #endif
181 #ifdef DSERR_OUTOFMEMORY
182 case DSERR_OUTOFMEMORY:
183 str = "The DirectSound subsystem could not allocate sufficient memory to complete the caller's request";
184 break;
185 #endif
186 #ifdef DSERR_PRIOLEVELNEEDED
187 case DSERR_PRIOLEVELNEEDED:
188 str = "A cooperative level of DSSCL_PRIORITY or higher is required";
189 break;
190 #endif
191 #ifdef DSERR_SENDLOOP
192 case DSERR_SENDLOOP:
193 str = "A circular loop of send effects was detected";
194 break;
195 #endif
196 #ifdef DSERR_UNINITIALIZED
197 case DSERR_UNINITIALIZED:
198 str = "The Initialize method has not been called or has not been called successfully before other methods were called";
199 break;
200 #endif
201 #ifdef DSERR_UNSUPPORTED
202 case DSERR_UNSUPPORTED:
203 str = "The function called is not supported at this time";
204 break;
205 #endif
206 default:
207 AUD_log (AUDIO_CAP, "Reason: Unknown (HRESULT %#lx)\n", hr);
208 return;
211 AUD_log (AUDIO_CAP, "Reason: %s\n", str);
214 static void GCC_FMT_ATTR (2, 3) dsound_logerr (
215 HRESULT hr,
216 const char *fmt,
220 va_list ap;
222 va_start (ap, fmt);
223 AUD_vlog (AUDIO_CAP, fmt, ap);
224 va_end (ap);
226 dsound_log_hresult (hr);
229 static void GCC_FMT_ATTR (3, 4) dsound_logerr2 (
230 HRESULT hr,
231 const char *typ,
232 const char *fmt,
236 va_list ap;
238 AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
239 va_start (ap, fmt);
240 AUD_vlog (AUDIO_CAP, fmt, ap);
241 va_end (ap);
243 dsound_log_hresult (hr);
246 static uint64_t usecs_to_bytes(struct audio_pcm_info *info, uint32_t usecs)
248 return muldiv64(usecs, info->bytes_per_second, 1000000);
251 #ifdef DEBUG_DSOUND
252 static void print_wave_format (WAVEFORMATEX *wfx)
254 dolog ("tag = %d\n", wfx->wFormatTag);
255 dolog ("nChannels = %d\n", wfx->nChannels);
256 dolog ("nSamplesPerSec = %ld\n", wfx->nSamplesPerSec);
257 dolog ("nAvgBytesPerSec = %ld\n", wfx->nAvgBytesPerSec);
258 dolog ("nBlockAlign = %d\n", wfx->nBlockAlign);
259 dolog ("wBitsPerSample = %d\n", wfx->wBitsPerSample);
260 dolog ("cbSize = %d\n", wfx->cbSize);
262 #endif
264 static int dsound_restore_out (LPDIRECTSOUNDBUFFER dsb, dsound *s)
266 HRESULT hr;
268 hr = IDirectSoundBuffer_Restore (dsb);
270 if (hr != DS_OK) {
271 dsound_logerr (hr, "Could not restore playback buffer\n");
272 return -1;
274 return 0;
277 #include "dsound_template.h"
278 #define DSBTYPE_IN
279 #include "dsound_template.h"
280 #undef DSBTYPE_IN
282 static int dsound_get_status_out (LPDIRECTSOUNDBUFFER dsb, DWORD *statusp,
283 dsound *s)
285 HRESULT hr;
287 hr = IDirectSoundBuffer_GetStatus (dsb, statusp);
288 if (FAILED (hr)) {
289 dsound_logerr (hr, "Could not get playback buffer status\n");
290 return -1;
293 if (*statusp & DSERR_BUFFERLOST) {
294 dsound_restore_out(dsb, s);
295 return -1;
298 return 0;
301 static int dsound_get_status_in (LPDIRECTSOUNDCAPTUREBUFFER dscb,
302 DWORD *statusp)
304 HRESULT hr;
306 hr = IDirectSoundCaptureBuffer_GetStatus (dscb, statusp);
307 if (FAILED (hr)) {
308 dsound_logerr (hr, "Could not get capture buffer status\n");
309 return -1;
312 return 0;
315 static void dsound_write_sample (HWVoiceOut *hw, uint8_t *dst, int dst_len)
317 int src_len1 = dst_len;
318 int src_len2 = 0;
319 int pos = hw->rpos + dst_len;
320 struct st_sample *src1 = hw->mix_buf + hw->rpos;
321 struct st_sample *src2 = NULL;
323 if (pos > hw->samples) {
324 src_len1 = hw->samples - hw->rpos;
325 src2 = hw->mix_buf;
326 src_len2 = dst_len - src_len1;
327 pos = src_len2;
330 if (src_len1) {
331 hw->clip (dst, src1, src_len1);
334 if (src_len2) {
335 dst = advance (dst, src_len1 << hw->info.shift);
336 hw->clip (dst, src2, src_len2);
339 hw->rpos = pos % hw->samples;
342 static void dsound_clear_sample (HWVoiceOut *hw, LPDIRECTSOUNDBUFFER dsb,
343 dsound *s)
345 int err;
346 LPVOID p1, p2;
347 DWORD blen1, blen2, len1, len2;
349 err = dsound_lock_out (
350 dsb,
351 &hw->info,
353 hw->samples << hw->info.shift,
354 &p1, &p2,
355 &blen1, &blen2,
359 if (err) {
360 return;
363 len1 = blen1 >> hw->info.shift;
364 len2 = blen2 >> hw->info.shift;
366 #ifdef DEBUG_DSOUND
367 dolog ("clear %p,%ld,%ld %p,%ld,%ld\n",
368 p1, blen1, len1,
369 p2, blen2, len2);
370 #endif
372 if (p1 && len1) {
373 audio_pcm_info_clear_buf (&hw->info, p1, len1);
376 if (p2 && len2) {
377 audio_pcm_info_clear_buf (&hw->info, p2, len2);
380 dsound_unlock_out (dsb, p1, p2, blen1, blen2);
383 static int dsound_open (dsound *s)
385 HRESULT hr;
386 HWND hwnd;
388 hwnd = GetForegroundWindow ();
389 hr = IDirectSound_SetCooperativeLevel (
390 s->dsound,
391 hwnd,
392 DSSCL_PRIORITY
395 if (FAILED (hr)) {
396 dsound_logerr (hr, "Could not set cooperative level for window %p\n",
397 hwnd);
398 return -1;
401 return 0;
404 static int dsound_ctl_out (HWVoiceOut *hw, int cmd, ...)
406 HRESULT hr;
407 DWORD status;
408 DSoundVoiceOut *ds = (DSoundVoiceOut *) hw;
409 LPDIRECTSOUNDBUFFER dsb = ds->dsound_buffer;
410 dsound *s = ds->s;
412 if (!dsb) {
413 dolog ("Attempt to control voice without a buffer\n");
414 return 0;
417 switch (cmd) {
418 case VOICE_ENABLE:
419 if (dsound_get_status_out (dsb, &status, s)) {
420 return -1;
423 if (status & DSBSTATUS_PLAYING) {
424 dolog ("warning: Voice is already playing\n");
425 return 0;
428 dsound_clear_sample (hw, dsb, s);
430 hr = IDirectSoundBuffer_Play (dsb, 0, 0, DSBPLAY_LOOPING);
431 if (FAILED (hr)) {
432 dsound_logerr (hr, "Could not start playing buffer\n");
433 return -1;
435 break;
437 case VOICE_DISABLE:
438 if (dsound_get_status_out (dsb, &status, s)) {
439 return -1;
442 if (status & DSBSTATUS_PLAYING) {
443 hr = IDirectSoundBuffer_Stop (dsb);
444 if (FAILED (hr)) {
445 dsound_logerr (hr, "Could not stop playing buffer\n");
446 return -1;
449 else {
450 dolog ("warning: Voice is not playing\n");
452 break;
454 return 0;
457 static int dsound_write (SWVoiceOut *sw, void *buf, int len)
459 return audio_pcm_sw_write (sw, buf, len);
462 static int dsound_run_out (HWVoiceOut *hw, int live)
464 int err;
465 HRESULT hr;
466 DSoundVoiceOut *ds = (DSoundVoiceOut *) hw;
467 LPDIRECTSOUNDBUFFER dsb = ds->dsound_buffer;
468 int len, hwshift;
469 DWORD blen1, blen2;
470 DWORD len1, len2;
471 DWORD decr;
472 DWORD wpos, ppos, old_pos;
473 LPVOID p1, p2;
474 int bufsize;
475 dsound *s = ds->s;
476 AudiodevDsoundOptions *dso = &s->dev->u.dsound;
478 if (!dsb) {
479 dolog ("Attempt to run empty with playback buffer\n");
480 return 0;
483 hwshift = hw->info.shift;
484 bufsize = hw->samples << hwshift;
486 hr = IDirectSoundBuffer_GetCurrentPosition (
487 dsb,
488 &ppos,
489 ds->first_time ? &wpos : NULL
491 if (FAILED (hr)) {
492 dsound_logerr (hr, "Could not get playback buffer position\n");
493 return 0;
496 len = live << hwshift;
498 if (ds->first_time) {
499 if (dso->latency) {
500 DWORD cur_blat;
502 cur_blat = audio_ring_dist (wpos, ppos, bufsize);
503 ds->first_time = 0;
504 old_pos = wpos;
505 old_pos +=
506 usecs_to_bytes(&hw->info, dso->latency) - cur_blat;
507 old_pos %= bufsize;
508 old_pos &= ~hw->info.align;
510 else {
511 old_pos = wpos;
513 #ifdef DEBUG_DSOUND
514 ds->played = 0;
515 ds->mixed = 0;
516 #endif
518 else {
519 if (ds->old_pos == ppos) {
520 #ifdef DEBUG_DSOUND
521 dolog ("old_pos == ppos\n");
522 #endif
523 return 0;
526 #ifdef DEBUG_DSOUND
527 ds->played += audio_ring_dist (ds->old_pos, ppos, hw->bufsize);
528 #endif
529 old_pos = ds->old_pos;
532 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
533 len = ppos - old_pos;
535 else {
536 if ((old_pos > ppos) && ((old_pos + len) > (ppos + bufsize))) {
537 len = bufsize - old_pos + ppos;
541 if (audio_bug(__func__, len < 0 || len > bufsize)) {
542 dolog ("len=%d bufsize=%d old_pos=%ld ppos=%ld\n",
543 len, bufsize, old_pos, ppos);
544 return 0;
547 len &= ~hw->info.align;
548 if (!len) {
549 return 0;
552 #ifdef DEBUG_DSOUND
553 ds->old_ppos = ppos;
554 #endif
555 err = dsound_lock_out (
556 dsb,
557 &hw->info,
558 old_pos,
559 len,
560 &p1, &p2,
561 &blen1, &blen2,
565 if (err) {
566 return 0;
569 len1 = blen1 >> hwshift;
570 len2 = blen2 >> hwshift;
571 decr = len1 + len2;
573 if (p1 && len1) {
574 dsound_write_sample (hw, p1, len1);
577 if (p2 && len2) {
578 dsound_write_sample (hw, p2, len2);
581 dsound_unlock_out (dsb, p1, p2, blen1, blen2);
582 ds->old_pos = (old_pos + (decr << hwshift)) % bufsize;
584 #ifdef DEBUG_DSOUND
585 ds->mixed += decr << hwshift;
587 dolog ("played %lu mixed %lu diff %ld sec %f\n",
588 ds->played,
589 ds->mixed,
590 ds->mixed - ds->played,
591 abs (ds->mixed - ds->played) / (double) hw->info.bytes_per_second);
592 #endif
593 return decr;
596 static int dsound_ctl_in (HWVoiceIn *hw, int cmd, ...)
598 HRESULT hr;
599 DWORD status;
600 DSoundVoiceIn *ds = (DSoundVoiceIn *) hw;
601 LPDIRECTSOUNDCAPTUREBUFFER dscb = ds->dsound_capture_buffer;
603 if (!dscb) {
604 dolog ("Attempt to control capture voice without a buffer\n");
605 return -1;
608 switch (cmd) {
609 case VOICE_ENABLE:
610 if (dsound_get_status_in (dscb, &status)) {
611 return -1;
614 if (status & DSCBSTATUS_CAPTURING) {
615 dolog ("warning: Voice is already capturing\n");
616 return 0;
619 /* clear ?? */
621 hr = IDirectSoundCaptureBuffer_Start (dscb, DSCBSTART_LOOPING);
622 if (FAILED (hr)) {
623 dsound_logerr (hr, "Could not start capturing\n");
624 return -1;
626 break;
628 case VOICE_DISABLE:
629 if (dsound_get_status_in (dscb, &status)) {
630 return -1;
633 if (status & DSCBSTATUS_CAPTURING) {
634 hr = IDirectSoundCaptureBuffer_Stop (dscb);
635 if (FAILED (hr)) {
636 dsound_logerr (hr, "Could not stop capturing\n");
637 return -1;
640 else {
641 dolog ("warning: Voice is not capturing\n");
643 break;
645 return 0;
648 static int dsound_read (SWVoiceIn *sw, void *buf, int len)
650 return audio_pcm_sw_read (sw, buf, len);
653 static int dsound_run_in (HWVoiceIn *hw)
655 int err;
656 HRESULT hr;
657 DSoundVoiceIn *ds = (DSoundVoiceIn *) hw;
658 LPDIRECTSOUNDCAPTUREBUFFER dscb = ds->dsound_capture_buffer;
659 int live, len, dead;
660 DWORD blen1, blen2;
661 DWORD len1, len2;
662 DWORD decr;
663 DWORD cpos, rpos;
664 LPVOID p1, p2;
665 int hwshift;
666 dsound *s = ds->s;
668 if (!dscb) {
669 dolog ("Attempt to run without capture buffer\n");
670 return 0;
673 hwshift = hw->info.shift;
675 live = audio_pcm_hw_get_live_in (hw);
676 dead = hw->samples - live;
677 if (!dead) {
678 return 0;
681 hr = IDirectSoundCaptureBuffer_GetCurrentPosition (
682 dscb,
683 &cpos,
684 ds->first_time ? &rpos : NULL
686 if (FAILED (hr)) {
687 dsound_logerr (hr, "Could not get capture buffer position\n");
688 return 0;
691 if (ds->first_time) {
692 ds->first_time = 0;
693 if (rpos & hw->info.align) {
694 ldebug ("warning: Misaligned capture read position %ld(%d)\n",
695 rpos, hw->info.align);
697 hw->wpos = rpos >> hwshift;
700 if (cpos & hw->info.align) {
701 ldebug ("warning: Misaligned capture position %ld(%d)\n",
702 cpos, hw->info.align);
704 cpos >>= hwshift;
706 len = audio_ring_dist (cpos, hw->wpos, hw->samples);
707 if (!len) {
708 return 0;
710 len = audio_MIN (len, dead);
712 err = dsound_lock_in (
713 dscb,
714 &hw->info,
715 hw->wpos << hwshift,
716 len << hwshift,
717 &p1,
718 &p2,
719 &blen1,
720 &blen2,
724 if (err) {
725 return 0;
728 len1 = blen1 >> hwshift;
729 len2 = blen2 >> hwshift;
730 decr = len1 + len2;
732 if (p1 && len1) {
733 hw->conv (hw->conv_buf + hw->wpos, p1, len1);
736 if (p2 && len2) {
737 hw->conv (hw->conv_buf, p2, len2);
740 dsound_unlock_in (dscb, p1, p2, blen1, blen2);
741 hw->wpos = (hw->wpos + decr) % hw->samples;
742 return decr;
745 static void dsound_audio_fini (void *opaque)
747 HRESULT hr;
748 dsound *s = opaque;
750 if (!s->dsound) {
751 g_free(s);
752 return;
755 hr = IDirectSound_Release (s->dsound);
756 if (FAILED (hr)) {
757 dsound_logerr (hr, "Could not release DirectSound\n");
759 s->dsound = NULL;
761 if (!s->dsound_capture) {
762 g_free(s);
763 return;
766 hr = IDirectSoundCapture_Release (s->dsound_capture);
767 if (FAILED (hr)) {
768 dsound_logerr (hr, "Could not release DirectSoundCapture\n");
770 s->dsound_capture = NULL;
772 g_free(s);
775 static void *dsound_audio_init(Audiodev *dev)
777 int err;
778 HRESULT hr;
779 dsound *s = g_malloc0(sizeof(dsound));
780 AudiodevDsoundOptions *dso;
782 assert(dev->driver == AUDIODEV_DRIVER_DSOUND);
783 s->dev = dev;
784 dso = &dev->u.dsound;
786 if (!dso->has_latency) {
787 dso->has_latency = true;
788 dso->latency = 10000; /* 10 ms */
791 hr = CoInitialize (NULL);
792 if (FAILED (hr)) {
793 dsound_logerr (hr, "Could not initialize COM\n");
794 g_free(s);
795 return NULL;
798 hr = CoCreateInstance (
799 &CLSID_DirectSound,
800 NULL,
801 CLSCTX_ALL,
802 &IID_IDirectSound,
803 (void **) &s->dsound
805 if (FAILED (hr)) {
806 dsound_logerr (hr, "Could not create DirectSound instance\n");
807 g_free(s);
808 return NULL;
811 hr = IDirectSound_Initialize (s->dsound, NULL);
812 if (FAILED (hr)) {
813 dsound_logerr (hr, "Could not initialize DirectSound\n");
815 hr = IDirectSound_Release (s->dsound);
816 if (FAILED (hr)) {
817 dsound_logerr (hr, "Could not release DirectSound\n");
819 g_free(s);
820 return NULL;
823 hr = CoCreateInstance (
824 &CLSID_DirectSoundCapture,
825 NULL,
826 CLSCTX_ALL,
827 &IID_IDirectSoundCapture,
828 (void **) &s->dsound_capture
830 if (FAILED (hr)) {
831 dsound_logerr (hr, "Could not create DirectSoundCapture instance\n");
833 else {
834 hr = IDirectSoundCapture_Initialize (s->dsound_capture, NULL);
835 if (FAILED (hr)) {
836 dsound_logerr (hr, "Could not initialize DirectSoundCapture\n");
838 hr = IDirectSoundCapture_Release (s->dsound_capture);
839 if (FAILED (hr)) {
840 dsound_logerr (hr, "Could not release DirectSoundCapture\n");
842 s->dsound_capture = NULL;
846 err = dsound_open (s);
847 if (err) {
848 dsound_audio_fini (s);
849 return NULL;
852 return s;
855 static struct audio_pcm_ops dsound_pcm_ops = {
856 .init_out = dsound_init_out,
857 .fini_out = dsound_fini_out,
858 .run_out = dsound_run_out,
859 .write = dsound_write,
860 .ctl_out = dsound_ctl_out,
862 .init_in = dsound_init_in,
863 .fini_in = dsound_fini_in,
864 .run_in = dsound_run_in,
865 .read = dsound_read,
866 .ctl_in = dsound_ctl_in
869 static struct audio_driver dsound_audio_driver = {
870 .name = "dsound",
871 .descr = "DirectSound http://wikipedia.org/wiki/DirectSound",
872 .init = dsound_audio_init,
873 .fini = dsound_audio_fini,
874 .pcm_ops = &dsound_pcm_ops,
875 .can_be_default = 1,
876 .max_voices_out = INT_MAX,
877 .max_voices_in = 1,
878 .voice_size_out = sizeof (DSoundVoiceOut),
879 .voice_size_in = sizeof (DSoundVoiceIn)
882 static void register_audio_dsound(void)
884 audio_driver_register(&dsound_audio_driver);
886 type_init(register_audio_dsound);