From: Clément Stenac Date: Wed, 28 Jun 2006 14:24:22 +0000 (+0000) Subject: Gra. Fix most of TS meta X-Git-Tag: 0.9.0-test0~10942 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5e2c9b528c05f3846a3eb73d659986d40f39ebf1;hp=19738f6a319be6a3ec5e869b81256554d808be98;p=vlc Gra. Fix most of TS meta --- diff --git a/modules/demux/ts.c b/modules/demux/ts.c index d73fe0e9e9..a146646d05 100644 --- a/modules/demux/ts.c +++ b/modules/demux/ts.c @@ -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] ); } diff --git a/src/input/es_out.c b/src/input/es_out.c index d3bd5c2562..19e7d6377a 100644 --- a/src/input/es_out.c +++ b/src/input/es_out.c @@ -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 )