summaryrefslogtreecommitdiffstats
path: root/sys/dev/audio_if.h
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2003-03-28 09:47:20 +0000
committerjmc <jmc@openbsd.org>2003-03-28 09:47:20 +0000
commit84bc2b8a95d5f476c4e975e734ea193ff7b418c1 (patch)
treeb1158120ef038ec91fc0b61301c6dde97fa2be7e /sys/dev/audio_if.h
parentmore register defns (from linux) (diff)
downloadwireguard-openbsd-84bc2b8a95d5f476c4e975e734ea193ff7b418c1.tar.xz
wireguard-openbsd-84bc2b8a95d5f476c4e975e734ea193ff7b418c1.zip
mu-law and A-law spelling;
mu-law and u-law are the same, so used mu-law for consistency; ok jason@
Diffstat (limited to 'sys/dev/audio_if.h')
-rw-r--r--sys/dev/audio_if.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/audio_if.h b/sys/dev/audio_if.h
index bab25f460cd..8d5c2f8b3fd 100644
--- a/sys/dev/audio_if.h
+++ b/sys/dev/audio_if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: audio_if.h,v 1.21 2003/01/25 06:14:33 jason Exp $ */
+/* $OpenBSD: audio_if.h,v 1.22 2003/03/28 09:47:21 jmc Exp $ */
/* $NetBSD: audio_if.h,v 1.24 1998/01/10 14:07:25 tv Exp $ */
/*
@@ -50,7 +50,7 @@ struct mixer_ctrl;
struct audio_params {
u_long sample_rate; /* sample rate */
- u_int encoding; /* e.g. ulaw, linear, etc */
+ u_int encoding; /* mu-law, linear, etc */
u_int precision; /* bits/sample */
u_int channels; /* mono(1), stereo(2) */
/* Software en/decode functions, set if SW coding required by HW */
@@ -58,7 +58,7 @@ struct audio_params {
int factor; /* coding space change */
};
-/* The default audio mode: 8 kHz mono ulaw */
+/* The default audio mode: 8 kHz mono mu-law */
extern struct audio_params audio_default;
struct audio_hw_if {