vlc | branch: master | Devin Heitmueller <[email protected]> | Thu 
Dec 27 01:08:13 2012 -0500| [570dbaf62165e656c75caef077cff595d2aeb873] | 
committer: Rafaël Carré

Enable HTML renderer for closed captions

We need to use the HTML renderer if we want colors/styles to work

Signed-off-by: Rafaël Carré <[email protected]>

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

 modules/codec/cc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/cc.c b/modules/codec/cc.c
index 34777e5..369ea45 100644
--- a/modules/codec/cc.c
+++ b/modules/codec/cc.c
@@ -357,7 +357,7 @@ static subpicture_t *Convert( decoder_t *p_dec, block_t 
*p_block )
     if( b_changed )
     {
         char *psz_subtitle = Eia608Text( &p_sys->eia608, false );
-        char *psz_html     = NULL;//Eia608Text( &p_sys->eia608, true );
+        char *psz_html = Eia608Text( &p_sys->eia608, true );
         return Subtitle( p_dec, psz_subtitle, psz_html, i_pts );
     }
     return NULL;

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to