Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev Don't autoconfig for 24 bits precision. It does not...



details:   https://anonhg.NetBSD.org/src/rev/41190ac38155
branches:  trunk
changeset: 824982:41190ac38155
user:      nat <nat%NetBSD.org@localhost>
date:      Sun Jun 25 10:28:22 2017 +0000

description:
Don't autoconfig for 24 bits precision.  It does not work as yet.

diffstat:

 sys/dev/audio.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r dd94be6128f9 -r 41190ac38155 sys/dev/audio.c
--- a/sys/dev/audio.c   Sun Jun 25 10:06:27 2017 +0000
+++ b/sys/dev/audio.c   Sun Jun 25 10:28:22 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.365 2017/06/25 09:42:40 nat Exp $  */
+/*     $NetBSD: audio.c,v 1.366 2017/06/25 10:28:22 nat Exp $  */
 
 /*-
  * Copyright (c) 2016 Nathanial Sloss <nathanialsloss%yahoo.com.au@localhost>
@@ -148,7 +148,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.365 2017/06/25 09:42:40 nat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.366 2017/06/25 10:28:22 nat Exp $");
 
 #ifdef _KERNEL_OPT
 #include "audio.h"
@@ -447,7 +447,7 @@
        .channels = 1,
 };
 
-int auto_config_precision[] = { 32, 24, 16, 8 };
+int auto_config_precision[] = { 32, 16, 8 };
 int auto_config_channels[] = { 32, 24, 16, 8, 6, 4, 2, 1};
 int auto_config_freq[] = { 48000, 44100, 96000, 192000, 32000,
                           22050, 16000, 11025, 8000, 4000 };



Home | Main Index | Thread Index | Old Index