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
2a52c54f
Commit
2a52c54f
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 IMediaPosition from the filter.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
25c3bf9c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
6 deletions
+2
-6
acmwrapper.c
dlls/quartz/tests/acmwrapper.c
+1
-1
avidec.c
dlls/quartz/tests/avidec.c
+1
-1
transform.c
dlls/strmbase/transform.c
+0
-4
No files found.
dlls/quartz/tests/acmwrapper.c
View file @
2a52c54f
...
...
@@ -73,7 +73,7 @@ static void test_interfaces(void)
check_interface
(
filter
,
&
IID_IBasicAudio
,
FALSE
);
check_interface
(
filter
,
&
IID_IBasicVideo
,
FALSE
);
check_interface
(
filter
,
&
IID_IKsPropertySet
,
FALSE
);
todo_wine
check_interface
(
filter
,
&
IID_IMediaPosition
,
FALSE
);
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
);
...
...
dlls/quartz/tests/avidec.c
View file @
2a52c54f
...
...
@@ -97,7 +97,7 @@ static void test_interfaces(void)
check_interface
(
filter
,
&
IID_IBasicAudio
,
FALSE
);
check_interface
(
filter
,
&
IID_IBasicVideo
,
FALSE
);
check_interface
(
filter
,
&
IID_IKsPropertySet
,
FALSE
);
todo_wine
check_interface
(
filter
,
&
IID_IMediaPosition
,
FALSE
);
check_interface
(
filter
,
&
IID_IMediaPosition
,
FALSE
);
check_interface
(
filter
,
&
IID_IMediaSeeking
,
FALSE
);
check_interface
(
filter
,
&
IID_IPersistPropertyBag
,
FALSE
);
check_interface
(
filter
,
&
IID_IPin
,
FALSE
);
...
...
dlls/strmbase/transform.c
View file @
2a52c54f
...
...
@@ -172,10 +172,6 @@ static HRESULT WINAPI TransformFilterImpl_QueryInterface(IBaseFilter * iface, RE
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IMediaPosition
))
{
return
IUnknown_QueryInterface
(
This
->
seekthru_unk
,
riid
,
ppv
);
}
hr
=
BaseFilterImpl_QueryInterface
(
iface
,
riid
,
ppv
);
if
(
FAILED
(
hr
)
&&
!
IsEqualIID
(
riid
,
&
IID_IPin
)
&&
!
IsEqualIID
(
riid
,
&
IID_IVideoWindow
)
&&
...
...
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