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
27c0cddb
Commit
27c0cddb
authored
Jul 08, 2008
by
Alexander Dorofeyev
Committed by
Alexandre Julliard
Jul 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Do not try renderers first. Use a single enumeration pass.
parent
7f8dfe98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
filtergraph.c
dlls/quartz/filtergraph.c
+2
-11
No files found.
dlls/quartz/filtergraph.c
View file @
27c0cddb
...
...
@@ -1146,8 +1146,6 @@ static HRESULT WINAPI FilterGraph2_Render(IFilterGraph2 *iface, IPin *ppinOut)
IMoniker
*
pMoniker
;
INT
x
;
BOOL
final
=
FALSE
;
TRACE
(
"(%p/%p)->(%p)
\n
"
,
This
,
iface
,
ppinOut
);
if
(
TRACE_ON
(
quartz
))
...
...
@@ -1239,14 +1237,7 @@ static HRESULT WINAPI FilterGraph2_Render(IFilterGraph2 *iface, IPin *ppinOut)
WARN
(
"IEnumMediaTypes_Next (%x)
\n
"
,
hr
);
break
;
}
if
(
!
nbmt
&&
!
final
)
{
final
=
TRUE
;
tab
[
0
]
=
tab
[
1
]
=
GUID_NULL
;
IEnumMediaTypes_Reset
(
penummt
);
continue
;
}
else
if
(
!
nbmt
)
if
(
!
nbmt
)
{
hr
=
VFW_E_CANNOT_RENDER
;
break
;
...
...
@@ -1266,7 +1257,7 @@ static HRESULT WINAPI FilterGraph2_Render(IFilterGraph2 *iface, IPin *ppinOut)
/* Try to find a suitable renderer with the same media type */
tab
[
0
]
=
mt
->
majortype
;
tab
[
1
]
=
mt
->
subtype
;
hr
=
IFilterMapper2_EnumMatchingFilters
(
This
->
pFilterMapper2
,
&
pEnumMoniker
,
0
,
FALSE
,
MERIT_UNLIKELY
,
TRUE
,
1
,
tab
,
NULL
,
NULL
,
!
final
,
FALSE
,
0
,
NULL
,
NULL
,
NULL
);
hr
=
IFilterMapper2_EnumMatchingFilters
(
This
->
pFilterMapper2
,
&
pEnumMoniker
,
0
,
FALSE
,
MERIT_UNLIKELY
,
TRUE
,
1
,
tab
,
NULL
,
NULL
,
FALSE
,
FALSE
,
0
,
NULL
,
NULL
,
NULL
);
if
(
FAILED
(
hr
))
{
WARN
(
"Unable to enum filters (%x)
\n
"
,
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