]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/b4s.c
codecleanup: Replace input_Item by input_item.
[vlc] / modules / demux / playlist / b4s.c
index bd001894cbbbdfec5b8623fabd064f67d681a5a1..8431a06fd2e9f8810de9b8f96e31903d2ba5aff1 100644 (file)
@@ -256,7 +256,7 @@ static int Demux( demux_t *p_demux )
                 if( !psz_elname ) return -1;
                 if( !strcmp( psz_elname, "entry" ) )
                 {
-                    p_input = input_ItemNewExt( p_demux, psz_mrl, psz_name,
+                    p_input = input_item_NewExt( p_demux, psz_mrl, psz_name,
                                                 0, NULL, -1 );
                     if( psz_now )
                         input_item_SetNowPlaying( p_input, psz_now );
@@ -267,7 +267,7 @@ static int Demux( demux_t *p_demux )
                     if( psz_bitrate )
                         msg_Err( p_demux, "Unsupported meta bitrate" );
 
-                    input_ItemAddSubItem( p_current_input, p_input );
+                    input_item_AddSubItem( p_current_input, p_input );
                     vlc_gc_decref( p_input );
                     FREENULL( psz_name );
                     FREENULL( psz_mrl );