2 * QEMU ALSA 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
25 #include "qemu/osdep.h"
26 #include <alsa/asoundlib.h>
27 #include "qemu/main-loop.h"
28 #include "qemu/module.h"
32 #pragma GCC diagnostic ignored "-Waddress"
34 #define AUDIO_CAP "alsa"
35 #include "audio_int.h"
47 typedef struct ALSAVoiceOut
{
50 struct pollhlp pollhlp
;
54 typedef struct ALSAVoiceIn
{
57 struct pollhlp pollhlp
;
61 struct alsa_params_req
{
67 struct alsa_params_obt
{
72 snd_pcm_uframes_t samples
;
75 static void G_GNUC_PRINTF (2, 3) alsa_logerr (int err
, const char *fmt
, ...)
80 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
83 AUD_log (AUDIO_CAP
, "Reason: %s\n", snd_strerror (err
));
86 static void G_GNUC_PRINTF (3, 4) alsa_logerr2 (
95 AUD_log (AUDIO_CAP
, "Could not initialize %s\n", typ
);
98 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
101 AUD_log (AUDIO_CAP
, "Reason: %s\n", snd_strerror (err
));
104 static void alsa_fini_poll (struct pollhlp
*hlp
)
107 struct pollfd
*pfds
= hlp
->pfds
;
110 for (i
= 0; i
< hlp
->count
; ++i
) {
111 qemu_set_fd_handler (pfds
[i
].fd
, NULL
, NULL
, NULL
);
120 static void alsa_anal_close1 (snd_pcm_t
**handlep
)
122 int err
= snd_pcm_close (*handlep
);
124 alsa_logerr (err
, "Failed to close PCM handle %p\n", *handlep
);
129 static void alsa_anal_close (snd_pcm_t
**handlep
, struct pollhlp
*hlp
)
131 alsa_fini_poll (hlp
);
132 alsa_anal_close1 (handlep
);
135 static int alsa_recover (snd_pcm_t
*handle
)
137 int err
= snd_pcm_prepare (handle
);
139 alsa_logerr (err
, "Failed to prepare handle %p\n", handle
);
145 static int alsa_resume (snd_pcm_t
*handle
)
147 int err
= snd_pcm_resume (handle
);
149 alsa_logerr (err
, "Failed to resume handle %p\n", handle
);
155 static void alsa_poll_handler (void *opaque
)
158 snd_pcm_state_t state
;
159 struct pollhlp
*hlp
= opaque
;
160 unsigned short revents
;
162 count
= poll (hlp
->pfds
, hlp
->count
, 0);
164 dolog ("alsa_poll_handler: poll %s\n", strerror (errno
));
172 /* XXX: ALSA example uses initial count, not the one returned by
174 err
= snd_pcm_poll_descriptors_revents (hlp
->handle
, hlp
->pfds
,
175 hlp
->count
, &revents
);
177 alsa_logerr (err
, "snd_pcm_poll_descriptors_revents");
181 if (!(revents
& hlp
->mask
)) {
182 trace_alsa_revents(revents
);
186 state
= snd_pcm_state (hlp
->handle
);
188 case SND_PCM_STATE_SETUP
:
189 alsa_recover (hlp
->handle
);
192 case SND_PCM_STATE_XRUN
:
193 alsa_recover (hlp
->handle
);
196 case SND_PCM_STATE_SUSPENDED
:
197 alsa_resume (hlp
->handle
);
200 case SND_PCM_STATE_PREPARED
:
201 audio_run(hlp
->s
, "alsa run (prepared)");
204 case SND_PCM_STATE_RUNNING
:
205 audio_run(hlp
->s
, "alsa run (running)");
209 dolog ("Unexpected state %d\n", state
);
213 static int alsa_poll_helper (snd_pcm_t
*handle
, struct pollhlp
*hlp
, int mask
)
218 count
= snd_pcm_poll_descriptors_count (handle
);
220 dolog ("Could not initialize poll mode\n"
221 "Invalid number of poll descriptors %d\n", count
);
225 pfds
= audio_calloc ("alsa_poll_helper", count
, sizeof (*pfds
));
227 dolog ("Could not initialize poll mode\n");
231 err
= snd_pcm_poll_descriptors (handle
, pfds
, count
);
233 alsa_logerr (err
, "Could not initialize poll mode\n"
234 "Could not obtain poll descriptors\n");
239 for (i
= 0; i
< count
; ++i
) {
240 if (pfds
[i
].events
& POLLIN
) {
241 qemu_set_fd_handler (pfds
[i
].fd
, alsa_poll_handler
, NULL
, hlp
);
243 if (pfds
[i
].events
& POLLOUT
) {
244 trace_alsa_pollout(i
, pfds
[i
].fd
);
245 qemu_set_fd_handler (pfds
[i
].fd
, NULL
, alsa_poll_handler
, hlp
);
247 trace_alsa_set_handler(pfds
[i
].events
, i
, pfds
[i
].fd
, err
);
252 hlp
->handle
= handle
;
257 static int alsa_poll_out (HWVoiceOut
*hw
)
259 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*) hw
;
261 return alsa_poll_helper (alsa
->handle
, &alsa
->pollhlp
, POLLOUT
);
264 static int alsa_poll_in (HWVoiceIn
*hw
)
266 ALSAVoiceIn
*alsa
= (ALSAVoiceIn
*) hw
;
268 return alsa_poll_helper (alsa
->handle
, &alsa
->pollhlp
, POLLIN
);
271 static snd_pcm_format_t
aud_to_alsafmt (AudioFormat fmt
, int endianness
)
274 case AUDIO_FORMAT_S8
:
275 return SND_PCM_FORMAT_S8
;
277 case AUDIO_FORMAT_U8
:
278 return SND_PCM_FORMAT_U8
;
280 case AUDIO_FORMAT_S16
:
282 return SND_PCM_FORMAT_S16_BE
;
284 return SND_PCM_FORMAT_S16_LE
;
287 case AUDIO_FORMAT_U16
:
289 return SND_PCM_FORMAT_U16_BE
;
291 return SND_PCM_FORMAT_U16_LE
;
294 case AUDIO_FORMAT_S32
:
296 return SND_PCM_FORMAT_S32_BE
;
298 return SND_PCM_FORMAT_S32_LE
;
301 case AUDIO_FORMAT_U32
:
303 return SND_PCM_FORMAT_U32_BE
;
305 return SND_PCM_FORMAT_U32_LE
;
308 case AUDIO_FORMAT_F32
:
310 return SND_PCM_FORMAT_FLOAT_BE
;
312 return SND_PCM_FORMAT_FLOAT_LE
;
316 dolog ("Internal logic error: Bad audio format %d\n", fmt
);
320 return SND_PCM_FORMAT_U8
;
324 static int alsa_to_audfmt (snd_pcm_format_t alsafmt
, AudioFormat
*fmt
,
328 case SND_PCM_FORMAT_S8
:
330 *fmt
= AUDIO_FORMAT_S8
;
333 case SND_PCM_FORMAT_U8
:
335 *fmt
= AUDIO_FORMAT_U8
;
338 case SND_PCM_FORMAT_S16_LE
:
340 *fmt
= AUDIO_FORMAT_S16
;
343 case SND_PCM_FORMAT_U16_LE
:
345 *fmt
= AUDIO_FORMAT_U16
;
348 case SND_PCM_FORMAT_S16_BE
:
350 *fmt
= AUDIO_FORMAT_S16
;
353 case SND_PCM_FORMAT_U16_BE
:
355 *fmt
= AUDIO_FORMAT_U16
;
358 case SND_PCM_FORMAT_S32_LE
:
360 *fmt
= AUDIO_FORMAT_S32
;
363 case SND_PCM_FORMAT_U32_LE
:
365 *fmt
= AUDIO_FORMAT_U32
;
368 case SND_PCM_FORMAT_S32_BE
:
370 *fmt
= AUDIO_FORMAT_S32
;
373 case SND_PCM_FORMAT_U32_BE
:
375 *fmt
= AUDIO_FORMAT_U32
;
378 case SND_PCM_FORMAT_FLOAT_LE
:
380 *fmt
= AUDIO_FORMAT_F32
;
383 case SND_PCM_FORMAT_FLOAT_BE
:
385 *fmt
= AUDIO_FORMAT_F32
;
389 dolog ("Unrecognized audio format %d\n", alsafmt
);
396 static void alsa_dump_info (struct alsa_params_req
*req
,
397 struct alsa_params_obt
*obt
,
398 snd_pcm_format_t obtfmt
,
399 AudiodevAlsaPerDirectionOptions
*apdo
)
401 dolog("parameter | requested value | obtained value\n");
402 dolog("format | %10d | %10d\n", req
->fmt
, obtfmt
);
403 dolog("channels | %10d | %10d\n",
404 req
->nchannels
, obt
->nchannels
);
405 dolog("frequency | %10d | %10d\n", req
->freq
, obt
->freq
);
406 dolog("============================================\n");
407 dolog("requested: buffer len %" PRId32
" period len %" PRId32
"\n",
408 apdo
->buffer_length
, apdo
->period_length
);
409 dolog("obtained: samples %ld\n", obt
->samples
);
412 static void alsa_set_threshold (snd_pcm_t
*handle
, snd_pcm_uframes_t threshold
)
415 snd_pcm_sw_params_t
*sw_params
;
417 snd_pcm_sw_params_alloca (&sw_params
);
419 err
= snd_pcm_sw_params_current (handle
, sw_params
);
421 dolog ("Could not fully initialize DAC\n");
422 alsa_logerr (err
, "Failed to get current software parameters\n");
426 err
= snd_pcm_sw_params_set_start_threshold (handle
, sw_params
, threshold
);
428 dolog ("Could not fully initialize DAC\n");
429 alsa_logerr (err
, "Failed to set software threshold to %ld\n",
434 err
= snd_pcm_sw_params (handle
, sw_params
);
436 dolog ("Could not fully initialize DAC\n");
437 alsa_logerr (err
, "Failed to set software parameters\n");
442 static int alsa_open(bool in
, struct alsa_params_req
*req
,
443 struct alsa_params_obt
*obt
, snd_pcm_t
**handlep
,
446 AudiodevAlsaOptions
*aopts
= &dev
->u
.alsa
;
447 AudiodevAlsaPerDirectionOptions
*apdo
= in
? aopts
->in
: aopts
->out
;
449 snd_pcm_hw_params_t
*hw_params
;
451 unsigned int freq
, nchannels
;
452 const char *pcm_name
= apdo
->dev
?: "default";
453 snd_pcm_uframes_t obt_buffer_size
;
454 const char *typ
= in
? "ADC" : "DAC";
455 snd_pcm_format_t obtfmt
;
458 nchannels
= req
->nchannels
;
460 snd_pcm_hw_params_alloca (&hw_params
);
465 in
? SND_PCM_STREAM_CAPTURE
: SND_PCM_STREAM_PLAYBACK
,
469 alsa_logerr2 (err
, typ
, "Failed to open `%s':\n", pcm_name
);
473 err
= snd_pcm_hw_params_any (handle
, hw_params
);
475 alsa_logerr2 (err
, typ
, "Failed to initialize hardware parameters\n");
479 err
= snd_pcm_hw_params_set_access (
482 SND_PCM_ACCESS_RW_INTERLEAVED
485 alsa_logerr2 (err
, typ
, "Failed to set access type\n");
489 err
= snd_pcm_hw_params_set_format (handle
, hw_params
, req
->fmt
);
491 alsa_logerr2 (err
, typ
, "Failed to set format %d\n", req
->fmt
);
494 err
= snd_pcm_hw_params_set_rate_near (handle
, hw_params
, &freq
, 0);
496 alsa_logerr2 (err
, typ
, "Failed to set frequency %d\n", req
->freq
);
500 err
= snd_pcm_hw_params_set_channels_near (
506 alsa_logerr2 (err
, typ
, "Failed to set number of channels %d\n",
511 if (apdo
->buffer_length
) {
513 unsigned int btime
= apdo
->buffer_length
;
515 err
= snd_pcm_hw_params_set_buffer_time_near(
516 handle
, hw_params
, &btime
, &dir
);
519 alsa_logerr2(err
, typ
, "Failed to set buffer time to %" PRId32
"\n",
520 apdo
->buffer_length
);
524 if (apdo
->has_buffer_length
&& btime
!= apdo
->buffer_length
) {
525 dolog("Requested buffer time %" PRId32
526 " was rejected, using %u\n", apdo
->buffer_length
, btime
);
530 if (apdo
->period_length
) {
532 unsigned int ptime
= apdo
->period_length
;
534 err
= snd_pcm_hw_params_set_period_time_near(handle
, hw_params
, &ptime
,
538 alsa_logerr2(err
, typ
, "Failed to set period time to %" PRId32
"\n",
539 apdo
->period_length
);
543 if (apdo
->has_period_length
&& ptime
!= apdo
->period_length
) {
544 dolog("Requested period time %" PRId32
" was rejected, using %d\n",
545 apdo
->period_length
, ptime
);
549 err
= snd_pcm_hw_params (handle
, hw_params
);
551 alsa_logerr2 (err
, typ
, "Failed to apply audio parameters\n");
555 err
= snd_pcm_hw_params_get_buffer_size (hw_params
, &obt_buffer_size
);
557 alsa_logerr2 (err
, typ
, "Failed to get buffer size\n");
561 err
= snd_pcm_hw_params_get_format (hw_params
, &obtfmt
);
563 alsa_logerr2 (err
, typ
, "Failed to get format\n");
567 if (alsa_to_audfmt (obtfmt
, &obt
->fmt
, &obt
->endianness
)) {
568 dolog ("Invalid format was returned %d\n", obtfmt
);
572 err
= snd_pcm_prepare (handle
);
574 alsa_logerr2 (err
, typ
, "Could not prepare handle %p\n", handle
);
578 if (!in
&& aopts
->has_threshold
&& aopts
->threshold
) {
579 struct audsettings as
= { .freq
= freq
};
582 audio_buffer_frames(qapi_AudiodevAlsaPerDirectionOptions_base(apdo
),
583 &as
, aopts
->threshold
));
586 obt
->nchannels
= nchannels
;
588 obt
->samples
= obt_buffer_size
;
592 if (DEBUG_ALSA
|| obtfmt
!= req
->fmt
||
593 obt
->nchannels
!= req
->nchannels
|| obt
->freq
!= req
->freq
) {
594 dolog ("Audio parameters for %s\n", typ
);
595 alsa_dump_info(req
, obt
, obtfmt
, apdo
);
601 alsa_anal_close1 (&handle
);
605 static size_t alsa_buffer_get_free(HWVoiceOut
*hw
)
607 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*)hw
;
608 snd_pcm_sframes_t avail
;
609 size_t alsa_free
, generic_free
, generic_in_use
;
611 avail
= snd_pcm_avail_update(alsa
->handle
);
613 if (avail
== -EPIPE
) {
614 if (!alsa_recover(alsa
->handle
)) {
615 avail
= snd_pcm_avail_update(alsa
->handle
);
620 "Could not obtain number of available frames\n");
625 alsa_free
= avail
* hw
->info
.bytes_per_frame
;
626 generic_free
= audio_generic_buffer_get_free(hw
);
627 generic_in_use
= hw
->samples
* hw
->info
.bytes_per_frame
- generic_free
;
628 if (generic_in_use
) {
630 * This code can only be reached in the unlikely case that
631 * snd_pcm_avail_update() returned a larger number of frames
632 * than snd_pcm_writei() could write. Make sure that all
633 * remaining bytes in the generic buffer can be written.
635 alsa_free
= alsa_free
> generic_in_use
? alsa_free
- generic_in_use
: 0;
641 static size_t alsa_write(HWVoiceOut
*hw
, void *buf
, size_t len
)
643 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*) hw
;
645 size_t len_frames
= len
/ hw
->info
.bytes_per_frame
;
648 char *src
= advance(buf
, pos
);
649 snd_pcm_sframes_t written
;
651 written
= snd_pcm_writei(alsa
->handle
, src
, len_frames
);
656 trace_alsa_wrote_zero(len_frames
);
660 if (alsa_recover(alsa
->handle
)) {
661 alsa_logerr(written
, "Failed to write %zu frames\n",
665 trace_alsa_xrun_out();
670 * stream is suspended and waiting for an application
673 if (alsa_resume(alsa
->handle
)) {
674 alsa_logerr(written
, "Failed to write %zu frames\n",
678 trace_alsa_resume_out();
685 alsa_logerr(written
, "Failed to write %zu frames from %p\n",
691 pos
+= written
* hw
->info
.bytes_per_frame
;
692 if (written
< len_frames
) {
695 len_frames
-= written
;
701 static void alsa_fini_out (HWVoiceOut
*hw
)
703 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*) hw
;
705 ldebug ("alsa_fini\n");
706 alsa_anal_close (&alsa
->handle
, &alsa
->pollhlp
);
709 static int alsa_init_out(HWVoiceOut
*hw
, struct audsettings
*as
,
712 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*) hw
;
713 struct alsa_params_req req
;
714 struct alsa_params_obt obt
;
716 struct audsettings obt_as
;
717 Audiodev
*dev
= drv_opaque
;
719 req
.fmt
= aud_to_alsafmt (as
->fmt
, as
->endianness
);
721 req
.nchannels
= as
->nchannels
;
723 if (alsa_open(0, &req
, &obt
, &handle
, dev
)) {
727 obt_as
.freq
= obt
.freq
;
728 obt_as
.nchannels
= obt
.nchannels
;
729 obt_as
.fmt
= obt
.fmt
;
730 obt_as
.endianness
= obt
.endianness
;
732 audio_pcm_init_info (&hw
->info
, &obt_as
);
733 hw
->samples
= obt
.samples
;
735 alsa
->pollhlp
.s
= hw
->s
;
736 alsa
->handle
= handle
;
741 #define VOICE_CTL_PAUSE 0
742 #define VOICE_CTL_PREPARE 1
743 #define VOICE_CTL_START 2
745 static int alsa_voice_ctl (snd_pcm_t
*handle
, const char *typ
, int ctl
)
749 if (ctl
== VOICE_CTL_PAUSE
) {
750 err
= snd_pcm_drop (handle
);
752 alsa_logerr (err
, "Could not stop %s\n", typ
);
756 err
= snd_pcm_prepare (handle
);
758 alsa_logerr (err
, "Could not prepare handle for %s\n", typ
);
761 if (ctl
== VOICE_CTL_START
) {
762 err
= snd_pcm_start(handle
);
764 alsa_logerr (err
, "Could not start handle for %s\n", typ
);
773 static void alsa_enable_out(HWVoiceOut
*hw
, bool enable
)
775 ALSAVoiceOut
*alsa
= (ALSAVoiceOut
*) hw
;
776 AudiodevAlsaPerDirectionOptions
*apdo
= alsa
->dev
->u
.alsa
.out
;
779 bool poll_mode
= apdo
->try_poll
;
781 ldebug("enabling voice\n");
782 if (poll_mode
&& alsa_poll_out(hw
)) {
785 hw
->poll_mode
= poll_mode
;
786 alsa_voice_ctl(alsa
->handle
, "playback", VOICE_CTL_PREPARE
);
788 ldebug("disabling voice\n");
791 alsa_fini_poll(&alsa
->pollhlp
);
793 alsa_voice_ctl(alsa
->handle
, "playback", VOICE_CTL_PAUSE
);
797 static int alsa_init_in(HWVoiceIn
*hw
, struct audsettings
*as
, void *drv_opaque
)
799 ALSAVoiceIn
*alsa
= (ALSAVoiceIn
*) hw
;
800 struct alsa_params_req req
;
801 struct alsa_params_obt obt
;
803 struct audsettings obt_as
;
804 Audiodev
*dev
= drv_opaque
;
806 req
.fmt
= aud_to_alsafmt (as
->fmt
, as
->endianness
);
808 req
.nchannels
= as
->nchannels
;
810 if (alsa_open(1, &req
, &obt
, &handle
, dev
)) {
814 obt_as
.freq
= obt
.freq
;
815 obt_as
.nchannels
= obt
.nchannels
;
816 obt_as
.fmt
= obt
.fmt
;
817 obt_as
.endianness
= obt
.endianness
;
819 audio_pcm_init_info (&hw
->info
, &obt_as
);
820 hw
->samples
= obt
.samples
;
822 alsa
->pollhlp
.s
= hw
->s
;
823 alsa
->handle
= handle
;
828 static void alsa_fini_in (HWVoiceIn
*hw
)
830 ALSAVoiceIn
*alsa
= (ALSAVoiceIn
*) hw
;
832 alsa_anal_close (&alsa
->handle
, &alsa
->pollhlp
);
835 static size_t alsa_read(HWVoiceIn
*hw
, void *buf
, size_t len
)
837 ALSAVoiceIn
*alsa
= (ALSAVoiceIn
*) hw
;
841 void *dst
= advance(buf
, pos
);
842 snd_pcm_sframes_t nread
;
844 nread
= snd_pcm_readi(
845 alsa
->handle
, dst
, len
/ hw
->info
.bytes_per_frame
);
850 trace_alsa_read_zero(len
);
854 if (alsa_recover(alsa
->handle
)) {
855 alsa_logerr(nread
, "Failed to read %zu frames\n", len
);
858 trace_alsa_xrun_in();
865 alsa_logerr(nread
, "Failed to read %zu frames to %p\n",
871 pos
+= nread
* hw
->info
.bytes_per_frame
;
872 len
-= nread
* hw
->info
.bytes_per_frame
;
878 static void alsa_enable_in(HWVoiceIn
*hw
, bool enable
)
880 ALSAVoiceIn
*alsa
= (ALSAVoiceIn
*) hw
;
881 AudiodevAlsaPerDirectionOptions
*apdo
= alsa
->dev
->u
.alsa
.in
;
884 bool poll_mode
= apdo
->try_poll
;
886 ldebug("enabling voice\n");
887 if (poll_mode
&& alsa_poll_in(hw
)) {
890 hw
->poll_mode
= poll_mode
;
892 alsa_voice_ctl(alsa
->handle
, "capture", VOICE_CTL_START
);
894 ldebug ("disabling voice\n");
897 alsa_fini_poll(&alsa
->pollhlp
);
899 alsa_voice_ctl(alsa
->handle
, "capture", VOICE_CTL_PAUSE
);
903 static void alsa_init_per_direction(AudiodevAlsaPerDirectionOptions
*apdo
)
905 if (!apdo
->has_try_poll
) {
906 apdo
->try_poll
= true;
907 apdo
->has_try_poll
= true;
911 static void *alsa_audio_init(Audiodev
*dev
)
913 AudiodevAlsaOptions
*aopts
;
914 assert(dev
->driver
== AUDIODEV_DRIVER_ALSA
);
916 aopts
= &dev
->u
.alsa
;
917 alsa_init_per_direction(aopts
->in
);
918 alsa_init_per_direction(aopts
->out
);
921 * need to define them, as otherwise alsa produces no sound
922 * doesn't set has_* so alsa_open can identify it wasn't set by the user
924 if (!dev
->u
.alsa
.out
->has_period_length
) {
925 /* 1024 frames assuming 44100Hz */
926 dev
->u
.alsa
.out
->period_length
= 1024 * 1000000 / 44100;
928 if (!dev
->u
.alsa
.out
->has_buffer_length
) {
929 /* 4096 frames assuming 44100Hz */
930 dev
->u
.alsa
.out
->buffer_length
= 4096ll * 1000000 / 44100;
934 * OptsVisitor sets unspecified optional fields to zero, but do not depend
937 if (!dev
->u
.alsa
.in
->has_period_length
) {
938 dev
->u
.alsa
.in
->period_length
= 0;
940 if (!dev
->u
.alsa
.in
->has_buffer_length
) {
941 dev
->u
.alsa
.in
->buffer_length
= 0;
947 static void alsa_audio_fini (void *opaque
)
951 static struct audio_pcm_ops alsa_pcm_ops
= {
952 .init_out
= alsa_init_out
,
953 .fini_out
= alsa_fini_out
,
955 .buffer_get_free
= alsa_buffer_get_free
,
956 .run_buffer_out
= audio_generic_run_buffer_out
,
957 .enable_out
= alsa_enable_out
,
959 .init_in
= alsa_init_in
,
960 .fini_in
= alsa_fini_in
,
962 .run_buffer_in
= audio_generic_run_buffer_in
,
963 .enable_in
= alsa_enable_in
,
966 static struct audio_driver alsa_audio_driver
= {
968 .descr
= "ALSA http://www.alsa-project.org",
969 .init
= alsa_audio_init
,
970 .fini
= alsa_audio_fini
,
971 .pcm_ops
= &alsa_pcm_ops
,
973 .max_voices_out
= INT_MAX
,
974 .max_voices_in
= INT_MAX
,
975 .voice_size_out
= sizeof (ALSAVoiceOut
),
976 .voice_size_in
= sizeof (ALSAVoiceIn
)
979 static void register_audio_alsa(void)
981 audio_driver_register(&alsa_audio_driver
);
983 type_init(register_audio_alsa
);