Updated sample rate to 44100hz

This commit is contained in:
Nicholas Estelami
2022-06-13 18:09:22 -04:00
parent 510ef9b60c
commit 6c94c8690e
2 changed files with 19 additions and 19 deletions

View File

@@ -30,8 +30,8 @@ namespace Ship {
WAVEFORMATEX desired;
desired.wFormatTag = WAVE_FORMAT_PCM;
desired.nChannels = 2;
desired.nSamplesPerSec = 44000; // OTRTODO
desired.nAvgBytesPerSec = 44000 * 2 * 2; // OTRTODO
desired.nSamplesPerSec = 44100;
desired.nAvgBytesPerSec = 44100 * 2 * 2;
desired.nBlockAlign = 4;
desired.wBitsPerSample = 16;
desired.cbSize = 0;