Commit a8a6c4fa authored by Laurent Aimar's avatar Laurent Aimar

Reduced EPG OSD down to 3s and enable fade out.

parent 919eb81b
......@@ -242,10 +242,10 @@ int vout_OSDEpg( vout_thread_t *p_vout, input_item_t *p_input )
p_spu->i_channel = DEFAULT_CHAN;
p_spu->i_start = i_now;
p_spu->i_stop = i_now + 10000 * INT64_C(1000);
p_spu->i_stop = i_now + 3000 * INT64_C(1000);
p_spu->b_ephemer = true;
p_spu->b_absolute = true;
p_spu->b_fade = false;
p_spu->b_fade = true;
char *psz_now_playing = input_item_GetNowPlaying( p_input );
vlc_epg_t *p_epg = NULL;
......
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