Commit 7a01b383 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Read 4 bytes to wake up GETISPACE.

parent a983a719
...@@ -1710,6 +1710,7 @@ static DWORD CALLBACK widRecorder(LPVOID pmt) ...@@ -1710,6 +1710,7 @@ static DWORD CALLBACK widRecorder(LPVOID pmt)
DWORD bytesRead; DWORD bytesRead;
audio_buf_info info; audio_buf_info info;
int xs;
LPVOID buffer = HeapAlloc(GetProcessHeap(), LPVOID buffer = HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY, HEAP_ZERO_MEMORY,
...@@ -1722,6 +1723,11 @@ static DWORD CALLBACK widRecorder(LPVOID pmt) ...@@ -1722,6 +1723,11 @@ static DWORD CALLBACK widRecorder(LPVOID pmt)
wwi->dwTotalRecorded = 0; wwi->dwTotalRecorded = 0;
SetEvent(wwi->hEvent); SetEvent(wwi->hEvent);
/* the soundblaster live needs a micro wake to get its recording started
* (or GETISPACE will have 0 frags all the time)
*/
read(wwi->unixdev,&xs,4);
/* make sleep time to be # of ms to output a fragment */ /* make sleep time to be # of ms to output a fragment */
dwSleepTime = (wwi->dwFragmentSize * 1000) / wwi->format.wf.nAvgBytesPerSec; dwSleepTime = (wwi->dwFragmentSize * 1000) / wwi->format.wf.nAvgBytesPerSec;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment