]> git.sesse.net Git - vlc/commitdiff
Compilation fixes for quartztext (thanks to Derk-Jan Hartman).
authorLaurent Aimar <fenrir@videolan.org>
Mon, 22 Sep 2008 20:23:48 +0000 (22:23 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 22 Sep 2008 20:52:47 +0000 (22:52 +0200)
modules/misc/quartztext.c

index fc741f76848de5db1d63395f56ad43997e46eac2..9521efa06815053b3373254ecc51eb25120bb5fb 100644 (file)
@@ -515,8 +515,8 @@ static ATSUStyle GetStyleFromFontStack( filter_sys_t *p_sys,
 
 static void SetupLine( filter_t *p_filter, const char *psz_text_in,
                        UniChar **psz_text_out, uint32_t *pi_runs,
-                       uint32_t **ppi_run_lengths, ft_style_t ***ppp_styles,
-                       ft_style_t *p_style )
+                       uint32_t **ppi_run_lengths, ATSUStyle **ppp_styles,
+                       ATSUStyle p_style )
 {
     uint32_t i_string_length = 0;
 
@@ -532,7 +532,7 @@ static void SetupLine( filter_t *p_filter, const char *psz_text_in,
         else
             *ppp_styles = (ATSUStyle *) malloc( *pi_runs * sizeof( ATSUStyle ) );
 
-        (*ppp_styles)[ *pi_runs - 1 ] = GetStyleFromFontStack( p_sys, &p_fonts, b_bold, b_italic, b_uline );
+        (*ppp_styles)[ *pi_runs - 1 ] = p_style;
 
         if( *ppi_run_lengths )
             *ppi_run_lengths = (uint32_t *) realloc( *ppi_run_lengths, *pi_runs * sizeof( uint32_t ) );
@@ -543,20 +543,6 @@ static void SetupLine( filter_t *p_filter, const char *psz_text_in,
     }
 }
 
-
-static void SetKaraokeLen( uint32_t i_runs, uint32_t *pi_run_lengths,
-                           uint32_t i_k_runs, uint32_t *pi_k_run_lengths )
-{
-    /* TODO */
-}
-
-static void SetupKaraoke( xml_reader_t *p_xml_reader, uint32_t *pi_k_runs,
-                          uint32_t **ppi_k_run_lengths,
-                          uint32_t **ppi_k_durations )
-{
-    /* TODO */
-}
-
 static int RenderHtml( filter_t *p_filter, subpicture_region_t *p_region_out,
                        subpicture_region_t *p_region_in )
 {