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
e27adf2a
Commit
e27adf2a
authored
Feb 12, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qedit: IMemInputPin / IQualityControl are IPin stuff.
parent
53805963
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
samplegrabber.c
dlls/qedit/samplegrabber.c
+1
-6
No files found.
dlls/qedit/samplegrabber.c
View file @
e27adf2a
...
...
@@ -372,10 +372,8 @@ typedef struct _SG_Impl {
IUnknown
IUnknown_inner
;
IBaseFilter
IBaseFilter_iface
;
ISampleGrabber
ISampleGrabber_iface
;
IMemInputPin
IMemInputPin_iface
;
/* IMediaSeeking and IMediaPosition are implemented by ISeekingPassThru */
IUnknown
*
seekthru_unk
;
/* TODO: IQualityControl */
IUnknown
*
outer_unk
;
LONG
ref
;
CRITICAL_SECTION
critSect
;
...
...
@@ -384,6 +382,7 @@ typedef struct _SG_Impl {
AM_MEDIA_TYPE
mtype
;
SG_Pin
pin_in
;
SG_Pin
pin_out
;
IMemInputPin
IMemInputPin_iface
;
IMemAllocator
*
allocator
;
IReferenceClock
*
refClock
;
IMemInputPin
*
memOutput
;
...
...
@@ -460,14 +459,10 @@ static HRESULT WINAPI SampleGrabber_QueryInterface(IUnknown *iface, REFIID riid,
*
ppv
=
&
This
->
IBaseFilter_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_ISampleGrabber
))
*
ppv
=
&
This
->
ISampleGrabber_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IMemInputPin
))
*
ppv
=
&
This
->
IMemInputPin_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IMediaPosition
))
return
IUnknown_QueryInterface
(
This
->
seekthru_unk
,
riid
,
ppv
);
else
if
(
IsEqualIID
(
riid
,
&
IID_IMediaSeeking
))
return
IUnknown_QueryInterface
(
This
->
seekthru_unk
,
riid
,
ppv
);
else
if
(
IsEqualIID
(
riid
,
&
IID_IQualityControl
))
FIXME
(
"IQualityControl not implemented
\n
"
);
else
WARN
(
"(%p, %s,%p): not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
...
...
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