Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ab500430
Commit
ab500430
authored
Dec 15, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: automatically resume from pause when uncorked
parent
43b06eed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
src/playlist/engine.c
src/playlist/engine.c
+8
-7
No files found.
src/playlist/engine.c
View file @
ab500430
...
...
@@ -84,18 +84,19 @@ static int CorksCallback( vlc_object_t *obj, char const *var,
if
(
!
old
.
i_int
==
!
cur
.
i_int
)
return
VLC_SUCCESS
;
/* nothing to do */
if
(
!
var_InheritBool
(
obj
,
"playlist-cork"
)
)
return
VLC_SUCCESS
;
if
(
cur
.
i_int
)
{
if
(
var_InheritBool
(
obj
,
"playlist-cork"
)
)
{
msg_Dbg
(
obj
,
"corked"
);
playlist_Pause
(
pl
);
}
else
msg_Dbg
(
obj
,
"not corked"
);
msg_Dbg
(
obj
,
"corked"
);
playlist_Pause
(
pl
);
}
else
{
msg_Dbg
(
obj
,
"uncorked"
);
playlist_Resume
(
pl
);
}
(
void
)
var
;
(
void
)
dummy
;
return
VLC_SUCCESS
;
...
...
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