Commit 37b5af49 authored by Yoann Peronneau's avatar Yoann Peronneau

* xspf.c: <trackList> has no <location> or <title> element

parent 9526c478
......@@ -44,12 +44,8 @@ int E_(xspf_export_playlist)( vlc_object_t *p_this )
const playlist_t *p_playlist = (playlist_t *)p_this;
const playlist_export_t *p_export =
(playlist_export_t *)p_playlist->p_private;
int i;
char *psz_temp;
playlist_item_t **pp_items = NULL;
int i_size;
int i, i_count;
playlist_item_t *p_node = p_export->p_root;
int i_count;
/* write XSPF XML header */
fprintf( p_export->p_file, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );
......@@ -58,25 +54,6 @@ int E_(xspf_export_playlist)( vlc_object_t *p_this )
if( !p_node ) return VLC_SUCCESS;
pp_items = p_node->pp_children;
i_size = p_node->i_children;
/* save name of the playlist node */
psz_temp = convert_xml_special_chars( p_node->p_input->psz_name );
if( *psz_temp )
{
fprintf( p_export->p_file, "\t<title>%s</title>\n", psz_temp );
}
free( psz_temp );
/* save location of the playlist node */
psz_temp = assertUTF8URI( p_export->psz_filename );
if( psz_temp && *psz_temp )
{
fprintf( p_export->p_file, "\t<location>%s</location>\n", psz_temp );
free( psz_temp );
}
/* export all items in a flat format */
fprintf( p_export->p_file, "\t<trackList>\n" );
i_count = 0;
......
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