Commit be9458e0 authored by Marian Ďurkovič's avatar Marian Ďurkovič

Display EPG description if available

parent 65211483
...@@ -2997,7 +2997,8 @@ static void EITCallBack( demux_t *p_demux, ...@@ -2997,7 +2997,8 @@ static void EITCallBack( demux_t *p_demux,
/* */ /* */
if( i_start > 0 ) if( i_start > 0 )
vlc_epg_AddEvent( p_epg, i_start, i_duration, psz_name, psz_text, psz_extra ); vlc_epg_AddEvent( p_epg, i_start, i_duration, psz_name, psz_text,
*psz_extra ? psz_extra : NULL );
/* Update "now playing" field */ /* Update "now playing" field */
if( p_evt->i_running_status == 0x04 && i_start > 0 ) if( p_evt->i_running_status == 0x04 && i_start > 0 )
......
...@@ -729,10 +729,11 @@ void input_item_SetEpg( input_item_t *p_item, ...@@ -729,10 +729,11 @@ void input_item_SetEpg( input_item_t *p_item,
1900 + tm_start.tm_year, 1 + tm_start.tm_mon, tm_start.tm_mday, 1900 + tm_start.tm_year, 1 + tm_start.tm_mon, tm_start.tm_mday,
tm_start.tm_hour, tm_start.tm_min, tm_start.tm_sec ); tm_start.tm_hour, tm_start.tm_min, tm_start.tm_sec );
if( p_evt->psz_short_description || p_evt->psz_description ) if( p_evt->psz_short_description || p_evt->psz_description )
InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d) - %s", InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d) - %s %s",
p_evt->psz_name, p_evt->psz_name,
p_evt->i_duration/60/60, (p_evt->i_duration/60)%60, p_evt->i_duration/60/60, (p_evt->i_duration/60)%60,
p_evt->psz_short_description ? p_evt->psz_short_description : p_evt->psz_description ); p_evt->psz_short_description ? p_evt->psz_short_description : "" ,
p_evt->psz_description ? p_evt->psz_description : "" );
else else
InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d)", InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d)",
p_evt->psz_name, p_evt->psz_name,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment