mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-03-29 22:20:24 +00:00
fix(audio:windows): set cbSize correctly (#1787)
This commit is contained in:
parent
ab3ff2d355
commit
842a4cf7b2
@ -156,7 +156,7 @@ namespace platf::audio {
|
||||
wave_format.Format.wBitsPerSample = 16;
|
||||
wave_format.Format.nBlockAlign = wave_format.Format.nChannels * wave_format.Format.wBitsPerSample / 8;
|
||||
wave_format.Format.nAvgBytesPerSec = wave_format.Format.nSamplesPerSec * wave_format.Format.nBlockAlign;
|
||||
wave_format.Format.cbSize = sizeof(wave_format);
|
||||
wave_format.Format.cbSize = sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX);
|
||||
|
||||
wave_format.Samples.wValidBitsPerSample = 16;
|
||||
wave_format.dwChannelMask = format.channel_mask;
|
||||
|
Loading…
x
Reference in New Issue
Block a user