mirror of https://github.com/mpv-player/mpv
ao_sndio: fix U24 bit width
This was wrong since the initial commit.
This commit is contained in:
parent
1d45a3a163
commit
8a8f65d73d
|
@ -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},
|
||||
|
|
Loading…
Reference in New Issue