| Index: media/audio/audio_util.cc
|
| diff --git a/media/audio/audio_util.cc b/media/audio/audio_util.cc
|
| index 0526616c426b46bf265df8a580ba9b9dcb69d25e..8dfaa2a452876c1d7ab3aaf488add5254a0f4b06 100644
|
| --- a/media/audio/audio_util.cc
|
| +++ b/media/audio/audio_util.cc
|
| @@ -546,10 +546,10 @@ int NumberOfWaveOutBuffers() {
|
| // 2 otherwise.
|
| // Entire Windows audio stack was rewritten for Windows Vista, and wave out
|
| // API is simulated on top of new API, so there is noticeable performance
|
| - // degradation compared to Windows XP. Part of regression was fixed in
|
| - // Windows 7. Maybe it is fixed in Vista Serice Pack, but let's be cautious.
|
| + // degradation compared to Windows XP. Part of regression was apparently fixed
|
| + // in Windows 7, but problems remain at least with some configurations.
|
| if ((base::SysInfo::NumberOfProcessors() < 2) ||
|
| - (base::win::GetVersion() == base::win::VERSION_VISTA)) {
|
| + (base::win::GetVersion() >= base::win::VERSION_VISTA)) {
|
| return 3;
|
| }
|
| return 2;
|
|
|