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
cde81264
Commit
cde81264
authored
Feb 25, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Fix Avi Mux IConfigInterleaving::put_Mode implementation.
parent
17c4c1be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
11 deletions
+7
-11
avimux.c
dlls/qcap/avimux.c
+7
-11
No files found.
dlls/qcap/avimux.c
View file @
cde81264
...
...
@@ -332,7 +332,6 @@ static HRESULT WINAPI ConfigInterleaving_put_Mode(
IConfigInterleaving
*
iface
,
InterleavingMode
mode
)
{
AviMux
*
This
=
impl_from_IConfigInterleaving
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
mode
);
...
...
@@ -340,19 +339,16 @@ static HRESULT WINAPI ConfigInterleaving_put_Mode(
return
E_INVALIDARG
;
if
(
This
->
mode
!=
mode
)
{
int
i
;
for
(
i
=
0
;
i
<
This
->
input_pin_no
;
i
++
)
{
if
(
!
This
->
in
[
i
]
->
pin
.
pin
.
pConnectedTo
)
continue
;
hr
=
IFilterGraph_Reconnect
(
This
->
filter
.
filterInfo
.
pGraph
,
&
This
->
in
[
i
]
->
pin
.
pin
.
IPin_iface
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
This
->
out
->
pin
.
pin
.
pConnectedTo
)
{
HRESULT
hr
=
IFilterGraph_Reconnect
(
This
->
filter
.
filterInfo
.
pGraph
,
&
This
->
out
->
pin
.
pin
.
IPin_iface
);
if
(
FAILED
(
hr
))
return
hr
;
}
This
->
mode
=
mode
;
}
This
->
mode
=
mode
;
return
S_OK
;
}
...
...
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