Commit c462bb53 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

libvlc_media_list_player: privatize

parent deb3a851
......@@ -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;
......
......@@ -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
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment