Commit d1a33559 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

libvlc: Make media_descriptor_t internal.

parent 39793dd2
...@@ -75,12 +75,7 @@ typedef enum { ...@@ -75,12 +75,7 @@ typedef enum {
/**@} */ /**@} */
typedef struct libvlc_media_descriptor_t libvlc_media_descriptor_t;
typedef struct {
bool b_preparsed;
input_item_t * p_input_item;
libvlc_instance_t * p_libvlc_instance;
} libvlc_media_descriptor_t;
/**@} */ /**@} */
......
...@@ -75,6 +75,12 @@ struct libvlc_instance_t ...@@ -75,6 +75,12 @@ struct libvlc_instance_t
struct libvlc_callback_entry_list_t *p_callback_list; struct libvlc_callback_entry_list_t *p_callback_list;
}; };
typedef struct {
bool b_preparsed;
input_item_t * p_input_item;
libvlc_instance_t * p_libvlc_instance;
} libvlc_media_descriptor_t;
struct libvlc_input_t struct libvlc_input_t
{ {
int i_input_id; ///< Input object id. We don't use a pointer to int i_input_id; ///< Input object id. We don't use a pointer to
......
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