]> git.sesse.net Git - vlc/commitdiff
EPG: Don't display extra items from extended EIT events
authorMarian Ďurkovič <md@bts.sk>
Mon, 14 Sep 2009 06:25:30 +0000 (08:25 +0200)
committerMarian Ďurkovič <md@bts.sk>
Mon, 14 Sep 2009 06:25:30 +0000 (08:25 +0200)
Info they provide is typically also present in the text or
not usefull to VLC.

modules/demux/ts.c

index 718cab0b3bc9b25f4207888840ce685cd02d350f..6704d4e25a3a91466497078f56cbe6eae950cf98 100644 (file)
@@ -2976,13 +2976,14 @@ static void EITCallBack( demux_t *p_demux,
                         if( psz_dsc && psz_itm )
                         {
                             msg_Dbg( p_demux, "       - desc='%s' item='%s'", psz_dsc, psz_itm );
-
+#if 0
                             psz_extra = realloc( psz_extra, strlen(psz_extra) + strlen(psz_dsc) + strlen(psz_itm) + 3 + 1 );
                             strcat( psz_extra, "(" );
                             strcat( psz_extra, psz_dsc );
                             strcat( psz_extra, " " );
                             strcat( psz_extra, psz_itm );
                             strcat( psz_extra, ")" );
+#endif
                         }
                         free( psz_dsc );
                         free( psz_itm );