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
40456f4b
Commit
40456f4b
authored
Apr 11, 2012
by
Aric Stewart
Committed by
Alexandre Julliard
Apr 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineqtdecoder: Call OutputQueue_Destroy during pin disconnect.
parent
a80aec4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
qtsplitter.c
dlls/wineqtdecoder/qtsplitter.c
+2
-1
No files found.
dlls/wineqtdecoder/qtsplitter.c
View file @
40456f4b
...
...
@@ -745,6 +745,7 @@ static HRESULT QT_RemoveOutputPins(QTSplitter *This)
if
(
This
->
pVideo_Pin
)
{
OutputQueue_Destroy
(
This
->
pVideo_Pin
->
queue
);
hr
=
BaseOutputPinImpl_BreakConnect
(
&
This
->
pVideo_Pin
->
pin
);
TRACE
(
"Disconnect: %08x
\n
"
,
hr
);
IPin_Release
(
&
This
->
pVideo_Pin
->
pin
.
pin
.
IPin_iface
);
...
...
@@ -752,6 +753,7 @@ static HRESULT QT_RemoveOutputPins(QTSplitter *This)
}
if
(
This
->
pAudio_Pin
)
{
OutputQueue_Destroy
(
This
->
pAudio_Pin
->
queue
);
hr
=
BaseOutputPinImpl_BreakConnect
(
&
This
->
pAudio_Pin
->
pin
);
TRACE
(
"Disconnect: %08x
\n
"
,
hr
);
IPin_Release
(
&
This
->
pAudio_Pin
->
pin
.
pin
.
IPin_iface
);
...
...
@@ -1269,7 +1271,6 @@ static ULONG WINAPI QTOutPin_Release(IPin *iface)
{
DeleteMediaType
(
This
->
pmt
);
FreeMediaType
(
&
This
->
pin
.
pin
.
mtCurrent
);
OutputQueue_Destroy
(
This
->
queue
);
CoTaskMemFree
(
This
);
return
0
;
}
...
...
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