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
59599486
Commit
59599486
authored
May 06, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Improve SetGUID() traces.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c1d02356
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
buffer.c
dlls/mfplat/buffer.c
+1
-1
main.c
dlls/mfplat/main.c
+1
-1
mediatype.c
dlls/mfplat/mediatype.c
+3
-3
No files found.
dlls/mfplat/buffer.c
View file @
59599486
...
...
@@ -483,7 +483,7 @@ static HRESULT WINAPI sample_SetGUID(IMFSample *iface, REFGUID key, REFGUID valu
{
struct
sample
*
sample
=
impl_from_IMFSample
(
iface
);
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_guid
(
value
));
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_
mf_
guid
(
value
));
return
attributes_SetGUID
(
&
sample
->
attributes
,
key
,
value
);
}
...
...
dlls/mfplat/main.c
View file @
59599486
...
...
@@ -5705,7 +5705,7 @@ static HRESULT WINAPI mfmediaevent_SetGUID(IMFMediaEvent *iface, REFGUID key, RE
{
struct
media_event
*
event
=
impl_from_IMFMediaEvent
(
iface
);
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_guid
(
value
));
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_
mf_
guid
(
value
));
return
attributes_SetGUID
(
&
event
->
attributes
,
key
,
value
);
}
...
...
dlls/mfplat/mediatype.c
View file @
59599486
...
...
@@ -324,7 +324,7 @@ static HRESULT WINAPI mediatype_SetGUID(IMFMediaType *iface, REFGUID key, REFGUI
{
struct
media_type
*
media_type
=
impl_from_IMFMediaType
(
iface
);
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_guid
(
value
));
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_
mf_
guid
(
value
));
return
attributes_SetGUID
(
&
media_type
->
attributes
,
key
,
value
);
}
...
...
@@ -871,7 +871,7 @@ static HRESULT WINAPI stream_descriptor_SetGUID(IMFStreamDescriptor *iface, REFG
{
struct
stream_desc
*
stream_desc
=
impl_from_IMFStreamDescriptor
(
iface
);
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_guid
(
value
));
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_
mf_
guid
(
value
));
return
attributes_SetGUID
(
&
stream_desc
->
attributes
,
key
,
value
);
}
...
...
@@ -1450,7 +1450,7 @@ static HRESULT WINAPI presentation_descriptor_SetGUID(IMFPresentationDescriptor
{
struct
presentation_desc
*
presentation_desc
=
impl_from_IMFPresentationDescriptor
(
iface
);
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_guid
(
value
));
TRACE
(
"%p, %s, %s.
\n
"
,
iface
,
debugstr_attr
(
key
),
debugstr_
mf_
guid
(
value
));
return
attributes_SetGUID
(
&
presentation_desc
->
attributes
,
key
,
value
);
}
...
...
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