Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
25239c06
Commit
25239c06
authored
Nov 06, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for new playlist API
parent
19afed7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+1
-0
modules/gui/skins2/src/vlcproc.cpp
modules/gui/skins2/src/vlcproc.cpp
+1
-1
No files found.
modules/gui/skins2/src/skin_main.cpp
View file @
25239c06
...
...
@@ -234,6 +234,7 @@ static void Run( intf_thread_t *p_intf )
FIND_ANYWHERE
);
if
(
p_playlist
)
{
p_playlist
->
status
.
i_view
=
-
1
;
playlist_Play
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
...
...
modules/gui/skins2/src/vlcproc.cpp
View file @
25239c06
...
...
@@ -208,7 +208,7 @@ void VlcProc::manage()
pTime
->
set
(
pos
.
f_float
,
false
);
// Get the status of the playlist
playlist_status_t
status
=
getIntf
()
->
p_sys
->
p_playlist
->
i_status
;
playlist_status_t
status
=
getIntf
()
->
p_sys
->
p_playlist
->
status
.
i_status
;
pVarPlaying
->
set
(
status
==
PLAYLIST_RUNNING
);
pVarStopped
->
set
(
status
==
PLAYLIST_STOPPED
);
...
...
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