diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-03-28 09:47:22 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-03-28 09:47:22 +0000 |
commit | e48b83eca2a81fdfe8f7ce2132914de677f4cb84 (patch) | |
tree | 4b35a587977405c45150f8927720bf2ff198e1eb /sys/dev | |
parent | 68294dbcb498aab366c25c8a6134cd2e97ecf8f8 (diff) |
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')
-rw-r--r-- | sys/dev/audio_if.h | 6 |
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 { |