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
57bb0898
Commit
57bb0898
authored
Feb 01, 2012
by
Andrew Eikum
Committed by
Alexandre Julliard
Feb 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Improve underrun handling.
parent
19015ae1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+26
-5
No files found.
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
57bb0898
...
...
@@ -138,7 +138,7 @@ struct ACImpl {
UINT32
getbuf_last
;
int
playing
;
Float64
highest_sampletime
;
Float64
highest_sampletime
,
next_sampletime
;
AudioSession
*
session
;
AudioSessionWrapper
*
session_wrapper
;
...
...
@@ -564,8 +564,13 @@ static UINT64 get_current_aqbuffer_position(ACImpl *This, int mode)
else
ret
=
This
->
highest_sampletime
-
bufinfo
->
start_sampletime
;
if
(
mode
==
BUFPOS_ABSOLUTE
)
ret
+=
bufinfo
->
start_pos
;
if
(
mode
==
BUFPOS_ABSOLUTE
){
ret
=
This
->
written_frames
-
(
bufinfo
->
len_frames
-
ret
);
while
((
head
=
list_next
(
&
This
->
queued_bufinfos
,
&
bufinfo
->
entry
))){
bufinfo
=
LIST_ENTRY
(
head
,
QueuedBufInfo
,
entry
);
ret
-=
bufinfo
->
len_frames
;
}
}
TRACE
(
"%llu frames (%s)
\n
"
,
ret
,
mode
==
BUFPOS_ABSOLUTE
?
"absolute"
:
"relative"
);
...
...
@@ -1851,7 +1856,7 @@ static HRESULT WINAPI AudioRenderClient_ReleaseBuffer(
{
ACImpl
*
This
=
impl_from_IAudioRenderClient
(
iface
);
AQBuffer
*
buf
;
AudioTimeStamp
start_time
;
AudioTimeStamp
start_time
,
req_time
=
{
0
},
*
passed_time
=
NULL
;
OSStatus
sc
;
TRACE
(
"(%p)->(%u, %x)
\n
"
,
This
,
frames
,
flags
);
...
...
@@ -1896,8 +1901,22 @@ static HRESULT WINAPI AudioRenderClient_ReleaseBuffer(
buf
=
This
->
public_buffer
->
mUserData
;
buf
->
used
=
TRUE
;
if
(
list_empty
(
&
This
->
queued_bufinfos
)){
sc
=
AudioQueueGetCurrentTime
(
This
->
aqueue
,
NULL
,
&
req_time
,
NULL
);
if
(
sc
==
noErr
)
passed_time
=
&
req_time
;
else
TRACE
(
"AudioQueueGetCurrentTime failed: %lx
\n
"
,
sc
);
}
else
{
req_time
.
mSampleTime
=
This
->
next_sampletime
;
req_time
.
mFlags
=
kAudioTimeStampSampleTimeValid
;
passed_time
=
&
req_time
;
}
sc
=
AudioQueueEnqueueBufferWithParameters
(
This
->
aqueue
,
This
->
public_buffer
,
0
,
NULL
,
0
,
0
,
0
,
NULL
,
NULL
,
&
start_time
);
This
->
public_buffer
,
0
,
NULL
,
0
,
0
,
0
,
NULL
,
passed_time
,
&
start_time
);
if
(
sc
!=
noErr
){
OSSpinLockUnlock
(
&
This
->
lock
);
ERR
(
"Unable to enqueue buffer: %lx
\n
"
,
sc
);
...
...
@@ -1914,6 +1933,8 @@ static HRESULT WINAPI AudioRenderClient_ReleaseBuffer(
bufinfo
->
len_frames
=
frames
;
list_add_tail
(
&
This
->
queued_bufinfos
,
&
bufinfo
->
entry
);
This
->
next_sampletime
=
start_time
.
mSampleTime
+
bufinfo
->
len_frames
;
}
else
WARN
(
"Start time didn't contain valid SampleTime member
\n
"
);
...
...
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