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 /share | |
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 'share')
-rw-r--r-- | share/man/man4/audio.4 | 8 | ||||
-rw-r--r-- | share/man/man9/audio.9 | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/share/man/man4/audio.4 b/share/man/man4/audio.4 index ce5d1cc3142..449f5a61873 100644 --- a/share/man/man4/audio.4 +++ b/share/man/man4/audio.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: audio.4,v 1.29 2003/03/14 10:07:35 jmc Exp $ +.\" $OpenBSD: audio.4,v 1.30 2003/03/28 09:47:20 jmc Exp $ .\" $NetBSD: audio.4,v 1.20 1998/05/28 17:27:15 augustss Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -84,7 +84,7 @@ while it is in use. When .Pa /dev/audio is opened, it automatically directs the underlying driver to manipulate -monaural 8-bit mulaw samples. +monaural 8-bit mu-law samples. In addition, if it is opened read-only (write-only) the device is set to half-duplex record (play) mode with recording (playing) unpaused and playing (recording) paused. @@ -368,9 +368,9 @@ property is set. The encoding parameter can have the following values: .Bl -tag -width indent -compact .It Dv AUDIO_ENCODING_ULAW -mulaw encoding, 8 bits/sample +mu-law encoding, 8 bits/sample .It Dv AUDIO_ENCODING_ALAW -alaw encoding, 8 bits/sample +A-law encoding, 8 bits/sample .It Dv AUDIO_ENCODING_SLINEAR two's complement signed linear encoding with the platform byte order .It Dv AUDIO_ENCODING_ULINEAR diff --git a/share/man/man9/audio.9 b/share/man/man9/audio.9 index a8bee33fac6..914406fce80 100644 --- a/share/man/man9/audio.9 +++ b/share/man/man9/audio.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: audio.9,v 1.11 2003/03/08 23:17:18 jmc Exp $ +.\" $OpenBSD: audio.9,v 1.12 2003/03/28 09:47:21 jmc Exp $ .\" $NetBSD: audio.9,v 1.14 2000/02/11 22:56:15 kleink Exp $ .\" .\" Copyright (c) 1999, 2000 The NetBSD Foundation, Inc. @@ -97,7 +97,7 @@ struct audio_hw_if { struct audio_params { u_long sample_rate; /* sample rate */ - u_int encoding; /* 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 */ @@ -208,11 +208,11 @@ and .Va rec structures contain the encoding parameters that should be set. If the hardware requires software assistance with some encoding -(e.g., it might be lacking mulaw support) it should fill the +(e.g., it might be lacking mu-law support) it should fill the .Va sw_code and .Va factor -fields of these structures. +fields of these structures. See .Pa /usr/src/sys/dev/auconv.h for available software support. |