0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

ao_sndio: fix U24 bit width

This was wrong since the initial commit.
This commit is contained in:
wm4 2014-09-24 21:32:15 +02:00
parent 1d45a3a163
commit 8a8f65d73d

View File

@ -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},