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
e578ee3b
Commit
e578ee3b
authored
Sep 27, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mf: Fix stream IID loader should be testing for.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c3bcf83d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
topology.c
dlls/mf/topology.c
+3
-3
No files found.
dlls/mf/topology.c
View file @
e578ee3b
...
...
@@ -1726,7 +1726,7 @@ static HRESULT WINAPI topology_loader_Load(IMFTopoLoader *iface, IMFTopology *in
IMFTopology
**
output_topology
,
IMFTopology
*
current_topology
)
{
struct
topology
*
topology
=
unsafe_impl_from_IMFTopology
(
input_topology
);
IMF
Media
Sink
*
sink
;
IMF
Stream
Sink
*
sink
;
HRESULT
hr
;
size_t
i
;
...
...
@@ -1745,9 +1745,9 @@ static HRESULT WINAPI topology_loader_Load(IMFTopoLoader *iface, IMFTopology *in
if
(
node
->
object
)
{
/* Sinks must be bound beforehand. */
if
(
FAILED
(
IUnknown_QueryInterface
(
node
->
object
,
&
IID_IMF
Media
Sink
,
(
void
**
)
&
sink
)))
if
(
FAILED
(
IUnknown_QueryInterface
(
node
->
object
,
&
IID_IMF
Stream
Sink
,
(
void
**
)
&
sink
)))
return
MF_E_TOPO_SINK_ACTIVATES_UNSUPPORTED
;
IMF
Media
Sink_Release
(
sink
);
IMF
Stream
Sink_Release
(
sink
);
}
break
;
case
MF_TOPOLOGY_SOURCESTREAM_NODE
:
...
...
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