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
826a9ce1
Commit
826a9ce1
authored
Aug 11, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Aug 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mf: Only allow converter connection if decoder didn't accept down type.
parent
346c2d8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
topology_loader.c
dlls/mf/topology_loader.c
+9
-2
No files found.
dlls/mf/topology_loader.c
View file @
826a9ce1
...
...
@@ -281,8 +281,13 @@ static HRESULT topology_branch_connect_indirect(IMFTopology *topology, MF_CONNEC
if
(
FAILED
(
hr
=
MFCreateTopologyNode
(
MF_TOPOLOGY_TRANSFORM_NODE
,
&
node
)))
return
hr
;
if
(
decoder
)
if
(
!
decoder
)
method_mask
=
MF_CONNECT_DIRECT
;
else
{
IMFTopologyNode_SetUINT32
(
node
,
&
MF_TOPONODE_DECODER
,
1
);
method_mask
=
MF_CONNECT_ALLOW_CONVERTER
;
}
if
(
FAILED
(
hr
=
MFTEnumEx
(
category
,
MFT_ENUM_FLAG_ALL
,
&
input_info
,
decoder
?
NULL
:
&
output_info
,
&
activates
,
&
count
)))
return
hr
;
...
...
@@ -307,11 +312,13 @@ static HRESULT topology_branch_connect_indirect(IMFTopology *topology, MF_CONNEC
hr
=
topology_branch_fill_media_type
(
up_type
,
down_type
);
if
(
SUCCEEDED
(
hr
))
hr
=
IMFTransform_SetOutputType
(
transform
,
0
,
down_type
,
0
);
if
(
SUCCEEDED
(
hr
))
method_mask
=
MF_CONNECT_DIRECT
;
}
IMFTransform_Release
(
transform
);
if
(
SUCCEEDED
(
hr
))
hr
=
topology_branch_connect
(
topology
,
decoder
?
MF_CONNECT_ALLOW_CONVERTER
:
MF_CONNECT_DIRECT
,
&
down_branch
);
hr
=
topology_branch_connect
(
topology
,
method_mask
,
&
down_branch
);
if
(
SUCCEEDED
(
hr
))
hr
=
IMFTopology_AddNode
(
topology
,
node
);
if
(
SUCCEEDED
(
hr
))
...
...
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