From 74ab902dea669bb3d6d3769d8a96640ca538a535 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 10 Dec 2012 17:06:21 +0100 Subject: audio: remove support for native alaw/mulaw/adpcm output This is considered a worthless feature. Note that alaw/mulaw/adpcm input is unaffected: such data is handed to libavcodec and "decoded" to linear PCM. --- audio/out/ao_rsound.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'audio/out/ao_rsound.c') diff --git a/audio/out/ao_rsound.c b/audio/out/ao_rsound.c index bf77b1e4c2..7722bf19d2 100644 --- a/audio/out/ao_rsound.c +++ b/audio/out/ao_rsound.c @@ -80,12 +80,6 @@ static int set_format(struct ao *ao) case AF_FORMAT_U32_BE: rsd_format = RSD_U32_BE; break; - case AF_FORMAT_A_LAW: - rsd_format = RSD_ALAW; - break; - case AF_FORMAT_MU_LAW: - rsd_format = RSD_MULAW; - break; default: rsd_format = RSD_S16_LE; ao->format = AF_FORMAT_S16_LE; -- cgit v1.2.3