]> git.sesse.net Git - vlc/commitdiff
Reduced EPG OSD down to 3s and enable fade out.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 2 Feb 2010 20:40:04 +0000 (21:40 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 2 Feb 2010 20:40:04 +0000 (21:40 +0100)
src/video_output/video_epg.c

index 71843e0029353d169f0fb70e937c2a74b294dadf..96ae61c0a02c96ca6b611283ad1b819aed4bfd71 100644 (file)
@@ -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;