Commit 69f05cb2 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

control/media_descriptor.c: Use the default input name.

parent 7e042a1c
......@@ -203,7 +203,7 @@ libvlc_media_descriptor_t * libvlc_media_descriptor_new(
input_item_t * p_input_item;
libvlc_media_descriptor_t * p_md;
p_input_item = input_ItemNew( p_instance->p_libvlc_int, psz_mrl, psz_mrl );
p_input_item = input_ItemNew( p_instance->p_libvlc_int, psz_mrl, NULL );
if (!p_input_item)
{
......@@ -295,3 +295,14 @@ char * libvlc_media_descriptor_get_meta( libvlc_media_descriptor_t *p_md,
return psz_meta;
}
/**************************************************************************
* Getter for meta information
**************************************************************************/
typedef char * libvlc_tag_t;
void libvlc_media_descriptor_set_tag( libvlc_media_descriptor_t *p_md,
const libvlc_tag_t tag,
libvlc_exception_t *p_e )
{
}
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