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
0ea378e1
Commit
0ea378e1
authored
Feb 24, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Don't define IMemInputPin_iface in AviMuxIn structure.
parent
d9f6a377
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
avimux.c
dlls/qcap/avimux.c
+4
-4
No files found.
dlls/qcap/avimux.c
View file @
0ea378e1
...
...
@@ -42,7 +42,6 @@ typedef struct {
typedef
struct
{
BaseInputPin
pin
;
IAMStreamControl
IAMStreamControl_iface
;
IMemInputPin
IMemInputPin_iface
;
IPropertyBag
IPropertyBag_iface
;
IQualityControl
IQualityControl_iface
;
}
AviMuxIn
;
...
...
@@ -1062,7 +1061,7 @@ static HRESULT WINAPI AviMuxIn_QueryInterface(IPin *iface, REFIID riid, void **p
else
if
(
IsEqualIID
(
riid
,
&
IID_IAMStreamControl
))
*
ppv
=
&
avimuxin
->
IAMStreamControl_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IMemInputPin
))
*
ppv
=
&
avimuxin
->
IMemInputPin_iface
;
*
ppv
=
&
avimuxin
->
pin
.
IMemInputPin_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IPropertyBag
))
*
ppv
=
&
avimuxin
->
IPropertyBag_iface
;
else
if
(
IsEqualIID
(
riid
,
&
IID_IQualityControl
))
...
...
@@ -1317,7 +1316,8 @@ static const IAMStreamControlVtbl AviMuxIn_AMStreamControlVtbl = {
static
inline
AviMuxIn
*
AviMuxIn_from_IMemInputPin
(
IMemInputPin
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
AviMuxIn
,
IMemInputPin_iface
);
BaseInputPin
*
bip
=
CONTAINING_RECORD
(
iface
,
BaseInputPin
,
IMemInputPin_iface
);
return
CONTAINING_RECORD
(
bip
,
AviMuxIn
,
pin
);
}
static
HRESULT
WINAPI
AviMuxIn_MemInputPin_QueryInterface
(
...
...
@@ -1540,8 +1540,8 @@ static HRESULT create_input_pin(AviMux *avimux)
&
AviMuxIn_BaseInputFuncTable
,
&
avimux
->
filter
.
csFilter
,
NULL
,
(
IPin
**
)
&
avimux
->
in
[
avimux
->
input_pin_no
]);
if
(
FAILED
(
hr
))
return
hr
;
avimux
->
in
[
avimux
->
input_pin_no
]
->
pin
.
IMemInputPin_iface
.
lpVtbl
=
&
AviMuxIn_MemInputPinVtbl
;
avimux
->
in
[
avimux
->
input_pin_no
]
->
IAMStreamControl_iface
.
lpVtbl
=
&
AviMuxIn_AMStreamControlVtbl
;
avimux
->
in
[
avimux
->
input_pin_no
]
->
IMemInputPin_iface
.
lpVtbl
=
&
AviMuxIn_MemInputPinVtbl
;
avimux
->
in
[
avimux
->
input_pin_no
]
->
IPropertyBag_iface
.
lpVtbl
=
&
AviMuxIn_PropertyBagVtbl
;
avimux
->
in
[
avimux
->
input_pin_no
]
->
IQualityControl_iface
.
lpVtbl
=
&
AviMuxIn_QualityControlVtbl
;
...
...
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