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
c1b8ffde
Commit
c1b8ffde
authored
May 18, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
May 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase/transform: Don't expose IQualityControl from the filter.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2a52c54f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
23 deletions
+3
-23
acmwrapper.c
dlls/quartz/tests/acmwrapper.c
+1
-1
avidec.c
dlls/quartz/tests/avidec.c
+1
-1
transform.c
dlls/strmbase/transform.c
+1
-21
No files found.
dlls/quartz/tests/acmwrapper.c
View file @
c1b8ffde
...
...
@@ -76,7 +76,7 @@ static void test_interfaces(void)
check_interface
(
filter
,
&
IID_IMediaPosition
,
FALSE
);
check_interface
(
filter
,
&
IID_IMediaSeeking
,
FALSE
);
check_interface
(
filter
,
&
IID_IPin
,
FALSE
);
todo_wine
check_interface
(
filter
,
&
IID_IQualityControl
,
FALSE
);
check_interface
(
filter
,
&
IID_IQualityControl
,
FALSE
);
check_interface
(
filter
,
&
IID_IQualProp
,
FALSE
);
check_interface
(
filter
,
&
IID_IReferenceClock
,
FALSE
);
check_interface
(
filter
,
&
IID_IVideoWindow
,
FALSE
);
...
...
dlls/quartz/tests/avidec.c
View file @
c1b8ffde
...
...
@@ -101,7 +101,7 @@ static void test_interfaces(void)
check_interface
(
filter
,
&
IID_IMediaSeeking
,
FALSE
);
check_interface
(
filter
,
&
IID_IPersistPropertyBag
,
FALSE
);
check_interface
(
filter
,
&
IID_IPin
,
FALSE
);
todo_wine
check_interface
(
filter
,
&
IID_IQualityControl
,
FALSE
);
check_interface
(
filter
,
&
IID_IQualityControl
,
FALSE
);
check_interface
(
filter
,
&
IID_IQualProp
,
FALSE
);
check_interface
(
filter
,
&
IID_IReferenceClock
,
FALSE
);
check_interface
(
filter
,
&
IID_IVideoWindow
,
FALSE
);
...
...
dlls/strmbase/transform.c
View file @
c1b8ffde
...
...
@@ -161,26 +161,6 @@ static const BaseOutputPinFuncTable tf_output_BaseOutputFuncTable = {
BaseOutputPinImpl_DecideAllocator
,
};
static
HRESULT
WINAPI
TransformFilterImpl_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
HRESULT
hr
;
TransformFilter
*
This
=
impl_from_IBaseFilter
(
iface
);
TRACE
(
"(%p/%p)->(%s, %p)
\n
"
,
This
,
iface
,
debugstr_guid
(
riid
),
ppv
);
if
(
IsEqualIID
(
riid
,
&
IID_IQualityControl
))
{
*
ppv
=
(
IQualityControl
*
)
This
->
qcimpl
;
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
hr
=
BaseFilterImpl_QueryInterface
(
iface
,
riid
,
ppv
);
if
(
FAILED
(
hr
)
&&
!
IsEqualIID
(
riid
,
&
IID_IPin
)
&&
!
IsEqualIID
(
riid
,
&
IID_IVideoWindow
)
&&
!
IsEqualIID
(
riid
,
&
IID_IAMFilterMiscFlags
))
FIXME
(
"No interface for %s!
\n
"
,
debugstr_guid
(
riid
));
return
hr
;
}
static
ULONG
WINAPI
TransformFilterImpl_Release
(
IBaseFilter
*
iface
)
{
TransformFilter
*
This
=
impl_from_IBaseFilter
(
iface
);
...
...
@@ -293,7 +273,7 @@ static HRESULT WINAPI TransformFilterImpl_Run(IBaseFilter *iface, REFERENCE_TIME
static
const
IBaseFilterVtbl
transform_vtbl
=
{
Transform
FilterImpl_QueryInterface
,
Base
FilterImpl_QueryInterface
,
BaseFilterImpl_AddRef
,
TransformFilterImpl_Release
,
BaseFilterImpl_GetClassID
,
...
...
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