Skip to content

Commit

Permalink
Merge pull request xbmc#1826 from Montellese/win32_ae_default
Browse files Browse the repository at this point in the history
[win32] AE: change default sink to DirectSound (over WASAPI)
  • Loading branch information
DDDamian committed Nov 22, 2012
2 parents 3cab055 + 7b72821 commit 61f39b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/AudioEngine/AESinkFactory.cpp
Expand Up @@ -140,9 +140,9 @@ IAESink *CAESinkFactory::Create(std::string &device, AEAudioFormat &desiredForma
void CAESinkFactory::EnumerateEx(AESinkInfoList &list)
{
#if defined(TARGET_WINDOWS)
ENUMERATE_SINK(DirectSound);
if (g_sysinfo.IsVistaOrHigher() && !g_advancedSettings.m_audioForceDirectSound)
ENUMERATE_SINK(WASAPI);
ENUMERATE_SINK(DirectSound);
#elif defined(TARGET_ANDROID)
ENUMERATE_SINK(AUDIOTRACK);
#elif defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
Expand Down

0 comments on commit 61f39b0

Please sign in to comment.