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
c462bb53
Commit
c462bb53
authored
May 21, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_media_list_player: privatize
parent
deb3a851
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
src/control/libvlc_internal.h
src/control/libvlc_internal.h
+0
-12
src/control/media_list_player.c
src/control/media_list_player.c
+13
-0
No files found.
src/control/libvlc_internal.h
View file @
c462bb53
...
...
@@ -165,18 +165,6 @@ struct libvlc_media_player_t
bool
b_own_its_input_thread
;
};
struct
libvlc_media_list_player_t
{
libvlc_event_manager_t
*
p_event_manager
;
libvlc_instance_t
*
p_libvlc_instance
;
int
i_refcount
;
vlc_mutex_t
object_lock
;
libvlc_media_list_path_t
current_playing_item_path
;
libvlc_media_t
*
p_current_playing_item
;
libvlc_media_list_t
*
p_mlist
;
libvlc_media_player_t
*
p_mi
;
};
struct
libvlc_media_library_t
{
libvlc_event_manager_t
*
p_event_manager
;
...
...
src/control/media_list_player.c
View file @
c462bb53
...
...
@@ -24,6 +24,19 @@
#include <vlc/libvlc.h>
#include "media_list_path.h"
struct
libvlc_media_list_player_t
{
libvlc_event_manager_t
*
p_event_manager
;
libvlc_instance_t
*
p_libvlc_instance
;
int
i_refcount
;
vlc_mutex_t
object_lock
;
libvlc_media_list_path_t
current_playing_item_path
;
libvlc_media_t
*
p_current_playing_item
;
libvlc_media_list_t
*
p_mlist
;
libvlc_media_player_t
*
p_mi
;
};
/*
* Private functions
*/
...
...
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