summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-24 21:32:15 +0200
committerwm4 <wm4@nowhere>2014-09-24 21:32:15 +0200
commit8a8f65d73d7009b13571293d1de6284d42a318e8 (patch)
tree63697032864cf63c43c8d10dfbdfb53fe0623c0c
parent1d45a3a16313bf83581bd396eb758245d20bad5c (diff)
downloadmpv-8a8f65d73d7009b13571293d1de6284d42a318e8.tar.bz2
mpv-8a8f65d73d7009b13571293d1de6284d42a318e8.tar.xz
ao_sndio: fix U24 bit width
This was wrong since the initial commit.
-rw-r--r--audio/out/ao_sndio.c2
1 files changed, 1 insertions, 1 deletions
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},