Allow XAudio2 to be selected as a surround backend.

This commit is contained in:
LAGonauta 2019-03-18 09:21:40 -03:00
parent f37ff190e4
commit 99a35568ca
1 changed files with 2 additions and 0 deletions

View File

@ -129,6 +129,8 @@ bool SupportsDPL2Decoder(const std::string& backend)
return true;
if (backend == BACKEND_PULSEAUDIO)
return true;
if (backend == BACKEND_XAUDIO2)
return true;
return false;
}