Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
src: Pull up following revision(s) (requested by nat in ticket #...
details: https://anonhg.NetBSD.org/src/rev/73e718213e0e
branches: netbsd-8
changeset: 318243:73e718213e0e
user: martin <martin%NetBSD.org@localhost>
date: Mon Apr 16 14:16:53 2018 +0000
description:
Pull up following revision(s) (requested by nat in ticket #761):
sys/dev/isa/sbdsp.c: revision 1.137
Add AUDIO_ENCODING_SLINEAR to supported encodings. This allows sb, sbpro
& sb16 to configure with 8-bit precision.
Tested in games/mame with a 486DX emulation.
diffstat:
sys/dev/isa/sbdsp.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diffs (42 lines):
diff -r ebad06db0337 -r 73e718213e0e sys/dev/isa/sbdsp.c
--- a/sys/dev/isa/sbdsp.c Mon Apr 16 14:15:03 2018 +0000
+++ b/sys/dev/isa/sbdsp.c Mon Apr 16 14:16:53 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbdsp.c,v 1.136 2016/07/11 11:31:50 msaitoh Exp $ */
+/* $NetBSD: sbdsp.c,v 1.136.10.1 2018/04/16 14:16:53 martin Exp $ */
/*-
* Copyright (c) 1999, 2008 The NetBSD Foundation, Inc.
@@ -74,7 +74,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sbdsp.c,v 1.136 2016/07/11 11:31:50 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sbdsp.c,v 1.136.10.1 2018/04/16 14:16:53 martin Exp $");
#include "midi.h"
#include "mpu.h"
@@ -640,6 +640,7 @@
swcode = swap_bytes;
}
/* fall into */
+ case AUDIO_ENCODING_SLINEAR:
case AUDIO_ENCODING_SLINEAR_LE:
bmode = SB_BMODE_SIGNED;
break;
@@ -682,6 +683,7 @@
bmode |= SB_BMODE_STEREO;
} else if (m->model == SB_JAZZ && m->precision == 16) {
switch (p->encoding) {
+ case AUDIO_ENCODING_SLINEAR:
case AUDIO_ENCODING_SLINEAR_LE:
break;
case AUDIO_ENCODING_ULINEAR_LE:
@@ -716,6 +718,7 @@
switch (p->encoding) {
case AUDIO_ENCODING_SLINEAR_BE:
case AUDIO_ENCODING_SLINEAR_LE:
+ case AUDIO_ENCODING_SLINEAR:
hw.encoding = AUDIO_ENCODING_ULINEAR_LE;
swcode = change_sign8;
break;
Home |
Main Index |
Thread Index |
Old Index