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
9d9bf6f1
Commit
9d9bf6f1
authored
Apr 18, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Apr 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Only drop Preroll samples after obtaining its time.
parent
d7fbc7ef
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
dsoundrender.c
dlls/quartz/dsoundrender.c
+6
-6
No files found.
dlls/quartz/dsoundrender.c
View file @
9d9bf6f1
...
...
@@ -245,12 +245,6 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
* pause completion here, but for sound playing a single frame doesn't make sense
*/
if
(
IMediaSample_IsPreroll
(
pSample
)
==
S_OK
)
{
TRACE
(
"Preroll!
\n
"
);
return
S_OK
;
}
if
(
This
->
state
==
State_Paused
)
return
S_FALSE
;
...
...
@@ -272,6 +266,12 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
FIXME
(
"Unexpected discontinuity: Last: %lld, tStart: %lld
\n
"
,
This
->
rtLastStop
,
tStart
);
This
->
rtLastStop
=
tStop
;
if
(
IMediaSample_IsPreroll
(
pSample
)
==
S_OK
)
{
TRACE
(
"Preroll!
\n
"
);
return
S_OK
;
}
cbSrcStream
=
IMediaSample_GetActualDataLength
(
pSample
);
TRACE
(
"Sample data ptr = %p, size = %ld
\n
"
,
pbSrcStream
,
cbSrcStream
);
...
...
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