From 8a8f65d73d7009b13571293d1de6284d42a318e8 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 24 Sep 2014 21:32:15 +0200 Subject: ao_sndio: fix U24 bit width This was wrong since the initial commit. --- audio/out/ao_sndio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/out/ao_sndio.c b/audio/out/ao_sndio.c index c1c4ef17ab..57661361bf 100644 --- a/audio/out/ao_sndio.c +++ b/audio/out/ao_sndio.c @@ -115,7 +115,7 @@ static int init(struct ao *ao) {AF_FORMAT_S8, 8, 1}, {AF_FORMAT_U16, 16, 0}, {AF_FORMAT_S16, 16, 1}, - {AF_FORMAT_U24, 16, 0}, + {AF_FORMAT_U24, 24, 0}, {AF_FORMAT_S24, 24, 1}, {AF_FORMAT_U32, 32, 0}, {AF_FORMAT_S32, 32, 1}, -- cgit v1.2.3