Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2cd62080
Commit
2cd62080
authored
Aug 08, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Aug 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winealsa.drv: Add ability to recover from underruns to directsound driver.
Fixes handling of buffer underruns that might still occur.
parent
80c6099b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
dsoutput.c
dlls/winealsa.drv/dsoutput.c
+7
-1
No files found.
dlls/winealsa.drv/dsoutput.c
View file @
2cd62080
...
...
@@ -548,7 +548,13 @@ static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface,
}
if
(
state
==
SND_PCM_STATE_RUNNING
)
{
snd_pcm_uframes_t
used
=
This
->
mmap_buflen_frames
-
snd_pcm_avail_update
(
This
->
pcm
);
snd_pcm_sframes_t
used
=
This
->
mmap_buflen_frames
-
snd_pcm_avail_update
(
This
->
pcm
);
if
(
used
<
0
)
{
snd_pcm_forward
(
This
->
pcm
,
-
used
);
used
=
0
;
}
if
(
This
->
mmap_pos
>
used
)
hw_pptr
=
This
->
mmap_pos
-
used
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment