diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2015-05-11 06:52:37 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2015-05-11 06:52:37 +0000 |
commit | dd89c635d9a50b7d33645609c7c98f4b2eda9e1c (patch) | |
tree | 6bebf17adabcdf1d3d8dc35b7d8f6e691ca15f32 /sys/arch/sparc64 | |
parent | cb499c42facd77434ebac9a75c6bd41df9f1ed9d (diff) |
Remove support for ADPCM encoding which isn't used nowadays and
not available to programs anyway.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/dev/ce4231.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/arch/sparc64/dev/ce4231.c b/sys/arch/sparc64/dev/ce4231.c index 3352fbadf8e..5ea32287c05 100644 --- a/sys/arch/sparc64/dev/ce4231.c +++ b/sys/arch/sparc64/dev/ce4231.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ce4231.c,v 1.32 2015/05/11 06:46:21 ratchov Exp $ */ +/* $OpenBSD: ce4231.c,v 1.33 2015/05/11 06:52:35 ratchov Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -506,12 +506,6 @@ ce4231_query_encoding(addr, fp) fp->precision = 16; fp->flags = 0; break; - case 5: - strlcpy(fp->name, AudioEadpcm, sizeof(fp->name)); - fp->encoding = AUDIO_ENCODING_ADPCM; - fp->precision = 8; - fp->flags = 0; - break; default: err = EINVAL; } @@ -552,10 +546,6 @@ ce4231_set_params(addr, setmode, usemode, p, r) case AUDIO_ENCODING_ULINEAR_BE: p->precision = 8; break; - case AUDIO_ENCODING_ADPCM: - p->precision = 8; - bits = FMT_ADPCM >> 5; - break; default: return (EINVAL); } |