WinRT: added a note to try removing some WinRT-specific code from SDL_xaudio2.c

This commit is contained in:
David Ludwig 2012-12-30 13:03:45 -05:00
parent 0b7cfac19e
commit cc456a7516

View file

@ -485,6 +485,10 @@ XAUDIO2_OpenDevice(_THIS, const char *devname, int iscapture)
waveformat.cbSize = sizeof(waveformat);
#ifdef __WINRT__
// DLudwig: for now, make XAudio2 do sample rate conversion, just to
// get the loopwave test to work.
//
// TODO, WinRT: consider removing WinRT-specific source-voice creation code from SDL_xaudio2.c
result = IXAudio2_CreateSourceVoice(ixa2, &source, &waveformat,
0,
1.0f, &callbacks, NULL, NULL);