Commit a43ae236 authored by Dimitris Papastamos's avatar Dimitris Papastamos Committed by Max Kellermann

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

parent 9a049de8
...@@ -119,6 +119,9 @@ SndioOutput::Open(AudioFormat &audio_format, gcc_unused Error &error) ...@@ -119,6 +119,9 @@ SndioOutput::Open(AudioFormat &audio_format, gcc_unused Error &error)
case SampleFormat::S16: case SampleFormat::S16:
bits = 16; bits = 16;
break; break;
case SampleFormat::S24_P32:
bits = 24;
break;
case SampleFormat::S32: case SampleFormat::S32:
bits = 32; bits = 32;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment