summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-07-07 17:45:24 +0200
committerwm4 <wm4@nowhere>2017-07-07 17:56:18 +0200
commit300097536d1de5beea286e8c8b492370333462b0 (patch)
tree4e6f540dfcc8afe35fad824d0f1d344ea7029eb4
parent2e1eb8b37cc28b54fa3c25b9048c3fa7644ba27c (diff)
downloadmpv-300097536d1de5beea286e8c8b492370333462b0.tar.bz2
mpv-300097536d1de5beea286e8c8b492370333462b0.tar.xz
ao_pcm: drop AF_FORMAT_S24 usage
I'd actually be somewhat interested in supporting this, as it could help testing the S24 conversion code. But then again it's only a pain, there's no immediate need, and it would require new options to make ao_pcm.c select this output format at all.
-rw-r--r--audio/out/ao_pcm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/out/ao_pcm.c b/audio/out/ao_pcm.c
index 51a0aa699f..a36b71fa16 100644
--- a/audio/out/ao_pcm.c
+++ b/audio/out/ao_pcm.c
@@ -130,7 +130,6 @@ static int init(struct ao *ao)
switch (ao->format) {
case AF_FORMAT_U8:
case AF_FORMAT_S16:
- case AF_FORMAT_S24:
case AF_FORMAT_S32:
case AF_FORMAT_FLOAT:
break;