Commit 645f1efb authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

winealsa: Remove dead code.

parent 7abb204a
...@@ -421,11 +421,6 @@ static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface, ...@@ -421,11 +421,6 @@ static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface,
if (wwo->hw_params == NULL || wwo->pcm == NULL) return DSERR_GENERIC; if (wwo->hw_params == NULL || wwo->pcm == NULL) return DSERR_GENERIC;
#if 0 /* Shouldn't be needed */
/* we need to track down buffer underruns */
DSDB_CheckXRUN(This);
#endif
state = snd_pcm_state(wwo->pcm); state = snd_pcm_state(wwo->pcm);
if (state == SND_PCM_STATE_RUNNING) if (state == SND_PCM_STATE_RUNNING)
{ {
......
...@@ -276,21 +276,6 @@ static DWORD wodPlayer_NotifyCompletions(WINE_WAVEDEV* wwo, BOOL force) ...@@ -276,21 +276,6 @@ static DWORD wodPlayer_NotifyCompletions(WINE_WAVEDEV* wwo, BOOL force)
* - we hit the beginning of a running loop * - we hit the beginning of a running loop
* - we hit a wavehdr which hasn't finished playing * - we hit a wavehdr which hasn't finished playing
*/ */
#if 0
while ((lpWaveHdr = wwo->lpQueuePtr) &&
(force ||
(lpWaveHdr != wwo->lpPlayPtr &&
lpWaveHdr != wwo->lpLoopPtr &&
lpWaveHdr->reserved <= wwo->dwPlayedTotal))) {
wwo->lpQueuePtr = lpWaveHdr->lpNext;
lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
lpWaveHdr->dwFlags |= WHDR_DONE;
wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
}
#else
for (;;) for (;;)
{ {
lpWaveHdr = wwo->lpQueuePtr; lpWaveHdr = wwo->lpQueuePtr;
...@@ -308,7 +293,6 @@ static DWORD wodPlayer_NotifyCompletions(WINE_WAVEDEV* wwo, BOOL force) ...@@ -308,7 +293,6 @@ static DWORD wodPlayer_NotifyCompletions(WINE_WAVEDEV* wwo, BOOL force)
wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0); wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
} }
#endif
return (lpWaveHdr && lpWaveHdr != wwo->lpPlayPtr && lpWaveHdr != wwo->lpLoopPtr) ? return (lpWaveHdr && lpWaveHdr != wwo->lpPlayPtr && lpWaveHdr != wwo->lpLoopPtr) ?
wodPlayer_NotifyWait(wwo, lpWaveHdr) : INFINITE; wodPlayer_NotifyWait(wwo, lpWaveHdr) : INFINITE;
} }
...@@ -499,13 +483,6 @@ static DWORD wodPlayer_FeedDSP(WINE_WAVEDEV* wwo) ...@@ -499,13 +483,6 @@ static DWORD wodPlayer_FeedDSP(WINE_WAVEDEV* wwo)
wodUpdatePlayedTotal(wwo, NULL); wodUpdatePlayedTotal(wwo, NULL);
availInQ = snd_pcm_avail_update(wwo->pcm); availInQ = snd_pcm_avail_update(wwo->pcm);
#if 0
/* input queue empty and output buffer with less than one fragment to play */
if (!wwo->lpPlayPtr && wwo->dwBufferSize < availInQ + wwo->dwFragmentSize) {
TRACE("Run out of wavehdr:s...\n");
return INFINITE;
}
#endif
/* no more room... no need to try to feed */ /* no more room... no need to try to feed */
if (availInQ > 0) { if (availInQ > 0) {
/* Feed from partial wavehdr */ /* Feed from partial wavehdr */
......
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