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
30abd4ed
Commit
30abd4ed
authored
Apr 03, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Apr 04, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Tell filters to stop sending data when the chain is broken.
parent
9d41c2e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
pin.c
dlls/quartz/pin.c
+4
-1
No files found.
dlls/quartz/pin.c
View file @
30abd4ed
...
...
@@ -913,7 +913,10 @@ HRESULT OutputPin_SendSample(OutputPin * This, IMediaSample * pSample)
* then it causes some problems (most notably with the native Video
* Renderer) if we are re-entered for whatever reason */
hr
=
IMemInputPin_Receive
(
pMemConnected
,
pSample
);
IBaseFilter_Release
(
pinInfo
.
pFilter
);
/* If the filter's destroyed, tell upstream to stop sending data */
if
(
IBaseFilter_Release
(
pinInfo
.
pFilter
)
==
0
&&
SUCCEEDED
(
hr
))
hr
=
S_FALSE
;
}
if
(
pMemConnected
)
IMemInputPin_Release
(
pMemConnected
);
...
...
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