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
f0ebd661
Commit
f0ebd661
authored
Jun 15, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mf/session: Reset per-node end of stream flags when stopped.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6a68e345
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
session.c
dlls/mf/session.c
+5
-0
No files found.
dlls/mf/session.c
View file @
f0ebd661
...
...
@@ -946,12 +946,17 @@ static void session_pause(struct media_session *session)
static
void
session_clear_end_of_presentation
(
struct
media_session
*
session
)
{
struct
media_source
*
source
;
struct
topo_node
*
node
;
session
->
presentation
.
flags
&=
~
SESSION_FLAG_END_OF_PRESENTATION
;
LIST_FOR_EACH_ENTRY
(
source
,
&
session
->
presentation
.
sources
,
struct
media_source
,
entry
)
{
source
->
flags
&=
~
SOURCE_FLAG_END_OF_PRESENTATION
;
}
LIST_FOR_EACH_ENTRY
(
node
,
&
session
->
presentation
.
nodes
,
struct
topo_node
,
entry
)
{
node
->
flags
&=
~
TOPO_NODE_END_OF_STREAM
;
}
}
static
void
session_set_stopped
(
struct
media_session
*
session
,
HRESULT
status
)
...
...
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