Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b3c4d6ee
Commit
b3c4d6ee
authored
Mar 30, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Apr 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Remove errant parser output pins on input connection failure.
parent
4eea356e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
parser.c
dlls/quartz/parser.c
+20
-1
No files found.
dlls/quartz/parser.c
View file @
b3c4d6ee
...
@@ -762,13 +762,32 @@ static HRESULT WINAPI Parser_InputPin_Disconnect(IPin * iface)
...
@@ -762,13 +762,32 @@ static HRESULT WINAPI Parser_InputPin_Disconnect(IPin * iface)
return
hr
;
return
hr
;
}
}
HRESULT
WINAPI
Parser_PullPin_ReceiveConnection
(
IPin
*
iface
,
IPin
*
pReceivePin
,
const
AM_MEDIA_TYPE
*
pmt
)
{
HRESULT
hr
;
TRACE
(
"()
\n
"
);
hr
=
PullPin_ReceiveConnection
(
iface
,
pReceivePin
,
pmt
);
if
(
FAILED
(
hr
))
{
IPinImpl
*
This
=
(
IPinImpl
*
)
iface
;
EnterCriticalSection
(
This
->
pCritSec
);
Parser_RemoveOutputPins
((
ParserImpl
*
)
This
->
pinInfo
.
pFilter
);
LeaveCriticalSection
(
This
->
pCritSec
);
}
return
hr
;
}
static
const
IPinVtbl
Parser_InputPin_Vtbl
=
static
const
IPinVtbl
Parser_InputPin_Vtbl
=
{
{
PullPin_QueryInterface
,
PullPin_QueryInterface
,
IPinImpl_AddRef
,
IPinImpl_AddRef
,
PullPin_Release
,
PullPin_Release
,
OutputPin_Connect
,
OutputPin_Connect
,
PullPin_ReceiveConnection
,
P
arser_P
ullPin_ReceiveConnection
,
Parser_InputPin_Disconnect
,
Parser_InputPin_Disconnect
,
IPinImpl_ConnectedTo
,
IPinImpl_ConnectedTo
,
IPinImpl_ConnectionMediaType
,
IPinImpl_ConnectionMediaType
,
...
...
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