Commit 0ac408f7 authored by Jörg Höhle's avatar Jörg Höhle Committed by Alexandre Julliard

mciwave: Default wave format is 11025x8x1.

parent 7f4d81ed
......@@ -304,8 +304,8 @@ static DWORD WAVE_mciDefaultFmt(WINE_MCIWAVE* wmw)
wmw->lpWaveFormat->wFormatTag = WAVE_FORMAT_PCM;
wmw->lpWaveFormat->nChannels = 1;
wmw->lpWaveFormat->nSamplesPerSec = 44000;
wmw->lpWaveFormat->nAvgBytesPerSec = 44000;
wmw->lpWaveFormat->nSamplesPerSec = 11025;
wmw->lpWaveFormat->nAvgBytesPerSec = 11025;
wmw->lpWaveFormat->nBlockAlign = 1;
wmw->lpWaveFormat->wBitsPerSample = 8;
......
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