X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fplaylist%2Fpodcast.c;h=60389dae9235531e1ba816d9c783a49b632b518b;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=f2541696b0f118917b22a9369ad258b191a19291;hpb=84218f98238cd712e96073326c5d074ff6f364e5;p=vlc diff --git a/modules/demux/playlist/podcast.c b/modules/demux/playlist/podcast.c index f2541696b0..60389dae92 100644 --- a/modules/demux/playlist/podcast.c +++ b/modules/demux/playlist/podcast.c @@ -24,8 +24,6 @@ /***************************************************************************** * Preamble *****************************************************************************/ -#include /* isspace() */ - #include #include @@ -221,7 +219,7 @@ static int Demux( demux_t *p_demux ) psz_item_summary = strdup( psz_text ); } SET_DATA( psz_item_date, "pubDate" ) - SET_DATA( psz_item_category, "itunes:category" ) + SET_DATA( psz_item_category, "itunes:category" ) SET_DATA( psz_item_duration, "itunes:duration" ) SET_DATA( psz_item_keywords, "itunes:keywords" ) SET_DATA( psz_item_subtitle, "itunes:subtitle" ) @@ -229,7 +227,7 @@ static int Demux( demux_t *p_demux ) else if( b_item == VLC_FALSE && b_image == VLC_FALSE && !strcmp( psz_elname, "title" ) ) { - input_ItemSetName( p_current_input, psz_text ); + input_item_SetName( p_current_input, psz_text ); } #define ADD_GINFO( info, name ) \ else if( !b_item && !b_image && !strcmp( psz_elname, name ) ) \