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
b7bc6dcf
Commit
b7bc6dcf
authored
Sep 11, 2011
by
Erich Hoover
Committed by
Alexandre Julliard
Sep 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Add support for EndOfStream in PullPin.
parent
9f7ef378
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
pin.c
dlls/quartz/pin.c
+10
-2
No files found.
dlls/quartz/pin.c
View file @
b7bc6dcf
...
...
@@ -726,9 +726,17 @@ HRESULT WINAPI PullPin_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt)
HRESULT
WINAPI
PullPin_EndOfStream
(
IPin
*
iface
)
{
FIXME
(
"(%p)->() stub
\n
"
,
iface
);
PullPin
*
This
=
(
PullPin
*
)
iface
;
HRESULT
hr
=
S_FALSE
;
TRACE
(
"(%p)->()
\n
"
,
iface
);
EnterCriticalSection
(
This
->
pin
.
pCritSec
);
hr
=
SendFurther
(
iface
,
deliver_endofstream
,
NULL
,
NULL
);
SetEvent
(
This
->
hEventStateChanged
);
LeaveCriticalSection
(
This
->
pin
.
pCritSec
);
return
SendFurther
(
iface
,
deliver_endofstream
,
NULL
,
NULL
)
;
return
hr
;
}
HRESULT
WINAPI
PullPin_BeginFlush
(
IPin
*
iface
)
...
...
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