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
9582f6a4
Commit
9582f6a4
authored
Dec 07, 2019
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Dec 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineqtdecoder: Fix some copy-paste errors.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6bcda474
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
qtsplitter.c
dlls/wineqtdecoder/qtsplitter.c
+4
-4
No files found.
dlls/wineqtdecoder/qtsplitter.c
View file @
9582f6a4
...
@@ -285,7 +285,7 @@ static HRESULT qt_splitter_start_stream(struct strmbase_filter *iface, REFERENCE
...
@@ -285,7 +285,7 @@ static HRESULT qt_splitter_start_stream(struct strmbase_filter *iface, REFERENCE
QTSplitter
*
filter
=
impl_from_strmbase_filter
(
iface
);
QTSplitter
*
filter
=
impl_from_strmbase_filter
(
iface
);
HRESULT
hr
=
VFW_E_NOT_CONNECTED
,
pin_hr
;
HRESULT
hr
=
VFW_E_NOT_CONNECTED
,
pin_hr
;
EnterCriticalSection
(
&
This
->
csReceive
);
EnterCriticalSection
(
&
filter
->
csReceive
);
if
(
filter
->
pVideo_Pin
)
if
(
filter
->
pVideo_Pin
)
pin_hr
=
BaseOutputPinImpl_Active
(
&
filter
->
pVideo_Pin
->
pin
);
pin_hr
=
BaseOutputPinImpl_Active
(
&
filter
->
pVideo_Pin
->
pin
);
...
@@ -297,7 +297,7 @@ static HRESULT qt_splitter_start_stream(struct strmbase_filter *iface, REFERENCE
...
@@ -297,7 +297,7 @@ static HRESULT qt_splitter_start_stream(struct strmbase_filter *iface, REFERENCE
hr
=
pin_hr
;
hr
=
pin_hr
;
SetEvent
(
filter
->
runEvent
);
SetEvent
(
filter
->
runEvent
);
LeaveCriticalSection
(
&
This
->
csReceive
);
LeaveCriticalSection
(
&
filter
->
csReceive
);
return
hr
;
return
hr
;
}
}
...
@@ -306,10 +306,10 @@ static HRESULT qt_splitter_cleanup_stream(struct strmbase_filter *iface)
...
@@ -306,10 +306,10 @@ static HRESULT qt_splitter_cleanup_stream(struct strmbase_filter *iface)
{
{
QTSplitter
*
filter
=
impl_from_strmbase_filter
(
iface
);
QTSplitter
*
filter
=
impl_from_strmbase_filter
(
iface
);
EnterCriticalSection
(
&
This
->
csReceive
);
EnterCriticalSection
(
&
filter
->
csReceive
);
IAsyncReader_BeginFlush
(
filter
->
pInputPin
.
pReader
);
IAsyncReader_BeginFlush
(
filter
->
pInputPin
.
pReader
);
IAsyncReader_EndFlush
(
filter
->
pInputPin
.
pReader
);
IAsyncReader_EndFlush
(
filter
->
pInputPin
.
pReader
);
LeaveCriticalSection
(
&
This
->
csReceive
);
LeaveCriticalSection
(
&
filter
->
csReceive
);
return
S_OK
;
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