oss: workaround for cases when OSS_GETVERSION is not defined
[qemu.git] / audio / ossaudio.c
blob4766aa72583af542af39f344e5eaaf75d544fe83
1 /*
2 * QEMU OSS audio driver
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
22 * THE SOFTWARE.
24 #include <stdlib.h>
25 #include <sys/mman.h>
26 #include <sys/types.h>
27 #include <sys/ioctl.h>
28 #ifdef __OpenBSD__
29 #include <soundcard.h>
30 #else
31 #include <sys/soundcard.h>
32 #endif
33 #include "qemu-common.h"
34 #include "host-utils.h"
35 #include "qemu-char.h"
36 #include "audio.h"
38 #define AUDIO_CAP "oss"
39 #include "audio_int.h"
41 typedef struct OSSVoiceOut {
42 HWVoiceOut hw;
43 void *pcm_buf;
44 int fd;
45 int wpos;
46 int nfrags;
47 int fragsize;
48 int mmapped;
49 int pending;
50 } OSSVoiceOut;
52 typedef struct OSSVoiceIn {
53 HWVoiceIn hw;
54 void *pcm_buf;
55 int fd;
56 int nfrags;
57 int fragsize;
58 } OSSVoiceIn;
60 static struct {
61 int try_mmap;
62 int nfrags;
63 int fragsize;
64 const char *devpath_out;
65 const char *devpath_in;
66 int debug;
67 int exclusive;
68 int policy;
69 } conf = {
70 .try_mmap = 0,
71 .nfrags = 4,
72 .fragsize = 4096,
73 .devpath_out = "/dev/dsp",
74 .devpath_in = "/dev/dsp",
75 .debug = 0,
76 .exclusive = 0,
77 .policy = 5
80 struct oss_params {
81 int freq;
82 audfmt_e fmt;
83 int nchannels;
84 int nfrags;
85 int fragsize;
88 static void GCC_FMT_ATTR (2, 3) oss_logerr (int err, const char *fmt, ...)
90 va_list ap;
92 va_start (ap, fmt);
93 AUD_vlog (AUDIO_CAP, fmt, ap);
94 va_end (ap);
96 AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
99 static void GCC_FMT_ATTR (3, 4) oss_logerr2 (
100 int err,
101 const char *typ,
102 const char *fmt,
106 va_list ap;
108 AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
110 va_start (ap, fmt);
111 AUD_vlog (AUDIO_CAP, fmt, ap);
112 va_end (ap);
114 AUD_log (AUDIO_CAP, "Reason: %s\n", strerror (err));
117 static void oss_anal_close (int *fdp)
119 int err;
121 qemu_set_fd_handler (*fdp, NULL, NULL, NULL);
122 err = close (*fdp);
123 if (err) {
124 oss_logerr (errno, "Failed to close file(fd=%d)\n", *fdp);
126 *fdp = -1;
129 static void oss_helper_poll_out (void *opaque)
131 (void) opaque;
132 audio_run ("oss_poll_out");
135 static void oss_helper_poll_in (void *opaque)
137 (void) opaque;
138 audio_run ("oss_poll_in");
141 static int oss_poll_out (HWVoiceOut *hw)
143 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
145 return qemu_set_fd_handler (oss->fd, NULL, oss_helper_poll_out, NULL);
148 static int oss_poll_in (HWVoiceIn *hw)
150 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
152 return qemu_set_fd_handler (oss->fd, oss_helper_poll_in, NULL, NULL);
155 static int oss_write (SWVoiceOut *sw, void *buf, int len)
157 return audio_pcm_sw_write (sw, buf, len);
160 static int aud_to_ossfmt (audfmt_e fmt)
162 switch (fmt) {
163 case AUD_FMT_S8:
164 return AFMT_S8;
166 case AUD_FMT_U8:
167 return AFMT_U8;
169 case AUD_FMT_S16:
170 return AFMT_S16_LE;
172 case AUD_FMT_U16:
173 return AFMT_U16_LE;
175 default:
176 dolog ("Internal logic error: Bad audio format %d\n", fmt);
177 #ifdef DEBUG_AUDIO
178 abort ();
179 #endif
180 return AFMT_U8;
184 static int oss_to_audfmt (int ossfmt, audfmt_e *fmt, int *endianness)
186 switch (ossfmt) {
187 case AFMT_S8:
188 *endianness = 0;
189 *fmt = AUD_FMT_S8;
190 break;
192 case AFMT_U8:
193 *endianness = 0;
194 *fmt = AUD_FMT_U8;
195 break;
197 case AFMT_S16_LE:
198 *endianness = 0;
199 *fmt = AUD_FMT_S16;
200 break;
202 case AFMT_U16_LE:
203 *endianness = 0;
204 *fmt = AUD_FMT_U16;
205 break;
207 case AFMT_S16_BE:
208 *endianness = 1;
209 *fmt = AUD_FMT_S16;
210 break;
212 case AFMT_U16_BE:
213 *endianness = 1;
214 *fmt = AUD_FMT_U16;
215 break;
217 default:
218 dolog ("Unrecognized audio format %d\n", ossfmt);
219 return -1;
222 return 0;
225 #if defined DEBUG_MISMATCHES || defined DEBUG
226 static void oss_dump_info (struct oss_params *req, struct oss_params *obt)
228 dolog ("parameter | requested value | obtained value\n");
229 dolog ("format | %10d | %10d\n", req->fmt, obt->fmt);
230 dolog ("channels | %10d | %10d\n",
231 req->nchannels, obt->nchannels);
232 dolog ("frequency | %10d | %10d\n", req->freq, obt->freq);
233 dolog ("nfrags | %10d | %10d\n", req->nfrags, obt->nfrags);
234 dolog ("fragsize | %10d | %10d\n",
235 req->fragsize, obt->fragsize);
237 #endif
239 static int oss_open (int in, struct oss_params *req,
240 struct oss_params *obt, int *pfd)
242 int fd;
243 #ifdef OSS_GETVERSION
244 int version;
245 #endif
246 int oflags = conf.exclusive ? O_EXCL : 0;
247 audio_buf_info abinfo;
248 int fmt, freq, nchannels;
249 const char *dspname = in ? conf.devpath_in : conf.devpath_out;
250 const char *typ = in ? "ADC" : "DAC";
252 /* Kludge needed to have working mmap on Linux */
253 oflags |= conf.try_mmap ? O_RDWR : (in ? O_RDONLY : O_WRONLY);
255 fd = open (dspname, oflags | O_NONBLOCK);
256 if (-1 == fd) {
257 oss_logerr2 (errno, typ, "Failed to open `%s'\n", dspname);
258 return -1;
261 freq = req->freq;
262 nchannels = req->nchannels;
263 fmt = req->fmt;
265 if (ioctl (fd, SNDCTL_DSP_SAMPLESIZE, &fmt)) {
266 oss_logerr2 (errno, typ, "Failed to set sample size %d\n", req->fmt);
267 goto err;
270 if (ioctl (fd, SNDCTL_DSP_CHANNELS, &nchannels)) {
271 oss_logerr2 (errno, typ, "Failed to set number of channels %d\n",
272 req->nchannels);
273 goto err;
276 if (ioctl (fd, SNDCTL_DSP_SPEED, &freq)) {
277 oss_logerr2 (errno, typ, "Failed to set frequency %d\n", req->freq);
278 goto err;
281 if (ioctl (fd, SNDCTL_DSP_NONBLOCK, NULL)) {
282 oss_logerr2 (errno, typ, "Failed to set non-blocking mode\n");
283 goto err;
286 #ifdef OSS_GETVERSION
287 if (ioctl (fd, OSS_GETVERSION, &version)) {
288 oss_logerr2 (errno, typ, "Failed to get OSS version\n");
289 version = 0;
292 if (conf.debug) {
293 dolog ("OSS version = %#x\n", version);
295 #endif
297 #ifdef SNDCTL_DSP_POLICY
298 if (conf.policy >= 0
299 #ifdef OSS_GETVERSION
300 && version >= 0x040000
301 #else
303 #endif
306 int policy = conf.policy;
307 if (ioctl (fd, SNDCTL_DSP_POLICY, &policy)) {
308 oss_logerr2 (errno, typ, "Failed to set timing policy to %d\n",
309 conf.policy);
310 goto err;
313 else
314 #endif
316 int mmmmssss = (req->nfrags << 16) | ctz32 (req->fragsize);
317 if (ioctl (fd, SNDCTL_DSP_SETFRAGMENT, &mmmmssss)) {
318 oss_logerr2 (errno, typ, "Failed to set buffer length (%d, %d)\n",
319 req->nfrags, req->fragsize);
320 goto err;
324 if (ioctl (fd, in ? SNDCTL_DSP_GETISPACE : SNDCTL_DSP_GETOSPACE, &abinfo)) {
325 oss_logerr2 (errno, typ, "Failed to get buffer length\n");
326 goto err;
329 if (!abinfo.fragstotal || !abinfo.fragsize) {
330 AUD_log (AUDIO_CAP, "Returned bogus buffer information(%d, %d) for %s\n",
331 abinfo.fragstotal, abinfo.fragsize, typ);
332 goto err;
335 obt->fmt = fmt;
336 obt->nchannels = nchannels;
337 obt->freq = freq;
338 obt->nfrags = abinfo.fragstotal;
339 obt->fragsize = abinfo.fragsize;
340 *pfd = fd;
342 #ifdef DEBUG_MISMATCHES
343 if ((req->fmt != obt->fmt) ||
344 (req->nchannels != obt->nchannels) ||
345 (req->freq != obt->freq) ||
346 (req->fragsize != obt->fragsize) ||
347 (req->nfrags != obt->nfrags)) {
348 dolog ("Audio parameters mismatch\n");
349 oss_dump_info (req, obt);
351 #endif
353 #ifdef DEBUG
354 oss_dump_info (req, obt);
355 #endif
356 return 0;
358 err:
359 oss_anal_close (&fd);
360 return -1;
363 static void oss_write_pending (OSSVoiceOut *oss)
365 HWVoiceOut *hw = &oss->hw;
367 if (oss->mmapped) {
368 return;
371 while (oss->pending) {
372 int samples_written;
373 ssize_t bytes_written;
374 int samples_till_end = hw->samples - oss->wpos;
375 int samples_to_write = audio_MIN (oss->pending, samples_till_end);
376 int bytes_to_write = samples_to_write << hw->info.shift;
377 void *pcm = advance (oss->pcm_buf, oss->wpos << hw->info.shift);
379 bytes_written = write (oss->fd, pcm, bytes_to_write);
380 if (bytes_written < 0) {
381 if (errno != EAGAIN) {
382 oss_logerr (errno, "failed to write %d bytes\n",
383 bytes_to_write);
385 break;
388 if (bytes_written & hw->info.align) {
389 dolog ("misaligned write asked for %d, but got %zd\n",
390 bytes_to_write, bytes_written);
391 return;
394 samples_written = bytes_written >> hw->info.shift;
395 oss->pending -= samples_written;
396 oss->wpos = (oss->wpos + samples_written) % hw->samples;
397 if (bytes_written - bytes_to_write) {
398 break;
403 static int oss_run_out (HWVoiceOut *hw, int live)
405 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
406 int err, decr;
407 struct audio_buf_info abinfo;
408 struct count_info cntinfo;
409 int bufsize;
411 bufsize = hw->samples << hw->info.shift;
413 if (oss->mmapped) {
414 int bytes, pos;
416 err = ioctl (oss->fd, SNDCTL_DSP_GETOPTR, &cntinfo);
417 if (err < 0) {
418 oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
419 return 0;
422 pos = hw->rpos << hw->info.shift;
423 bytes = audio_ring_dist (cntinfo.ptr, pos, bufsize);
424 decr = audio_MIN (bytes >> hw->info.shift, live);
426 else {
427 err = ioctl (oss->fd, SNDCTL_DSP_GETOSPACE, &abinfo);
428 if (err < 0) {
429 oss_logerr (errno, "SNDCTL_DSP_GETOPTR failed\n");
430 return 0;
433 if (abinfo.bytes > bufsize) {
434 if (conf.debug) {
435 dolog ("warning: Invalid available size, size=%d bufsize=%d\n"
436 "please report your OS/audio hw to av1474@comtv.ru\n",
437 abinfo.bytes, bufsize);
439 abinfo.bytes = bufsize;
442 if (abinfo.bytes < 0) {
443 if (conf.debug) {
444 dolog ("warning: Invalid available size, size=%d bufsize=%d\n",
445 abinfo.bytes, bufsize);
447 return 0;
450 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
451 if (!decr) {
452 return 0;
456 decr = audio_pcm_hw_clip_out (hw, oss->pcm_buf, decr, oss->pending);
457 oss->pending += decr;
458 oss_write_pending (oss);
460 return decr;
463 static void oss_fini_out (HWVoiceOut *hw)
465 int err;
466 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
468 ldebug ("oss_fini\n");
469 oss_anal_close (&oss->fd);
471 if (oss->pcm_buf) {
472 if (oss->mmapped) {
473 err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
474 if (err) {
475 oss_logerr (errno, "Failed to unmap buffer %p, size %d\n",
476 oss->pcm_buf, hw->samples << hw->info.shift);
479 else {
480 qemu_free (oss->pcm_buf);
482 oss->pcm_buf = NULL;
486 static int oss_init_out (HWVoiceOut *hw, struct audsettings *as)
488 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
489 struct oss_params req, obt;
490 int endianness;
491 int err;
492 int fd;
493 audfmt_e effective_fmt;
494 struct audsettings obt_as;
496 oss->fd = -1;
498 req.fmt = aud_to_ossfmt (as->fmt);
499 req.freq = as->freq;
500 req.nchannels = as->nchannels;
501 req.fragsize = conf.fragsize;
502 req.nfrags = conf.nfrags;
504 if (oss_open (0, &req, &obt, &fd)) {
505 return -1;
508 err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
509 if (err) {
510 oss_anal_close (&fd);
511 return -1;
514 obt_as.freq = obt.freq;
515 obt_as.nchannels = obt.nchannels;
516 obt_as.fmt = effective_fmt;
517 obt_as.endianness = endianness;
519 audio_pcm_init_info (&hw->info, &obt_as);
520 oss->nfrags = obt.nfrags;
521 oss->fragsize = obt.fragsize;
523 if (obt.nfrags * obt.fragsize & hw->info.align) {
524 dolog ("warning: Misaligned DAC buffer, size %d, alignment %d\n",
525 obt.nfrags * obt.fragsize, hw->info.align + 1);
528 hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
530 oss->mmapped = 0;
531 if (conf.try_mmap) {
532 oss->pcm_buf = mmap (
533 NULL,
534 hw->samples << hw->info.shift,
535 PROT_READ | PROT_WRITE,
536 MAP_SHARED,
540 if (oss->pcm_buf == MAP_FAILED) {
541 oss_logerr (errno, "Failed to map %d bytes of DAC\n",
542 hw->samples << hw->info.shift);
544 else {
545 int err;
546 int trig = 0;
547 if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
548 oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
550 else {
551 trig = PCM_ENABLE_OUTPUT;
552 if (ioctl (fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
553 oss_logerr (
554 errno,
555 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
558 else {
559 oss->mmapped = 1;
563 if (!oss->mmapped) {
564 err = munmap (oss->pcm_buf, hw->samples << hw->info.shift);
565 if (err) {
566 oss_logerr (errno, "Failed to unmap buffer %p size %d\n",
567 oss->pcm_buf, hw->samples << hw->info.shift);
573 if (!oss->mmapped) {
574 oss->pcm_buf = audio_calloc (
575 AUDIO_FUNC,
576 hw->samples,
577 1 << hw->info.shift
579 if (!oss->pcm_buf) {
580 dolog (
581 "Could not allocate DAC buffer (%d samples, each %d bytes)\n",
582 hw->samples,
583 1 << hw->info.shift
585 oss_anal_close (&fd);
586 return -1;
590 oss->fd = fd;
591 return 0;
594 static int oss_ctl_out (HWVoiceOut *hw, int cmd, ...)
596 int trig;
597 OSSVoiceOut *oss = (OSSVoiceOut *) hw;
599 switch (cmd) {
600 case VOICE_ENABLE:
602 va_list ap;
603 int poll_mode;
605 va_start (ap, cmd);
606 poll_mode = va_arg (ap, int);
607 va_end (ap);
609 ldebug ("enabling voice\n");
610 if (poll_mode && oss_poll_out (hw)) {
611 poll_mode = 0;
613 hw->poll_mode = poll_mode;
615 if (!oss->mmapped) {
616 return 0;
619 audio_pcm_info_clear_buf (&hw->info, oss->pcm_buf, hw->samples);
620 trig = PCM_ENABLE_OUTPUT;
621 if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
622 oss_logerr (
623 errno,
624 "SNDCTL_DSP_SETTRIGGER PCM_ENABLE_OUTPUT failed\n"
626 return -1;
629 break;
631 case VOICE_DISABLE:
632 if (hw->poll_mode) {
633 qemu_set_fd_handler (oss->fd, NULL, NULL, NULL);
634 hw->poll_mode = 0;
637 if (!oss->mmapped) {
638 return 0;
641 ldebug ("disabling voice\n");
642 trig = 0;
643 if (ioctl (oss->fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0) {
644 oss_logerr (errno, "SNDCTL_DSP_SETTRIGGER 0 failed\n");
645 return -1;
647 break;
649 return 0;
652 static int oss_init_in (HWVoiceIn *hw, struct audsettings *as)
654 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
655 struct oss_params req, obt;
656 int endianness;
657 int err;
658 int fd;
659 audfmt_e effective_fmt;
660 struct audsettings obt_as;
662 oss->fd = -1;
664 req.fmt = aud_to_ossfmt (as->fmt);
665 req.freq = as->freq;
666 req.nchannels = as->nchannels;
667 req.fragsize = conf.fragsize;
668 req.nfrags = conf.nfrags;
669 if (oss_open (1, &req, &obt, &fd)) {
670 return -1;
673 err = oss_to_audfmt (obt.fmt, &effective_fmt, &endianness);
674 if (err) {
675 oss_anal_close (&fd);
676 return -1;
679 obt_as.freq = obt.freq;
680 obt_as.nchannels = obt.nchannels;
681 obt_as.fmt = effective_fmt;
682 obt_as.endianness = endianness;
684 audio_pcm_init_info (&hw->info, &obt_as);
685 oss->nfrags = obt.nfrags;
686 oss->fragsize = obt.fragsize;
688 if (obt.nfrags * obt.fragsize & hw->info.align) {
689 dolog ("warning: Misaligned ADC buffer, size %d, alignment %d\n",
690 obt.nfrags * obt.fragsize, hw->info.align + 1);
693 hw->samples = (obt.nfrags * obt.fragsize) >> hw->info.shift;
694 oss->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
695 if (!oss->pcm_buf) {
696 dolog ("Could not allocate ADC buffer (%d samples, each %d bytes)\n",
697 hw->samples, 1 << hw->info.shift);
698 oss_anal_close (&fd);
699 return -1;
702 oss->fd = fd;
703 return 0;
706 static void oss_fini_in (HWVoiceIn *hw)
708 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
710 oss_anal_close (&oss->fd);
712 if (oss->pcm_buf) {
713 qemu_free (oss->pcm_buf);
714 oss->pcm_buf = NULL;
718 static int oss_run_in (HWVoiceIn *hw)
720 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
721 int hwshift = hw->info.shift;
722 int i;
723 int live = audio_pcm_hw_get_live_in (hw);
724 int dead = hw->samples - live;
725 size_t read_samples = 0;
726 struct {
727 int add;
728 int len;
729 } bufs[2] = {
730 { .add = hw->wpos, .len = 0 },
731 { .add = 0, .len = 0 }
734 if (!dead) {
735 return 0;
738 if (hw->wpos + dead > hw->samples) {
739 bufs[0].len = (hw->samples - hw->wpos) << hwshift;
740 bufs[1].len = (dead - (hw->samples - hw->wpos)) << hwshift;
742 else {
743 bufs[0].len = dead << hwshift;
746 for (i = 0; i < 2; ++i) {
747 ssize_t nread;
749 if (bufs[i].len) {
750 void *p = advance (oss->pcm_buf, bufs[i].add << hwshift);
751 nread = read (oss->fd, p, bufs[i].len);
753 if (nread > 0) {
754 if (nread & hw->info.align) {
755 dolog ("warning: Misaligned read %zd (requested %d), "
756 "alignment %d\n", nread, bufs[i].add << hwshift,
757 hw->info.align + 1);
759 read_samples += nread >> hwshift;
760 hw->conv (hw->conv_buf + bufs[i].add, p, nread >> hwshift,
761 &nominal_volume);
764 if (bufs[i].len - nread) {
765 if (nread == -1) {
766 switch (errno) {
767 case EINTR:
768 case EAGAIN:
769 break;
770 default:
771 oss_logerr (
772 errno,
773 "Failed to read %d bytes of audio (to %p)\n",
774 bufs[i].len, p
776 break;
779 break;
784 hw->wpos = (hw->wpos + read_samples) % hw->samples;
785 return read_samples;
788 static int oss_read (SWVoiceIn *sw, void *buf, int size)
790 return audio_pcm_sw_read (sw, buf, size);
793 static int oss_ctl_in (HWVoiceIn *hw, int cmd, ...)
795 OSSVoiceIn *oss = (OSSVoiceIn *) hw;
797 switch (cmd) {
798 case VOICE_ENABLE:
800 va_list ap;
801 int poll_mode;
803 va_start (ap, cmd);
804 poll_mode = va_arg (ap, int);
805 va_end (ap);
807 if (poll_mode && oss_poll_in (hw)) {
808 poll_mode = 0;
810 hw->poll_mode = poll_mode;
812 break;
814 case VOICE_DISABLE:
815 if (hw->poll_mode) {
816 hw->poll_mode = 0;
817 qemu_set_fd_handler (oss->fd, NULL, NULL, NULL);
819 break;
821 return 0;
824 static void *oss_audio_init (void)
826 return &conf;
829 static void oss_audio_fini (void *opaque)
831 (void) opaque;
834 static struct audio_option oss_options[] = {
836 .name = "FRAGSIZE",
837 .tag = AUD_OPT_INT,
838 .valp = &conf.fragsize,
839 .descr = "Fragment size in bytes"
842 .name = "NFRAGS",
843 .tag = AUD_OPT_INT,
844 .valp = &conf.nfrags,
845 .descr = "Number of fragments"
848 .name = "MMAP",
849 .tag = AUD_OPT_BOOL,
850 .valp = &conf.try_mmap,
851 .descr = "Try using memory mapped access"
854 .name = "DAC_DEV",
855 .tag = AUD_OPT_STR,
856 .valp = &conf.devpath_out,
857 .descr = "Path to DAC device"
860 .name = "ADC_DEV",
861 .tag = AUD_OPT_STR,
862 .valp = &conf.devpath_in,
863 .descr = "Path to ADC device"
866 .name = "EXCLUSIVE",
867 .tag = AUD_OPT_BOOL,
868 .valp = &conf.exclusive,
869 .descr = "Open device in exclusive mode (vmix wont work)"
871 #ifdef SNDCTL_DSP_POLICY
873 .name = "POLICY",
874 .tag = AUD_OPT_INT,
875 .valp = &conf.policy,
876 .descr = "Set the timing policy of the device, -1 to use fragment mode",
878 #endif
880 .name = "DEBUG",
881 .tag = AUD_OPT_BOOL,
882 .valp = &conf.debug,
883 .descr = "Turn on some debugging messages"
885 { /* End of list */ }
888 static struct audio_pcm_ops oss_pcm_ops = {
889 .init_out = oss_init_out,
890 .fini_out = oss_fini_out,
891 .run_out = oss_run_out,
892 .write = oss_write,
893 .ctl_out = oss_ctl_out,
895 .init_in = oss_init_in,
896 .fini_in = oss_fini_in,
897 .run_in = oss_run_in,
898 .read = oss_read,
899 .ctl_in = oss_ctl_in
902 struct audio_driver oss_audio_driver = {
903 .name = "oss",
904 .descr = "OSS http://www.opensound.com",
905 .options = oss_options,
906 .init = oss_audio_init,
907 .fini = oss_audio_fini,
908 .pcm_ops = &oss_pcm_ops,
909 .can_be_default = 1,
910 .max_voices_out = INT_MAX,
911 .max_voices_in = INT_MAX,
912 .voice_size_out = sizeof (OSSVoiceOut),
913 .voice_size_in = sizeof (OSSVoiceIn)