aboutsummaryrefslogtreecommitdiff
path: root/audio/sndio/files/patch-libsndio_sio__oss.c
blob: 24b9f04819804a32962675d54a8f16189bada565 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
--- libsndio/sio_oss.c.orig	2016-07-29 14:09:21 UTC
+++ libsndio/sio_oss.c
@@ -0,0 +1,890 @@
+/*	$OpenBSD$	*/
+/*
+ * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef USE_OSS
+#include <sys/types.h>
+#include <sys/ioctl.h>
+#include <sys/soundcard.h>
+#include <sys/stat.h>
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <poll.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include "debug.h"
+#include "sio_priv.h"
+#include "bsd-compat.h"
+
+#define DEVPATH_PREFIX	"/dev/dsp"
+#define DEVPATH_MAX 	(1 +		\
+	sizeof(DEVPATH_PREFIX) - 1 +	\
+	sizeof(int) * 3)
+
+struct audio_pos {
+	unsigned int play_pos;  /* total bytes played */
+	unsigned int play_xrun; /* bytes of silence inserted */
+	unsigned int rec_pos;   /* total bytes recorded */
+	unsigned int rec_xrun;  /* bytes dropped */
+};
+
+#define AUDIO_INITPAR(p)						\
+	(void)memset((void *)(p), 0xff, sizeof(struct audio_swpar))
+
+/*
+ * argument to AUDIO_SETPAR and AUDIO_GETPAR ioctls
+ */
+struct audio_swpar {
+	unsigned int sig;		/* if 1, encoding is signed */
+	unsigned int le;		/* if 1, encoding is little-endian */
+	unsigned int bits;		/* bits per sample */
+	unsigned int bps;		/* bytes per sample */
+	unsigned int msb;		/* if 1, bits are msb-aligned */
+	unsigned int rate;		/* common play & rec sample rate */
+	unsigned int pchan;		/* play channels */
+	unsigned int rchan;		/* rec channels */
+	unsigned int nblks;		/* number of blocks in play buffer */
+	unsigned int round;		/* common frames per block */
+	unsigned int _spare[6];
+};
+
+struct sio_oss_hdl {
+	struct sio_hdl sio;
+	int fd;
+	int filling;
+	unsigned int ibpf, obpf;	/* bytes per frame */
+	unsigned int ibytes, obytes;	/* bytes the hw transferred */
+	unsigned int ierr, oerr;	/* frames the hw dropped */
+	int idelta, odelta;		/* position reported to client */
+
+	unsigned int play_pos;
+	struct audio_swpar swpar;
+};
+
+static void sio_oss_close(struct sio_hdl *);
+static int sio_oss_start(struct sio_hdl *);
+static int sio_oss_stop(struct sio_hdl *);
+static int sio_oss_setpar(struct sio_hdl *, struct sio_par *);
+static int sio_oss_getpar(struct sio_hdl *, struct sio_par *);
+static int sio_oss_getcap(struct sio_hdl *, struct sio_cap *);
+static size_t sio_oss_read(struct sio_hdl *, void *, size_t);
+static size_t sio_oss_write(struct sio_hdl *, const void *, size_t);
+static int sio_oss_nfds(struct sio_hdl *);
+static int sio_oss_pollfd(struct sio_hdl *, struct pollfd *, int);
+static int sio_oss_revents(struct sio_hdl *, struct pollfd *);
+
+static void sio_oss_fmt_to_swpar(int, struct audio_swpar *);
+static int sio_oss_audio_getpos(struct sio_oss_hdl *, struct audio_pos *);
+static int sio_oss_audio_getpar(struct sio_oss_hdl *, struct audio_swpar *);
+static int sio_oss_audio_setpar(struct sio_oss_hdl *, struct audio_swpar *);
+static int sio_oss_audio_start(struct sio_oss_hdl *);
+static int sio_oss_audio_stop(struct sio_oss_hdl *, int);
+
+static struct sio_ops sio_oss_ops = {
+	sio_oss_close,
+	sio_oss_setpar,
+	sio_oss_getpar,
+	sio_oss_getcap,
+	sio_oss_write,
+	sio_oss_read,
+	sio_oss_start,
+	sio_oss_stop,
+	sio_oss_nfds,
+	sio_oss_pollfd,
+	sio_oss_revents,
+	NULL, /* setvol */
+	NULL, /* getvol */
+};
+
+static int
+sio_oss_adjpar(struct sio_oss_hdl *hdl, struct audio_swpar *ap)
+{
+	if (hdl->sio.eof)
+		return 0;
+	if (sio_oss_audio_setpar(hdl, ap)) {
+		DPERROR("AUDIO_SETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	if (sio_oss_audio_getpar(hdl, ap)) {
+		DPERROR("AUDIO_GETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	return 1;
+}
+
+/*
+ * try to set the device to the given parameters and check that the
+ * device can use them; return 1 on success, 0 on failure or error
+ */
+static int
+sio_oss_testpar(struct sio_oss_hdl *hdl, struct sio_enc *enc,
+    unsigned int pchan, unsigned int rchan, unsigned int rate)
+{
+	struct audio_swpar ap;
+
+	AUDIO_INITPAR(&ap);
+	if (enc != NULL) {
+		ap.sig = enc->sig;
+		ap.bits = enc->bits;
+		ap.bps = enc->bps;
+		if (ap.bps > 1)
+			ap.le = enc->le;
+		if (ap.bps * 8 > ap.bits)
+			ap.msb = enc->msb;
+	}
+	if (rate)
+		ap.rate = rate;
+	if (pchan && (hdl->sio.mode & SIO_PLAY))
+		ap.pchan = pchan;
+	if (rchan && (hdl->sio.mode & SIO_REC))
+		ap.rchan = rchan;
+	if (!sio_oss_adjpar(hdl, &ap))
+		return 0;
+	if (pchan && ap.pchan != pchan)
+		return 0;
+	if (rchan && ap.rchan != rchan)
+		return 0;
+	if (rate && ap.rate != rate)
+		return 0;
+	if (enc) {
+		if (ap.sig != enc->sig)
+			return 0;
+		if (ap.bits != enc->bits)
+			return 0;
+		if (ap.bps != enc->bps)
+			return 0;
+		if (ap.bps > 1 && ap.le != enc->le)
+			return 0;
+		if (ap.bits < ap.bps * 8 && ap.msb != enc->msb)
+			return 0;
+	}
+	return 1;
+}
+
+/*
+ * guess device capabilities
+ */
+static int
+sio_oss_getcap(struct sio_hdl *sh, struct sio_cap *cap)
+{
+	static unsigned int chans[] = {
+		1, 2, 4, 6, 8, 10, 12
+	};
+	static unsigned int rates[] = {
+		8000, 11025, 12000, 16000, 22050, 24000,
+		32000, 44100, 48000, 64000, 88200, 96000
+	};
+	static unsigned int encs[] = {
+		8, 16, 24, 32
+	};
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	struct audio_swpar savepar, ap;
+	unsigned int nconf = 0;
+	unsigned int enc_map = 0, rchan_map = 0, pchan_map = 0, rate_map;
+	unsigned int i, j, conf;
+
+	if (sio_oss_audio_getpar(hdl, &savepar)) {
+		DPERROR("AUDIO_GETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+
+	/*
+	 * get a subset of supported encodings
+	 */
+	for (i = 0; i < sizeof(encs) / sizeof(encs[0]); i++) {
+		AUDIO_INITPAR(&ap);
+		ap.bits = encs[i];
+		ap.sig = (ap.bits > 8) ? 1 : 0;
+		if (!sio_oss_adjpar(hdl, &ap))
+			return 0;
+		if (ap.bits == encs[i]) {
+			cap->enc[i].sig = ap.sig;
+			cap->enc[i].bits = ap.bits;
+			cap->enc[i].le = ap.le;
+			cap->enc[i].bps = ap.bps;
+			cap->enc[i].msb = ap.msb;
+			enc_map |= 1 << i;
+		}
+	}
+
+	/*
+	 * fill channels
+	 *
+	 * for now we're lucky: all kernel devices assume that the
+	 * number of channels and the encoding are independent so we can
+	 * use the current encoding and try various channels.
+	 */
+	if (hdl->sio.mode & SIO_PLAY) {
+		for (i = 0; i < sizeof(chans) / sizeof(chans[0]); i++) {
+			AUDIO_INITPAR(&ap);
+			ap.pchan = chans[i];
+			if (!sio_oss_adjpar(hdl, &ap))
+				return 0;
+			if (ap.pchan == chans[i]) {
+				cap->pchan[i] = chans[i];
+				pchan_map |= (1 << i);
+			}
+		}
+	}
+	if (hdl->sio.mode & SIO_REC) {
+		for (i = 0; i < sizeof(chans) / sizeof(chans[0]); i++) {
+			AUDIO_INITPAR(&ap);
+			ap.pchan = chans[i];
+			if (!sio_oss_adjpar(hdl, &ap))
+				return 0;
+			if (ap.rchan == chans[i]) {
+				cap->rchan[i] = chans[i];
+				rchan_map |= (1 << i);
+			}
+		}
+	}
+
+	/*
+	 * fill rates
+	 *
+	 * rates are not independent from other parameters (eg. on
+	 * uaudio devices), so certain rates may not be allowed with
+	 * certain encodings. We have to check rates for all encodings
+	 */
+	for (j = 0; j < sizeof(encs) / sizeof(encs[0]); j++) {
+		rate_map = 0;
+		if ((enc_map & (1 << j)) == 0)
+			continue;
+		for (i = 0; i < sizeof(rates) / sizeof(rates[0]); i++) {
+			if (sio_oss_testpar(hdl,
+				&cap->enc[j], 0, 0, rates[i])) {
+				cap->rate[i] = rates[i];
+				rate_map |= (1 << i);
+			}
+		}
+		for (conf = 0; conf < nconf; conf++) {
+			if (cap->confs[conf].rate == rate_map) {
+				cap->confs[conf].enc |= (1 << j);
+				break;
+			}
+		}
+		if (conf == nconf) {
+			if (nconf == SIO_NCONF)
+				break;
+			cap->confs[nconf].enc = (1 << j);
+			cap->confs[nconf].pchan = pchan_map;
+			cap->confs[nconf].rchan = rchan_map;
+			cap->confs[nconf].rate = rate_map;
+			nconf++;
+		}
+	}
+	cap->nconf = nconf;
+
+	if (sio_oss_audio_setpar(hdl, &savepar)) {
+		DPERROR("AUDIO_SETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	return 1;
+}
+
+static int
+sio_oss_getfd(const char *str, unsigned int mode, int nbio)
+{
+	const char *p;
+	char path[DEVPATH_MAX];
+	unsigned int devnum;
+	int fd, flags;
+
+	p = _sndio_parsetype(str, "rsnd");
+	if (p == NULL) {
+		DPRINTF("sio_oss_getfd: %s: \"rsnd\" expected\n", str);
+		return -1;
+	}
+	switch (*p) {
+	case '/':
+		p++;
+		break;
+	default:
+		DPRINTF("sio_oss_getfd: %s: '/' expected\n", str);
+		return -1;
+	}
+	p = _sndio_parsenum(p, &devnum, 255);
+	if (p == NULL || *p != '\0') {
+		DPRINTF("sio_oss_getfd: %s: number expected after '/'\n", str);
+		return -1;
+	}
+	snprintf(path, sizeof(path), DEVPATH_PREFIX "%u", devnum);
+	if (mode == (SIO_PLAY | SIO_REC))
+		flags = O_RDWR;
+	else
+		flags = (mode & SIO_PLAY) ? O_WRONLY : O_RDONLY;
+	while ((fd = open(path, flags | O_NONBLOCK | O_CLOEXEC)) < 0) {
+		if (errno == EINTR)
+			continue;
+		DPERROR(path);
+		return -1;
+	}
+	return fd;
+}
+
+static struct sio_hdl *
+sio_oss_fdopen(int fd, unsigned int mode, int nbio)
+{
+	struct sio_oss_hdl *hdl;
+
+	hdl = malloc(sizeof(struct sio_oss_hdl));
+	if (hdl == NULL)
+		return NULL;
+	_sio_create(&hdl->sio, &sio_oss_ops, mode, nbio);
+
+	/* Set default device parameters */
+	sio_oss_fmt_to_swpar(AFMT_S16_LE, &hdl->swpar);
+	hdl->swpar.msb = 1;
+	hdl->swpar.rate = 44100;
+	hdl->swpar.bps = SIO_BPS(hdl->swpar.bits);
+	hdl->swpar.pchan = hdl->swpar.rchan = 2;
+	hdl->swpar.round = 960; // TODO:
+	hdl->swpar.nblks = 8; // TODO:
+
+	hdl->fd = fd;
+	hdl->filling = 0;
+	return (struct sio_hdl *)hdl;
+}
+
+struct sio_hdl *
+_sio_oss_open(const char *str, unsigned int mode, int nbio)
+{
+	struct sio_hdl *hdl;
+	int fd;
+
+	fd = sio_oss_getfd(str, mode, nbio);
+	if (fd < 0)
+		return NULL;
+	hdl = sio_oss_fdopen(fd, mode, nbio);
+	if (hdl != NULL)
+		return hdl;
+	while (close(fd) < 0 && errno == EINTR)
+		; /* retry */
+
+	return NULL;
+}
+
+static void
+sio_oss_close(struct sio_hdl *sh)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+
+	while (close(hdl->fd) < 0 && errno == EINTR)
+		; /* retry */
+	free(hdl);
+}
+
+static int
+sio_oss_start(struct sio_hdl *sh)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+
+	hdl->obpf = hdl->sio.par.pchan * hdl->sio.par.bps;
+	hdl->ibpf = hdl->sio.par.rchan * hdl->sio.par.bps;
+	hdl->ibytes = 0;
+	hdl->obytes = 0;
+	hdl->ierr = 0;
+	hdl->oerr = 0;
+	hdl->idelta = 0;
+	hdl->odelta = 0;
+	hdl->play_pos = 0;
+
+	if (hdl->sio.mode & SIO_PLAY) {
+		/*
+		 * keep the device paused and let sio_oss_pollfd() trigger the
+		 * start later, to avoid buffer underruns
+		 */
+		hdl->filling = 1;
+	} else {
+		/*
+		 * no play buffers to fill, start now!
+		 */
+		if (sio_oss_audio_start(hdl) < 0) {
+			DPERROR("AUDIO_START");
+			hdl->sio.eof = 1;
+			return 0;
+		}
+		_sio_onmove_cb(&hdl->sio, 0);
+	}
+	return 1;
+}
+
+static int
+sio_oss_stop(struct sio_hdl *sh)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+
+	if (hdl->filling) {
+		hdl->filling = 0;
+		return 1;
+	}
+	if (sio_oss_audio_stop(hdl, hdl->fd) < 0) {
+		DPERROR("AUDIO_STOP");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	return 1;
+}
+
+static int
+sio_oss_setpar(struct sio_hdl *sh, struct sio_par *par)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	struct audio_swpar ap;
+
+	AUDIO_INITPAR(&ap);
+	ap.sig = par->sig;
+	ap.le = par->le;
+	ap.bits = par->bits;
+	ap.bps = par->bps;
+	ap.msb = par->msb;
+	ap.rate = par->rate;
+	if (hdl->sio.mode & SIO_PLAY)
+		ap.pchan = par->pchan;
+	if (hdl->sio.mode & SIO_REC)
+		ap.rchan = par->rchan;
+	if (par->round != ~0U && par->appbufsz != ~0U) {
+		ap.round = par->round;
+		ap.nblks = par->appbufsz / par->round;
+	} else if (par->round != ~0U) {
+		ap.round = par->round;
+		ap.nblks = 2;
+	} else if (par->appbufsz != ~0U) {
+		ap.round = par->appbufsz / 2;
+		ap.nblks = 2;
+	}
+	if (sio_oss_audio_setpar(hdl, &ap) < 0) {
+		DPERROR("AUDIO_SETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	return 1;
+}
+
+static int
+sio_oss_getpar(struct sio_hdl *sh, struct sio_par *par)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	struct audio_swpar ap;
+
+	if (sio_oss_audio_getpar(hdl, &ap) < 0) {
+		DPERROR("AUDIO_GETPAR");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	par->sig = ap.sig;
+	par->le = ap.le;
+	par->bits = ap.bits;
+	par->bps = ap.bps;
+	par->msb = ap.msb;
+	par->rate = ap.rate;
+	par->pchan = ap.pchan;
+	par->rchan = ap.rchan;
+	par->round = ap.round;
+	par->appbufsz = par->bufsz = ap.nblks * ap.round;
+	par->xrun = SIO_IGNORE;
+	return 1;
+}
+
+static size_t
+sio_oss_read(struct sio_hdl *sh, void *buf, size_t len)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	ssize_t n;
+
+	while ((n = read(hdl->fd, buf, len)) < 0) {
+		if (errno == EINTR)
+			continue;
+		if (errno != EAGAIN) {
+			DPERROR("sio_oss_read: read");
+			hdl->sio.eof = 1;
+		}
+		return 0;
+	}
+	if (n == 0) {
+		DPRINTF("sio_oss_read: eof\n");
+		hdl->sio.eof = 1;
+		return 0;
+	}
+	return n;
+}
+
+static size_t
+sio_oss_write(struct sio_hdl *sh, const void *buf, size_t len)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	const unsigned char *data = buf;
+	ssize_t n, todo;
+
+	todo = len;
+	while ((n = write(hdl->fd, data, todo)) < 0) {
+		if (errno == EINTR)
+			continue;
+		if (errno != EAGAIN) {
+			DPERROR("sio_oss_write: write");
+			hdl->sio.eof = 1;
+		}
+		return 0;
+	}
+
+	hdl->play_pos += n;
+
+	return n;
+}
+
+static int
+sio_oss_nfds(struct sio_hdl *hdl)
+{
+	return 1;
+}
+
+static int
+sio_oss_pollfd(struct sio_hdl *sh, struct pollfd *pfd, int events)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+
+	pfd->fd = hdl->fd;
+	pfd->events = events;
+	if (hdl->filling && hdl->sio.wused == hdl->sio.par.bufsz *
+		hdl->sio.par.pchan * hdl->sio.par.bps) {
+		hdl->filling = 0;
+		if (sio_oss_audio_start(hdl) < 0) {
+			DPERROR("AUDIO_START");
+			hdl->sio.eof = 1;
+			return 0;
+		}
+		_sio_onmove_cb(&hdl->sio, 0);
+	}
+	return 1;
+}
+
+int
+sio_oss_revents(struct sio_hdl *sh, struct pollfd *pfd)
+{
+	struct sio_oss_hdl *hdl = (struct sio_oss_hdl *)sh;
+	struct audio_pos ap;
+	int dierr = 0, doerr = 0, offset, delta;
+	int revents = pfd->revents;
+
+	if ((pfd->revents & POLLHUP) ||
+	    (pfd->revents & (POLLIN | POLLOUT)) == 0)
+		return pfd->revents;
+	if (sio_oss_audio_getpos(hdl, &ap) < 0) {
+		DPERROR("sio_oss_revents: GETPOS");
+		hdl->sio.eof = 1;
+		return POLLHUP;
+	}
+	if (hdl->sio.mode & SIO_PLAY) {
+		delta = (ap.play_pos - hdl->obytes) / hdl->obpf;
+		doerr = (ap.play_xrun - hdl->oerr) / hdl->obpf;
+		hdl->obytes = ap.play_pos;
+		hdl->oerr = ap.play_xrun;
+		hdl->odelta += delta;
+		if (!(hdl->sio.mode & SIO_REC)) {
+			hdl->idelta += delta;
+			dierr = doerr;
+		}
+		if (doerr > 0)
+			DPRINTFN(2, "play xrun %d\n", doerr);
+	}
+	if (hdl->sio.mode & SIO_REC) {
+		delta = (ap.rec_pos - hdl->ibytes) / hdl->ibpf;
+		dierr = (ap.rec_xrun - hdl->ierr) / hdl->ibpf;
+		hdl->ibytes = ap.rec_pos;
+		hdl->ierr = ap.rec_xrun;
+		hdl->idelta += delta;
+		if (!(hdl->sio.mode & SIO_PLAY)) {
+			hdl->odelta += delta;
+			doerr = dierr;
+		}
+		if (dierr > 0)
+			DPRINTFN(2, "rec xrun %d\n", dierr);
+	}
+
+	/*
+	 * GETPOS reports positions including xruns,
+	 * so we have to substract to get the real position
+	 */
+	hdl->idelta -= dierr;
+	hdl->odelta -= doerr;
+
+	offset = doerr - dierr;
+	if (offset > 0) {
+		hdl->sio.rdrop += offset * hdl->ibpf;
+		hdl->idelta -= offset;
+		DPRINTFN(2, "will drop %d and pause %d\n", offset, doerr);
+	} else if (offset < 0) {
+		hdl->sio.wsil += -offset * hdl->obpf;
+		hdl->odelta -= -offset;
+		DPRINTFN(2, "will insert %d and pause %d\n", -offset, dierr);
+	}
+
+	delta = (hdl->idelta > hdl->odelta) ? hdl->idelta : hdl->odelta;
+	if (delta > 0) {
+		_sio_onmove_cb(&hdl->sio, delta);
+		hdl->idelta -= delta;
+		hdl->odelta -= delta;
+	}
+	return revents;
+}
+
+static int
+sio_oss_audio_getpos(struct sio_oss_hdl *hdl, struct audio_pos *ap)
+{
+	count_info cio, cii;
+	oss_count_t optr;
+
+	ap->play_pos = hdl->play_pos / hdl->sio.par.bps;
+	ap->play_xrun = 0;
+
+	if (ioctl(hdl->fd, SNDCTL_DSP_GETIPTR, &cii) < 0) {
+		DPERROR("sio_oss_getpos: GETIPTR");
+		return -1;
+	}
+
+	ap->rec_pos = cii.bytes;
+	ap->rec_xrun = 0;
+
+	return 0;
+}
+
+static void
+sio_oss_fmt_to_swpar(int fmt, struct audio_swpar *ap) {
+	switch(fmt) {
+	case AFMT_S8:
+		ap->le = 1;
+		ap->sig = 1;
+		ap->bits = 8;
+		break;
+	case AFMT_U8:
+		ap->le = 1;
+		ap->sig = 0;
+		ap->bits = 8;
+		break;
+	case AFMT_S16_LE:
+		ap->le = 1;
+		ap->sig = 1;
+		ap->bits = 16;
+		break;
+	case AFMT_S16_BE:
+		ap->le = 0;
+		ap->sig = 1;
+		ap->bits = 16;
+		break;
+	case AFMT_U16_LE:
+		ap->le = 1;
+		ap->sig = 0;
+		ap->bits = 16;
+		break;
+	case AFMT_U16_BE:
+		ap->le = 0;
+		ap->sig = 0;
+		ap->bits = 16;
+		break;
+	case AFMT_S24_LE:
+		ap->le = 1;
+		ap->sig = 1;
+		ap->bits = 24;
+		break;
+	case AFMT_S24_BE:
+		ap->le = 0;
+		ap->sig = 1;
+		ap->bits = 24;
+		break;
+	case AFMT_U24_LE:
+		ap->le = 1;
+		ap->sig = 0;
+		ap->bits = 24;
+		break;
+	case AFMT_U24_BE:
+		ap->le = 0;
+		ap->sig = 0;
+		ap->bits = 24;
+		break;
+	case AFMT_S32_LE:
+		ap->le = 1;
+		ap->sig = 1;
+		ap->bits = 32;
+		break;
+	case AFMT_S32_BE:
+		ap->le = 0;
+		ap->sig = 1;
+		ap->bits = 32;
+		break;
+	case AFMT_U32_LE:
+		ap->le = 1;
+		ap->sig = 0;
+		ap->bits = 32;
+		break;
+	case AFMT_U32_BE:
+		ap->le = 0;
+		ap->sig = 0;
+		ap->bits = 32;
+		break;
+	}
+}
+
+static int
+sio_oss_swpar_to_fmt(struct audio_swpar *ap)
+{
+	unsigned int bits = ap->bits;
+	unsigned int sig = ap->sig;
+	unsigned int le = ap->le;
+
+	switch(bits) {
+	case 8:
+		if (sig)
+			return AFMT_S8;
+		else
+			return AFMT_U8;
+		break;
+	case 16:
+		if (sig)
+			if (le)
+				return AFMT_S16_LE;
+			else
+				return AFMT_S16_BE;
+		else
+			if (le)
+				return AFMT_U16_LE;
+			else
+				return AFMT_U16_BE;
+		break;
+		break;
+	case 24:
+		if (sig)
+			if (le)
+				return AFMT_S24_LE;
+			else
+				return AFMT_S24_BE;
+		else
+			if (le)
+				return AFMT_U24_LE;
+			else
+				return AFMT_U24_BE;
+		break;
+		break;
+	case 32:
+		if (sig)
+			if (le)
+				return AFMT_S32_LE;
+			else
+				return AFMT_S32_BE;
+		else
+			if (le)
+				return AFMT_U32_LE;
+			else
+				return AFMT_U32_BE;
+		break;
+	default:
+		if (sig)
+			if (SIO_LE_NATIVE)
+				return AFMT_S16_LE;
+			else
+				return AFMT_S16_BE;
+		else
+			if (SIO_LE_NATIVE)
+				return AFMT_U16_LE;
+			else
+				return AFMT_U16_BE;
+	}
+}
+
+static int sio_oss_audio_getpar(struct sio_oss_hdl *hdl, struct audio_swpar *ap)
+{
+	audio_buf_info bi;
+
+	*ap = hdl->swpar;
+
+	return 0;
+}
+
+static int sio_oss_audio_setpar(struct sio_oss_hdl *hdl, struct audio_swpar *ap)
+{
+	int fmt = sio_oss_swpar_to_fmt(ap);
+	if (fmt < 0)
+		return -1;
+
+	if (ioctl(hdl->fd, SNDCTL_DSP_SETFMT, &fmt) < 0)
+		return -1;
+
+	sio_oss_fmt_to_swpar(fmt, ap);
+
+	if (ioctl(hdl->fd, SNDCTL_DSP_SPEED, &ap->rate) < 0)
+		return -1;
+
+	ap->bps = SIO_BPS(ap->bits);
+	ap->msb = 0;
+
+	int chan = (hdl->sio.mode & SIO_PLAY) ? ap->pchan : ap->rchan;
+	if (ioctl(hdl->fd, SNDCTL_DSP_CHANNELS, &chan) < 0)
+		return -1;
+
+	ap->pchan = ap->rchan = chan;
+
+	hdl->swpar = *ap;
+
+	return 0;
+}
+
+static int sio_oss_audio_start(struct sio_oss_hdl *hdl) {
+	// Empty playback buffer
+	if (ioctl(hdl->fd, SNDCTL_DSP_SKIP, NULL) < 0) {
+		DPERROR("SNDCTL_DSP_SKIP");
+		return -1;
+	}
+
+	int trigger;
+
+	if (hdl->sio.mode & SIO_PLAY) {
+		trigger = PCM_ENABLE_OUTPUT;
+	}
+	if (hdl->sio.mode & SIO_REC) {
+		trigger = PCM_ENABLE_INPUT;
+	} // TODO:
+
+	if (ioctl(hdl->fd, SNDCTL_DSP_SETTRIGGER, &trigger)) {
+		DPERROR("sio_oss_start: SETTRIGGER");
+		return -1;
+	}
+
+	return 0;
+}
+
+static int sio_oss_audio_stop(struct sio_oss_hdl *hdl, int fd) {
+	/* Block until buffer is played */
+	if (ioctl(hdl->fd, SNDCTL_DSP_SYNC, NULL) < 0) {
+		return -1;
+	}
+
+	// TODO: Check mode and use HALT_{IN,OUT}PUT
+	if (ioctl(hdl->fd, SNDCTL_DSP_HALT, NULL) < 0) {
+		return -1;
+	}
+
+	return 0;
+}
+
+#endif /* defined USE_OSS */