[vlc-devel] commit: Fix previous commit. ( Rémi Duraffort )

git version control git at videolan.org
Fri Aug 15 21:54:40 CEST 2008


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri Aug 15 21:56:58 2008 +0200| [b0a7c1634126a830136ca59c6f6ce4dafc1f5459] | committer: Rémi Duraffort 

Fix previous commit.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b0a7c1634126a830136ca59c6f6ce4dafc1f5459
---

 modules/demux/playlist/shoutcast.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/playlist/shoutcast.c b/modules/demux/playlist/shoutcast.c
index 3da6c12..b972199 100644
--- a/modules/demux/playlist/shoutcast.c
+++ b/modules/demux/playlist/shoutcast.c
@@ -228,11 +228,11 @@ static int DemuxGenre( demux_t *p_demux )
                     if( asprintf( &psz_mrl, SHOUTCAST_BASE_URL "?genre=%s",
                              psz_name ) != -1 )
                     {
-                        p_input = input_ItemNewExt( p_demux, psz_mrl,
+                        p_input = input_item_NewExt( p_demux, psz_mrl,
                                                     psz_name, 0, NULL, -1 );
-                        input_ItemCopyOptions( p_sys->p_current_input, p_input );
+                        input_item_CopyOptions( p_sys->p_current_input, p_input );
                         free( psz_mrl );
-                        input_ItemAddSubItem( p_sys->p_current_input, p_input );
+                        input_item_AddSubItem( p_sys->p_current_input, p_input );
                         vlc_gc_decref( p_input );
                     }
                     FREENULL( psz_name );




More information about the vlc-devel mailing list