Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
mediastreamer2
Commits
8d34232d
Commit
8d34232d
authored
Jan 25, 2016
by
François Grisez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makes MKVPlayer sends the EOF signal even if it loop mode is enabled
parent
f6fdbb88
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/videofilters/mkv.c
src/videofilters/mkv.c
+2
-2
No files found.
src/videofilters/mkv.c
View file @
8d34232d
...
...
@@ -2545,9 +2545,9 @@ static void player_process(MSFilter *f) {
if
((
!
obj
->
players
[
0
]
||
!
f
->
outputs
[
0
]
||
obj
->
players
[
0
]
->
eot
)
&&
(
!
obj
->
players
[
1
]
||
!
f
->
outputs
[
1
]
||
obj
->
players
[
1
]
->
eot
))
{
ms_filter_notify_no_arg
(
f
,
MS_PLAYER_EOF
);
if
(
obj
->
loop_pause_interval
<
0
)
{
ms_filter_notify_no_arg
(
f
,
MS_PLAYER_EOF
);
obj
->
state
=
MSPlayerPaused
;
}
else
{
obj
->
time_before_next_loop
=
obj
->
loop_pause_interval
;
...
...
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