Fix WAVERR_BADFORMAT in simpleaudio.d

Winapi requires the nBlockAlign to be channels times bytes per sampe, otherwise errors out
This commit is contained in:
Grim Maple 2023-11-27 22:30:24 +03:00 committed by GitHub
parent 410216f649
commit 69885650cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2375,7 +2375,7 @@ struct AudioOutput {
format.nChannels = cast(ushort) channels;
format.nSamplesPerSec = SampleRate;
format.nAvgBytesPerSec = SampleRate * channels * 2; // two channels, two bytes per sample
format.nBlockAlign = 4;
format.nBlockAlign = cast(short)(channels * 2);
format.wBitsPerSample = 16;
format.cbSize = 0;
if(auto err = waveOutOpen(&handle, WAVE_MAPPER, &format, cast(DWORD_PTR) &mmCallback, cast(DWORD_PTR) &this, CALLBACK_FUNCTION))