output/sndio: Add 24-bit 4-byte packed audio format support

This commit is contained in:
Dimitris Papastamos 2016-06-23 16:17:56 +01:00 committed by Max Kellermann
parent 9a049de859
commit a43ae2369b

View File

@ -119,6 +119,9 @@ SndioOutput::Open(AudioFormat &audio_format, gcc_unused Error &error)
case SampleFormat::S16:
bits = 16;
break;
case SampleFormat::S24_P32:
bits = 24;
break;
case SampleFormat::S32:
bits = 32;
break;