Commit 1859ba5e authored by Max Kellermann's avatar Max Kellermann

output/winmm: 8 bit playback is not supported

Everything must be S16.
parent ee026386
......@@ -2,6 +2,8 @@ ver 0.19.20 (not yet released)
* decoder
- ffmpeg: ignore empty packets
- sidplay: fix playback speed with libsidplayfp
* output
- winmm: fix 8 bit playback
ver 0.19.19 (2016/08/23)
* decoder
......
......@@ -148,10 +148,10 @@ winmm_output_open(AudioOutput *ao, AudioFormat &audio_format,
}
switch (audio_format.format) {
case SampleFormat::S8:
case SampleFormat::S16:
break;
case SampleFormat::S8:
case SampleFormat::S24_P32:
case SampleFormat::S32:
case SampleFormat::FLOAT:
......
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