mciwave: Default wave format is 11025x8x1.

This commit is contained in:
Jörg Höhle 2009-10-18 14:14:11 +02:00 committed by Alexandre Julliard
parent 7f4d81ede7
commit 0ac408f7fc

View file

@ -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;