wineoss: Silence some harmless warnings.

This commit is contained in:
Maarten Lankhorst 2007-09-24 20:33:50 +02:00 committed by Alexandre Julliard
parent be5105e894
commit 30392be1e0
2 changed files with 4 additions and 8 deletions

View File

@ -2082,10 +2082,8 @@ DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
/* Check that fragsize is correct per our settings above */
if ((info.fragsize > 1024) && (LOWORD(audio_fragment) <= 10)) {
/* we've tried to set 1K fragments or less, but it didn't work */
ERR("fragment size set failed, size is now %d\n", info.fragsize);
MESSAGE("Your Open Sound System driver did not let us configure small enough sound fragments.\n");
MESSAGE("This may cause delays and other problems in audio playback with certain applications.\n");
/* we've tried to set 1K fragments or less, but it didn't work */
WARN("fragment size set failed, size is now %d\n", info.fragsize);
}
/* Remember fragsize and total buffer size for future use */

View File

@ -940,10 +940,8 @@ DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
/* the HAL isn't much better than the HEL if we can't do mmap() */
if (!(WOutDev[wDevID].ossdev->duplex_out_caps.dwSupport & WAVECAPS_DIRECTSOUND)) {
ERR("DirectSound flag not set\n");
MESSAGE("This sound card's driver does not support direct access\n");
MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
return MMSYSERR_NOTSUPPORTED;
WARN("Warn DirectSound flag not set, falling back to HEL layer\n");
return MMSYSERR_NOTSUPPORTED;
}
*idrv = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(IDsDriverImpl));