Tagged Questions
The waveoutwrite tag has no wiki summary.
10
votes
9answers
3k views
Why would waveOutWrite() cause an exception in the debug heap?
While researching this issue, I found multiple mentions of the following scenario online, invariably as unanswered questions on programming forums. I hope that posting this here will at least serve to ...
4
votes
1answer
266 views
How long is the delay between Control.Invoke() and the calling of its Delegate?
I have a code engine that plays long WAV files by playing smaller chunks in succession using the waveOutOpen and waveOutWrite API methods. In order to update my UI as the file plays, from the ...
2
votes
2answers
390 views
Query wave format for a HWAVEOUT handle
Context: I have a piece of code that knows the value of a waveOut handle (HWAVEOUT). However the code did not create the handle, thus the WAVEFORMATEX that was passed to waveOutOpen when creating the ...
1
vote
2answers
482 views
Problem with waveOutWrite and waveOutGetPosition deadlock
I'm working on an app that plays audio continuously using the waveOut... API from winmm.dll. The app uses "leapfrog" buffers, which are basically a bunch of arrays of samples that you dump into the ...
0
votes
3answers
683 views
What is the latency (or delay) time for callbacks from the waveOutWrite API method?
I'm having a debate with some developers on another forum about accurately generating MIDI events (Note On messages and so forth). The human ear is pretty sensitive to slight timing inaccuracies, and ...