fix(audio:windows): set cbSize correctly (#1787)
This commit is contained in:
parent
ab3ff2d355
commit
842a4cf7b2
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue