]> git.sesse.net Git - vlc/commitdiff
Gra. Fix most of TS meta
authorClément Stenac <zorglub@videolan.org>
Wed, 28 Jun 2006 14:24:22 +0000 (14:24 +0000)
committerClément Stenac <zorglub@videolan.org>
Wed, 28 Jun 2006 14:24:22 +0000 (14:24 +0000)
modules/demux/ts.c
src/input/es_out.c

index d73fe0e9e98f132531c6f961c01f1b79bfd9cf0e..a146646d05ce8812a35928ce444e1050e2bbe39a 100644 (file)
@@ -2434,7 +2434,7 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt )
                         pD->i_service_type, str1, str2 );
 
                 vlc_meta_SetTitle( p_meta, str2 );
-                vlc_meta_SetProvider( p_meta, str1 );
+                vlc_meta_SetPublisher( p_meta, str1 );
                 if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 )
                     vlc_meta_Add( p_meta, "Type", psz_type[pD->i_service_type] );
             }
index d3bd5c256238f9a1ca284dd0be22f5824729be79..19e7d6377a9b290f3c7330c8503b6d6f4c595a44 100644 (file)
@@ -574,7 +574,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
     sprintf( psz_cat, "%s %d", _("Program"), i_group );
 
     if( p_meta->psz_title ) psz_title = p_meta->psz_title;
-    if( p_meta->psz_provider) psz_provider = p_meta->psz_provider;
+    if( p_meta->psz_provider) psz_provider = p_meta->psz_publisher;
     if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying;
 
     if( !psz_title && !psz_now_playing )