Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ef0069cb
Commit
ef0069cb
authored
Nov 21, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Nov 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winealsa: Calculate the delay correctly as snd_pcm_delay is not reliable in this context.
parent
849c36ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
waveout.c
dlls/winealsa.drv/waveout.c
+14
-4
No files found.
dlls/winealsa.drv/waveout.c
View file @
ef0069cb
...
...
@@ -98,19 +98,29 @@ static DWORD wodNotifyClient(WINE_WAVEDEV* wwo, WORD wMsg, DWORD dwParam1, DWORD
static
BOOL
wodUpdatePlayedTotal
(
WINE_WAVEDEV
*
wwo
,
snd_pcm_status_t
*
ps
)
{
snd_pcm_sframes_t
delay
=
0
;
snd_pcm_sframes_t
avail
=
0
;
snd_pcm_uframes_t
buf_size
=
0
;
snd_pcm_state_t
state
;
int
err
;
state
=
snd_pcm_state
(
wwo
->
pcm
);
snd_pcm_delay
(
wwo
->
pcm
,
&
delay
);
avail
=
snd_pcm_avail_update
(
wwo
->
pcm
);
err
=
snd_pcm_hw_params_get_buffer_size
(
wwo
->
hw_params
,
&
buf_size
);
delay
=
buf_size
-
avail
;
if
(
state
!=
SND_PCM_STATE_RUNNING
&&
state
!=
SND_PCM_STATE_PREPARED
)
{
WARN
(
"Unexpected state (%d) while updating Total Played, resetting
\n
"
,
state
);
delay
=
0
;
}
/* A delay < 0 indicates an underrun; for our purposes that's 0. */
if
(
delay
<
0
)
{
WARN
(
"Unexpected
state (%d) or delay (%ld) while updating Total Played, resetting
\n
"
,
state
,
delay
);
WARN
(
"Unexpected
delay (%ld) while updating Total Played, resetting
\n
"
,
delay
);
delay
=
0
;
}
if
(
state
==
SND_PCM_STATE_XRUN
)
snd_pcm_start
(
wwo
->
pcm
);
InterlockedExchange
((
LONG
*
)
&
wwo
->
dwPlayedTotal
,
wwo
->
dwWrittenTotal
-
snd_pcm_frames_to_bytes
(
wwo
->
pcm
,
delay
));
return
TRUE
;
}
...
...
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