Commit 6bc1500f authored by Yoann Peronneau's avatar Yoann Peronneau

* xpsf.c: ...but <playlist> has... grmbl

parent 37b5af49
......@@ -45,6 +45,7 @@ int E_(xspf_export_playlist)( vlc_object_t *p_this )
const playlist_export_t *p_export =
(playlist_export_t *)p_playlist->p_private;
int i, i_count;
char *psz_temp;
playlist_item_t *p_node = p_export->p_root;
/* write XSPF XML header */
......@@ -54,6 +55,22 @@ int E_(xspf_export_playlist)( vlc_object_t *p_this )
if( !p_node ) return VLC_SUCCESS;
/* 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