]> git.sesse.net Git - vlc/blobdiff - modules/misc/freetype.c
* modules/misc/freetype.c: optimized subtitles rendering a bit.
[vlc] / modules / misc / freetype.c
index 63166b7b10929a6cd85ff06d5b37842be0c489ae..607ec4e0af0660c6ca0763aabf879836cb94630a 100644 (file)
@@ -2,7 +2,7 @@
  * freetype.c : Put text on the video, using freetype2
  *****************************************************************************
  * Copyright (C) 2002, 2003 VideoLAN
- * $Id: freetype.c,v 1.38 2003/12/08 17:48:13 yoann Exp $
+ * $Id$
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -92,10 +92,11 @@ static line_desc_t *NewLine( byte_t * );
  * Module descriptor
  *****************************************************************************/
 #define FONT_TEXT N_("Font")
-#define FONT_LONGTEXT N_("Filename of Font")
+#define FONT_LONGTEXT N_("Font filename")
 #define FONTSIZE_TEXT N_("Font size in pixels")
-#define FONTSIZE_LONGTEXT N_("The size of the fonts used by the osd module. If \
- set to something different than 0 this option will override the relative font size " )
+#define FONTSIZE_LONGTEXT N_("The size of the fonts used by the osd module. " \
+    "If set to something different than 0 this option will override the " \
+    "relative font size " )
 #define FONTSIZER_TEXT N_("Font size")
 #define FONTSIZER_LONGTEXT N_("The size of the fonts used by the osd module" )
 
@@ -104,13 +105,16 @@ static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
                                    N_("Large"), N_("Larger") };
 
 vlc_module_begin();
-    add_category_hint( N_("Fonts"), NULL, VLC_FALSE );
-    add_file( "freetype-font", DEFAULT_FONT, NULL, FONT_TEXT, FONT_LONGTEXT, VLC_FALSE );
-    add_integer( "freetype-fontsize", 0, NULL, FONTSIZE_TEXT, FONTSIZE_LONGTEXT, VLC_TRUE );
-    add_integer( "freetype-rel-fontsize", 16, NULL, FONTSIZER_TEXT, FONTSIZER_LONGTEXT,
-                 VLC_FALSE );
-        change_integer_list( pi_sizes, ppsz_sizes_text, 0 );
     set_description( _("freetype2 font renderer") );
+
+    add_file( "freetype-font", DEFAULT_FONT, NULL, FONT_TEXT, FONT_LONGTEXT,
+              VLC_FALSE );
+    add_integer( "freetype-fontsize", 0, NULL, FONTSIZE_TEXT,
+                 FONTSIZE_LONGTEXT, VLC_TRUE );
+    add_integer( "freetype-rel-fontsize", 16, NULL, FONTSIZER_TEXT,
+                 FONTSIZER_LONGTEXT, VLC_FALSE );
+        change_integer_list( pi_sizes, ppsz_sizes_text, 0 );
+
     set_capability( "text renderer", 100 );
     add_shortcut( "text" );
     set_callbacks( Create, Destroy );
@@ -334,26 +338,25 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic,
  * Draw a string on a i420 (or similar) picture
  */
 static void RenderI420( vout_thread_t *p_vout, picture_t *p_pic,
-                    const subpicture_t *p_subpic )
+                        const subpicture_t *p_subpic )
 {
     subpicture_sys_t *p_string = p_subpic->p_sys;
     int i_plane, x, y, pen_x, pen_y;
     unsigned int i;
     line_desc_t *p_line;
 
-    for( p_line = p_subpic->p_sys->p_lines; p_line != NULL; p_line = p_line->p_next )
+    for( p_line = p_subpic->p_sys->p_lines; p_line != NULL;
+         p_line = p_line->p_next )
     {
-        for( i_plane = 0 ; i_plane < p_pic->i_planes ; i_plane++ )
+        for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
         {
-            uint8_t *p_in;
+            uint8_t *p_in = p_pic->p[ i_plane ].p_pixels;
             int i_pic_pitch = p_pic->p[ i_plane ].i_pitch;
             int i_pic_width = p_pic->p[ i_plane ].i_visible_pitch;
 
-            p_in = p_pic->p[ i_plane ].p_pixels;
-
-            if ( i_plane == 0 )
+            if( i_plane == 0 )
             {
-                if ( p_string->i_flags & OSD_ALIGN_BOTTOM )
+                if( p_string->i_flags & OSD_ALIGN_BOTTOM )
                 {
                     pen_y = p_pic->p[ i_plane ].i_lines - p_string->i_height -
                         p_string->i_y_margin;
@@ -363,12 +366,13 @@ static void RenderI420( vout_thread_t *p_vout, picture_t *p_pic,
                     pen_y = p_string->i_y_margin;
                 }
                 pen_y += p_vout->p_text_renderer_data->p_face->size->metrics.ascender >> 6;
-                if ( p_string->i_flags & OSD_ALIGN_RIGHT )
+
+                if( p_string->i_flags & OSD_ALIGN_RIGHT )
                 {
                     pen_x = i_pic_width - p_line->i_width
                         - p_string->i_x_margin;
                 }
-                else if ( p_string->i_flags & OSD_ALIGN_LEFT )
+                else if( p_string->i_flags & OSD_ALIGN_LEFT )
                 {
                     pen_x = p_string->i_x_margin;
                 }
@@ -381,30 +385,49 @@ static void RenderI420( vout_thread_t *p_vout, picture_t *p_pic,
                 for( i = 0; p_line->pp_glyphs[i] != NULL; i++ )
                 {
                     FT_BitmapGlyph p_glyph = p_line->pp_glyphs[ i ];
-#define alpha p_vout->p_text_renderer_data->pi_gamma[ p_glyph->bitmap.buffer[ x + y * p_glyph->bitmap.width ] ]
-#define pixel p_in[ ( p_line->p_glyph_pos[ i ].y + pen_y + y - p_glyph->top ) * i_pic_pitch + x + pen_x + p_line->p_glyph_pos[ i ].x + p_glyph->left ]
-                    for(y = 0; y < p_glyph->bitmap.rows; y++ )
+                    int i_alpha_offset = -1;
+                    int i_offset = ( p_line->p_glyph_pos[ i ].y + pen_y -
+                                     p_glyph->top ) * i_pic_pitch +
+                                   p_line->p_glyph_pos[ i ].x + p_glyph->left;
+
+#define alpha p_vout->p_text_renderer_data->pi_gamma[ p_glyph->bitmap.buffer[ i_alpha_offset ] ]
+#define pixel p_in[ i_offset + x + pen_x ]
+
+                    for( y = 0; y < p_glyph->bitmap.rows; y++ )
                     {
                         for( x = 0; x < p_glyph->bitmap.width; x++ )
                         {
-                            pen_y--;
+                            i_alpha_offset++;
+                            if( alpha == 0 ) continue;
+
+                            pen_y--; i_offset -= i_pic_pitch;
                             pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 );
-                            pen_y++; pen_x--;
+                            pen_y++; i_offset += i_pic_pitch; pen_x--;
                             pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 );
                             pen_x += 2;
                             pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 );
-                            pen_y++; pen_x--;
+                            pen_y++; i_offset += i_pic_pitch; pen_x--;
                             pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 );
-                            pen_y--;
+                            pen_y--; i_offset -= i_pic_pitch;
                         }
+                        i_offset += i_pic_pitch;
                     }
-                    for(y = 0; y < p_glyph->bitmap.rows; y++ )
+
+                    i_alpha_offset = -1;
+                    i_offset = ( p_line->p_glyph_pos[ i ].y + pen_y -
+                                 p_glyph->top ) * i_pic_pitch +
+                               p_line->p_glyph_pos[ i ].x + p_glyph->left;
+                    for( y = 0; y < p_glyph->bitmap.rows; y++ )
                     {
                         for( x = 0; x < p_glyph->bitmap.width; x++ )
                         {
+                            i_alpha_offset++;
+                            if( alpha == 0 ) continue;
+
                             pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 ) +
                                 ( 255 * alpha >> 8 );
                         }
+                        i_offset += i_pic_pitch;
                     }
 #undef alpha
 #undef pixel
@@ -414,8 +437,8 @@ static void RenderI420( vout_thread_t *p_vout, picture_t *p_pic,
             {
                 if ( p_string->i_flags & OSD_ALIGN_BOTTOM )
                 {
-                    pen_y = p_pic->p[i_plane].i_lines - ( p_string->i_height>>1) -
-                        (p_string->i_y_margin>>1);
+                    pen_y = p_pic->p[i_plane].i_lines - (p_string->i_height>>1)
+                        (p_string->i_y_margin>>1);
                 }
                 else
                 {
@@ -446,6 +469,8 @@ static void RenderI420( vout_thread_t *p_vout, picture_t *p_pic,
                     {
                         for( x = 0; x < p_glyph->bitmap.width; x+=2 )
                         {
+                            if( alpha == 0 ) continue;
+
                             pixel = ( ( pixel * ( 0xFF - alpha ) ) >> 8 ) +
                                 ( 0x80 * alpha >> 8 );
 #undef alpha
@@ -511,6 +536,8 @@ static void RenderYUY2( vout_thread_t *p_vout, picture_t *p_pic,
             {
                 for( x = 0; x < p_glyph->bitmap.width; x++ )
                 {
+                    if( alpha == 0 ) continue;
+
                     pen_y--;
                     pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 );
                     pen_y++; pen_x--;
@@ -526,6 +553,8 @@ static void RenderYUY2( vout_thread_t *p_vout, picture_t *p_pic,
             {
                 for( x = 0; x < p_glyph->bitmap.width; x++ )
                 {
+                    if( alpha == 0 ) continue;
+
                     pixel = ( ( pixel * ( 255 - alpha ) ) >> 8 ) +
                         ( 255 * alpha >> 8 );
                 }
@@ -591,6 +620,8 @@ static void RenderRV32( vout_thread_t *p_vout, picture_t *p_pic,
             {
                 for( x = 0; x < p_glyph->bitmap.width; x++ )
                 {
+                    if( alpha == 0 ) continue;
+
                     pen_y--;
                     pixel( 0 ) = ( ( pixel( 0 ) * ( 255 - alpha ) ) >> 8 );
                     pixel( 1 ) = ( ( pixel( 1 ) * ( 255 - alpha ) ) >> 8 );
@@ -614,6 +645,8 @@ static void RenderRV32( vout_thread_t *p_vout, picture_t *p_pic,
             {
                 for( x = 0; x < p_glyph->bitmap.width; x++ )
                 {
+                    if( alpha == 0 ) continue;
+
                     pixel( 0 ) = ( ( pixel( 0 ) * ( 255 - alpha ) ) >> 8 ) +
                         ( 255 * alpha >> 8 );
                     pixel( 1 ) = ( ( pixel( 1 ) * ( 255 - alpha ) ) >> 8 ) +
@@ -644,7 +677,10 @@ static subpicture_t *AddText ( vout_thread_t *p_vout, char *psz_string,
     line_desc_t  *p_line,  *p_next;
     uint32_t *p_unicode_string, i_char;
     int i_string_length;
+
+#if defined(HAVE_ICONV)
     iconv_t iconv_handle;
+#endif
 
     FT_BBox line;
     FT_BBox glyph_size;