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
810a933f
Commit
810a933f
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: Change longlong printfs.
parent
c1a4acde
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
dsoundrender.c
dlls/quartz/dsoundrender.c
+3
-1
filtergraph.c
dlls/quartz/filtergraph.c
+2
-1
waveparser.c
dlls/quartz/waveparser.c
+1
-1
No files found.
dlls/quartz/dsoundrender.c
View file @
810a933f
...
...
@@ -263,7 +263,9 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
ERR
(
"Cannot get sample time (%x)
\n
"
,
hr
);
if
(
This
->
rtLastStop
!=
tStart
&&
(
IMediaSample_IsDiscontinuity
(
pSample
)
==
S_FALSE
))
FIXME
(
"Unexpected discontinuity: Last: %lld, tStart: %lld
\n
"
,
This
->
rtLastStop
,
tStart
);
FIXME
(
"Unexpected discontinuity: Last: %u.%03u, tStart: %u.%03u
\n
"
,
(
DWORD
)(
This
->
rtLastStop
/
10000000
),
(
DWORD
)((
This
->
rtLastStop
/
10000
)
%
1000
),
(
DWORD
)(
tStart
/
10000000
),
(
DWORD
)((
tStart
/
10000
)
%
1000
));
This
->
rtLastStop
=
tStop
;
if
(
IMediaSample_IsPreroll
(
pSample
)
==
S_OK
)
...
...
dlls/quartz/filtergraph.c
View file @
810a933f
...
...
@@ -2079,7 +2079,8 @@ static HRESULT WINAPI MediaSeeking_GetCurrentPosition(IMediaSeeking *iface,
else
*
pCurrent
=
This
->
position
;
LeaveCriticalSection
(
&
This
->
cs
);
TRACE
(
"Time: %lld.%03lld
\n
"
,
*
pCurrent
/
10000000
,
(
*
pCurrent
/
10000
)
%
1000
);
TRACE
(
"Time: %u.%03u
\n
"
,
(
DWORD
)(
*
pCurrent
/
10000000
),
(
DWORD
)((
*
pCurrent
/
10000
)
%
1000
));
return
S_OK
;
}
...
...
dlls/quartz/waveparser.c
View file @
810a933f
...
...
@@ -393,7 +393,7 @@ static HRESULT WAVEParser_InputPin_PreConnect(IPin * iface, IPin * pConnectPin)
pWAVEParser
->
Parser
.
mediaSeeking
.
llCurrent
=
0
;
pWAVEParser
->
Parser
.
mediaSeeking
.
llStop
=
pWAVEParser
->
Parser
.
mediaSeeking
.
llDuration
=
bytepos_to_duration
(
pWAVEParser
,
pWAVEParser
->
EndOfFile
);
TRACE
(
"Duration: %
lld seconds
\n
"
,
pWAVEParser
->
Parser
.
mediaSeeking
.
llDuration
/
(
LONGLONG
)
10000000
);
TRACE
(
"Duration: %
u seconds
\n
"
,
(
DWORD
)(
pWAVEParser
->
Parser
.
mediaSeeking
.
llDuration
/
(
LONGLONG
)
10000000
)
);
This
->
rtStop
=
pWAVEParser
->
EndOfFile
;
This
->
rtStart
=
pWAVEParser
->
StartOfFile
;
...
...
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