[vlc-devel] commit: Reduced EPG OSD down to 3s and enable fade out. (Laurent Aimar )

git version control git at videolan.org
Tue Feb 2 21:44:44 CET 2010


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Feb  2 21:40:04 2010 +0100| [a8a6c4fa1934adc8251c191b4fd5c503d480cbd0] | committer: Laurent Aimar 

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a8a6c4fa1934adc8251c191b4fd5c503d480cbd0
---

 src/video_output/video_epg.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/video_output/video_epg.c b/src/video_output/video_epg.c
index 71843e0..96ae61c 100644
--- a/src/video_output/video_epg.c
+++ b/src/video_output/video_epg.c
@@ -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;




More information about the vlc-devel mailing list