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
61105aee
Commit
61105aee
authored
Nov 25, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Use wine_dbgstr_longlong() to trace REFERENCE_TIME arguments.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
89763f0e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
pin.c
dlls/strmbase/pin.c
+2
-2
transform.c
dlls/strmbase/transform.c
+1
-1
No files found.
dlls/strmbase/pin.c
View file @
61105aee
...
...
@@ -339,7 +339,7 @@ HRESULT WINAPI BasePinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFER
{
BasePin
*
This
=
impl_from_IPin
(
iface
);
TRACE
(
"(%
x%08x, %x%08x, %e)
\n
"
,
(
ULONG
)(
tStart
>>
32
),
(
ULONG
)
tStart
,
(
ULONG
)(
tStop
>>
32
),
(
ULONG
)
tStop
,
dRate
);
TRACE
(
"(%
s, %s, %e)
\n
"
,
wine_dbgstr_longlong
(
tStart
),
wine_dbgstr_longlong
(
tStop
)
,
dRate
);
This
->
tStart
=
tStart
;
This
->
tStop
=
tStop
;
...
...
@@ -1017,7 +1017,7 @@ HRESULT WINAPI BaseInputPinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart,
BaseInputPin
*
This
=
impl_BaseInputPin_from_IPin
(
iface
);
newsegmentargs
args
;
TRACE
(
"(%
x%08x, %x%08x, %e)
\n
"
,
(
ULONG
)(
tStart
>>
32
),
(
ULONG
)
tStart
,
(
ULONG
)(
tStop
>>
32
),
(
ULONG
)
tStop
,
dRate
);
TRACE
(
"(%
s, %s, %e)
\n
"
,
wine_dbgstr_longlong
(
tStart
),
wine_dbgstr_longlong
(
tStop
)
,
dRate
);
args
.
tStart
=
This
->
pin
.
tStart
=
tStart
;
args
.
tStop
=
This
->
pin
.
tStop
=
tStop
;
...
...
dlls/strmbase/transform.c
View file @
61105aee
...
...
@@ -545,7 +545,7 @@ static HRESULT WINAPI TransformFilter_InputPin_NewSegment(IPin * iface, REFERENC
TransformFilter
*
pTransform
;
HRESULT
hr
=
S_OK
;
TRACE
(
"(%p)->(
)
\n
"
,
ifac
e
);
TRACE
(
"(%p)->(
%s %s %e)
\n
"
,
iface
,
wine_dbgstr_longlong
(
tStart
),
wine_dbgstr_longlong
(
tStop
),
dRat
e
);
pTransform
=
impl_from_IBaseFilter
(
This
->
pin
.
pinInfo
.
pFilter
);
EnterCriticalSection
(
&
pTransform
->
filter
.
csFilter
);
...
...
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