midiOutOpen on Windows 10 using Microsoft GS Wavetable Synth fails

◇◆丶佛笑我妖孽 提交于 2019-12-10 12:33:31

问题


I have an application that relies on the in built Microsoft GS Wavetable Synth. It has worked flawlessly on Windows XP, Vista, 7, 8 and 8.1. While the first call to midiOutOpen on Windows 10 works, subsequent calls result in error code 1, meaning 'Unspecified error'. The code is simple:

result = midiOutOpen(&_midiOutHandle, midiOutputDevice, NULL, 0, CALLBACK_NULL);

Any ideas regarding how to resolve this hugely appreciated.


回答1:


I see it. Tracing through the machine code, I see the modMessage() function fail and return MMSYSERR_ERROR. Exactly why isn't clear to me, it looks like a missing initialization problem.

What is strange about this mishap is that there are not a lot of complaints about it, you'd expect plenty of other programs fall over as well. Or for that matter for them to be tested before Win10 shipped. Next thing I tried is adding the one thing that happens in any non-trivial audio app that I skipped in my test program. Partly inspired by seeing "ATL" back in the symbols of modMessage, although it wasn't anywhere close. I added this as the first line in main():

   CoInitializeEx(NULL, COINIT_MULTITHREADED);

Badaboom, no more error. Use COINIT_APARTMENTTHREADED if you call this on the main thread of a UI thread. CoUninitialize() at the end to clean up.

Explaining it is difficult, initializing COM should not be necessary when you use MIDI. With it in place, calling midiOutOpen gets one more DLL loaded, clbcatq.dll. That's a COM+ support module. So sure looks like Win10 requires COM to be initialized.




回答2:


I put a MessageBox (with nothing important to say) just before midiOutOpen, and IT WORKED! I'm using Visual Studio 2013 C++.

WASAPI doesn't work for me anymore in sharing mode, although I think I'll be able to make it work.




回答3:


When I use the CoInitializeEx(NULL, COINIT_MULTITHREADED), this helps for the midi open problem but has bad influence for using mciSendString with opening an MP3 song, which results always in error 266 in same program. Eg.:

open "d:\\music\\Fernando.mp3" type MPEGVideo alias Fernando.mp3 wait

(without the CoInitializeEx this open works and the mp3 song plays in Windows 10).

On some Windows 10 Systems the midi and mp3 open well without calling the CoInitializeEx, on others it does not play midi. It is not documented in MCI api that it must be called and causes indetermined problems. For me it is not clear when or why it must be called and when I should better not call it. The Windows 10 incompatibility relating MCI of Microsoft is intolerable. All Systems since XP are MCI compatible and only Windows 10 causes troubles.



来源:https://stackoverflow.com/questions/31752786/midioutopen-on-windows-10-using-microsoft-gs-wavetable-synth-fails

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!