freetype.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:23k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * freetype.c : Put text on the video, using freetype2
  3.  *****************************************************************************
  4.  * Copyright (C) 2002, 2003 VideoLAN
  5.  * $Id: freetype.c 9054 2004-10-24 16:37:13Z zorglub $
  6.  *
  7.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>                                      /* malloc(), free() */
  28. #include <string.h>
  29. #ifdef HAVE_LINUX_LIMITS_H
  30. #   include <linux/limits.h>
  31. #endif
  32. #include <vlc/vlc.h>
  33. #include <vlc/vout.h>
  34. #include "osd.h"
  35. #include "vlc_block.h"
  36. #include "vlc_filter.h"
  37. #include <math.h>
  38. #ifdef HAVE_ERRNO_H
  39. #   include <errno.h>
  40. #endif
  41. #include <ft2build.h>
  42. #include FT_FREETYPE_H
  43. #include FT_GLYPH_H
  44. #ifdef SYS_DARWIN
  45. #define DEFAULT_FONT "/System/Library/Fonts/LucidaGrande.dfont"
  46. #elif defined( SYS_BEOS )
  47. #define DEFAULT_FONT "/boot/beos/etc/fonts/ttfonts/Swiss721.ttf"
  48. #elif defined( WIN32 )
  49. #define DEFAULT_FONT "" /* Default font found at run-time */
  50. #else
  51. #define DEFAULT_FONT "/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
  52. #endif
  53. #if defined(HAVE_FRIBIDI)
  54. #include <fribidi/fribidi.h>
  55. #endif
  56. typedef struct line_desc_t line_desc_t;
  57. /*****************************************************************************
  58.  * Local prototypes
  59.  *****************************************************************************/
  60. static int  Create ( vlc_object_t * );
  61. static void Destroy( vlc_object_t * );
  62. static subpicture_t *RenderText( filter_t *, block_t * );
  63. static line_desc_t *NewLine( byte_t * );
  64. /*****************************************************************************
  65.  * Module descriptor
  66.  *****************************************************************************/
  67. #define FONT_TEXT N_("Font")
  68. #define FONT_LONGTEXT N_("Font filename")
  69. #define FONTSIZE_TEXT N_("Font size in pixels")
  70. #define FONTSIZE_LONGTEXT N_("The size of the fonts used by the osd module. " 
  71.     "If set to something different than 0 this option will override the " 
  72.     "relative font size " )
  73. #define FONTSIZER_TEXT N_("Font size")
  74. #define FONTSIZER_LONGTEXT N_("The size of the fonts used by the osd module" )
  75. static int   pi_sizes[] = { 20, 18, 16, 12, 6 };
  76. static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
  77.                                    N_("Large"), N_("Larger") };
  78. vlc_module_begin();
  79.     set_description( _("freetype2 font renderer") );
  80.     add_file( "freetype-font", DEFAULT_FONT, NULL, FONT_TEXT, FONT_LONGTEXT,
  81.               VLC_FALSE );
  82.     add_integer( "freetype-fontsize", 0, NULL, FONTSIZE_TEXT,
  83.                  FONTSIZE_LONGTEXT, VLC_TRUE );
  84.     add_integer( "freetype-rel-fontsize", 16, NULL, FONTSIZER_TEXT,
  85.                  FONTSIZER_LONGTEXT, VLC_FALSE );
  86.         change_integer_list( pi_sizes, ppsz_sizes_text, 0 );
  87.     set_capability( "text renderer", 100 );
  88.     add_shortcut( "text" );
  89.     set_callbacks( Create, Destroy );
  90. vlc_module_end();
  91. /**
  92.  * Private data in a subpicture. Describes a string.
  93.  */
  94. typedef struct subpicture_data_t
  95. {
  96.     int            i_width;
  97.     int            i_height;
  98.     /** The string associated with this subpicture */
  99.     byte_t        *psz_text;
  100.     line_desc_t   *p_lines;
  101. } subpicture_data_t;
  102. struct line_desc_t
  103. {
  104.     /** NULL-terminated list of glyphs making the string */
  105.     FT_BitmapGlyph *pp_glyphs;
  106.     /** list of relative positions for the glyphs */
  107.     FT_Vector      *p_glyph_pos;
  108.     int             i_height;
  109.     int             i_width;
  110.     line_desc_t    *p_next;
  111. };
  112. static void Render    ( filter_t *, subpicture_t *, subpicture_data_t * );
  113. static void FreeString( subpicture_data_t * );
  114. static void FreeLine( line_desc_t * );
  115. /*****************************************************************************
  116.  * filter_sys_t: freetype local data
  117.  *****************************************************************************
  118.  * This structure is part of the video output thread descriptor.
  119.  * It describes the freetype specific properties of an output thread.
  120.  *****************************************************************************/
  121. struct filter_sys_t
  122. {
  123.     FT_Library     p_library;   /* handle to library     */
  124.     FT_Face        p_face;      /* handle to face object */
  125.     vlc_bool_t     i_use_kerning;
  126.     uint8_t        pi_gamma[256];
  127. };
  128. /*****************************************************************************
  129.  * Create: allocates osd-text video thread output method
  130.  *****************************************************************************
  131.  * This function allocates and initializes a Clone vout method.
  132.  *****************************************************************************/
  133. static int Create( vlc_object_t *p_this )
  134. {
  135.     filter_t *p_filter = (filter_t *)p_this;
  136.     filter_sys_t *p_sys;
  137.     char *psz_fontfile = NULL;
  138.     int i, i_error;
  139.     int i_fontsize = 0;
  140.     vlc_value_t val;
  141.     /* Allocate structure */
  142.     p_sys = malloc( sizeof( filter_sys_t ) );
  143.     if( !p_sys )
  144.     {
  145.         msg_Err( p_filter, "out of memory" );
  146.         return VLC_ENOMEM;
  147.     }
  148.     p_sys->p_face = 0;
  149.     p_sys->p_library = 0;
  150.     for( i = 0; i < 256; i++ )
  151.     {
  152.         p_sys->pi_gamma[i] = (uint8_t)( pow( (double)i * 255.0f, 0.5f ) );
  153.     }
  154.     var_Create( p_filter, "freetype-font",
  155.                 VLC_VAR_STRING | VLC_VAR_DOINHERIT );
  156.     var_Create( p_filter, "freetype-fontsize",
  157.                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  158.     var_Create( p_filter, "freetype-rel-fontsize",
  159.                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  160.     /* Look what method was requested */
  161.     var_Get( p_filter, "freetype-font", &val );
  162.     psz_fontfile = val.psz_string;
  163.     if( !psz_fontfile || !*psz_fontfile )
  164.     {
  165.         if( psz_fontfile ) free( psz_fontfile );
  166.         psz_fontfile = (char *)malloc( PATH_MAX + 1 );
  167. #ifdef WIN32
  168.         GetWindowsDirectory( psz_fontfile, PATH_MAX + 1 );
  169.         strcat( psz_fontfile, "\fonts\arial.ttf" );
  170. #elif SYS_DARWIN
  171.         strcpy( psz_fontfile, DEFAULT_FONT );
  172. #else
  173.         msg_Err( p_filter, "user didn't specify a font" );
  174.         goto error;
  175. #endif
  176.     }
  177.     i_error = FT_Init_FreeType( &p_sys->p_library );
  178.     if( i_error )
  179.     {
  180.         msg_Err( p_filter, "couldn't initialize freetype" );
  181.         goto error;
  182.     }
  183.     i_error = FT_New_Face( p_sys->p_library, psz_fontfile ? psz_fontfile : "",
  184.                            0, &p_sys->p_face );
  185.     if( i_error == FT_Err_Unknown_File_Format )
  186.     {
  187.         msg_Err( p_filter, "file %s have unknown format", psz_fontfile );
  188.         goto error;
  189.     }
  190.     else if( i_error )
  191.     {
  192.         msg_Err( p_filter, "failed to load font file %s", psz_fontfile );
  193.         goto error;
  194.     }
  195.     i_error = FT_Select_Charmap( p_sys->p_face, ft_encoding_unicode );
  196.     if( i_error )
  197.     {
  198.         msg_Err( p_filter, "Font has no unicode translation table" );
  199.         goto error;
  200.     }
  201.     p_sys->i_use_kerning = FT_HAS_KERNING( p_sys->p_face );
  202.     var_Get( p_filter, "freetype-fontsize", &val );
  203.     if( val.i_int )
  204.     {
  205.         i_fontsize = val.i_int;
  206.     }
  207.     else
  208.     {
  209.         var_Get( p_filter, "freetype-rel-fontsize", &val );
  210.         i_fontsize = (int)p_filter->fmt_out.video.i_height / val.i_int;
  211.     }
  212.     if( i_fontsize <= 0 )
  213.     {
  214.         msg_Warn( p_filter, "Invalid fontsize, using 12" );
  215.         i_fontsize = 12;
  216.     }
  217.     msg_Dbg( p_filter, "Using fontsize: %i", i_fontsize);
  218.     i_error = FT_Set_Pixel_Sizes( p_sys->p_face, 0, i_fontsize );
  219.     if( i_error )
  220.     {
  221.         msg_Err( p_filter, "couldn't set font size to %d", i_fontsize );
  222.         goto error;
  223.     }
  224.     if( psz_fontfile ) free( psz_fontfile );
  225.     p_filter->pf_render_string = RenderText;
  226.     p_filter->p_sys = p_sys;
  227.     return VLC_SUCCESS;
  228.  error:
  229.     if( p_sys->p_face ) FT_Done_Face( p_sys->p_face );
  230.     if( p_sys->p_library ) FT_Done_FreeType( p_sys->p_library );
  231.     if( psz_fontfile ) free( psz_fontfile );
  232.     free( p_sys );
  233.     return VLC_EGENERIC;
  234. }
  235. /*****************************************************************************
  236.  * Destroy: destroy Clone video thread output method
  237.  *****************************************************************************
  238.  * Clean up all data and library connections
  239.  *****************************************************************************/
  240. static void Destroy( vlc_object_t *p_this )
  241. {
  242.     filter_t *p_filter = (filter_t *)p_this;
  243.     filter_sys_t *p_sys = p_filter->p_sys;
  244.     FT_Done_Face( p_sys->p_face );
  245.     FT_Done_FreeType( p_sys->p_library );
  246.     free( p_sys );
  247. }
  248. /*****************************************************************************
  249.  * Render: place string in picture
  250.  *****************************************************************************
  251.  * This function merges the previously rendered freetype glyphs into a picture
  252.  *****************************************************************************/
  253. static void Render( filter_t *p_filter, subpicture_t *p_spu,
  254.                     subpicture_data_t *p_string )
  255. {
  256.     filter_sys_t *p_sys = p_filter->p_sys;
  257.     line_desc_t *p_line;
  258.     uint8_t *p_y, *p_u, *p_v, *p_a;
  259.     video_format_t fmt;
  260.     int i, x, y, i_pitch;
  261.     /* Create a new subpicture region */
  262.     memset( &fmt, 0, sizeof(video_format_t) );
  263.     fmt.i_chroma = VLC_FOURCC('Y','U','V','A');
  264.     fmt.i_aspect = VOUT_ASPECT_FACTOR;
  265.     fmt.i_width = fmt.i_visible_width = p_string->i_width + 2;
  266.     fmt.i_height = fmt.i_visible_height = p_string->i_height + 2;
  267.     fmt.i_x_offset = fmt.i_y_offset = 0;
  268.     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
  269.     if( !p_spu->p_region )
  270.     {
  271.         msg_Err( p_filter, "cannot allocate SPU region" );
  272.         return;
  273.     }
  274.     p_spu->p_region->i_x = p_spu->p_region->i_y = 0;
  275.     p_y = p_spu->p_region->picture.Y_PIXELS;
  276.     p_u = p_spu->p_region->picture.U_PIXELS;
  277.     p_v = p_spu->p_region->picture.V_PIXELS;
  278.     p_a = p_spu->p_region->picture.A_PIXELS;
  279.     i_pitch = p_spu->p_region->picture.Y_PITCH;
  280.     /* Initialize the region pixels (only the alpha will be changed later) */
  281.     memset( p_y, 0x00, i_pitch * p_spu->p_region->fmt.i_height );
  282.     memset( p_u, 0x80, i_pitch * p_spu->p_region->fmt.i_height );
  283.     memset( p_v, 0x80, i_pitch * p_spu->p_region->fmt.i_height );
  284.     memset( p_a, 0x00, i_pitch * p_spu->p_region->fmt.i_height );
  285. #define pi_gamma p_sys->pi_gamma
  286.     for( p_line = p_string->p_lines; p_line != NULL; p_line = p_line->p_next )
  287.     {
  288.         int i_glyph_tmax = 0;
  289.         int i_bitmap_offset, i_offset;
  290.         for( i = 0; p_line->pp_glyphs[i] != NULL; i++ )
  291.         {
  292.             FT_BitmapGlyph p_glyph = p_line->pp_glyphs[ i ];
  293.             i_glyph_tmax = __MAX( i_glyph_tmax, p_glyph->top );
  294.         }
  295.         for( i = 0; p_line->pp_glyphs[i] != NULL; i++ )
  296.         {
  297.             FT_BitmapGlyph p_glyph = p_line->pp_glyphs[ i ];
  298.             i_offset = ( p_line->p_glyph_pos[ i ].y +
  299.                 i_glyph_tmax - p_glyph->top + 1 ) *
  300.                 i_pitch + p_line->p_glyph_pos[ i ].x + p_glyph->left + 1;
  301.             for( y = 0, i_bitmap_offset = 0; y < p_glyph->bitmap.rows; y++ )
  302.             {
  303.                 for( x = 0; x < p_glyph->bitmap.width; x++, i_bitmap_offset++ )
  304.                 {
  305.                     if( !pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]] )
  306.                         continue;
  307.                     i_offset -= i_pitch;
  308.                     p_a[i_offset + x] = ((uint16_t)p_a[i_offset + x] +
  309.                       pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]])/2;
  310.                     i_offset += i_pitch; x--;
  311.                     p_a[i_offset + x] = ((uint16_t)p_a[i_offset + x] +
  312.                       pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]])/2;
  313.                     x += 2;
  314.                     p_a[i_offset + x] = ((uint16_t)p_a[i_offset + x] +
  315.                       pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]])/2;
  316.                     i_offset += i_pitch; x--;
  317.                     p_a[i_offset + x] = ((uint16_t)p_a[i_offset + x] +
  318.                       pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]])/2;
  319.                     i_offset -= i_pitch;
  320.                 }
  321.                 i_offset += i_pitch;
  322.             }
  323.             i_offset = ( p_line->p_glyph_pos[ i ].y +
  324.                 i_glyph_tmax - p_glyph->top + 1 ) *
  325.                 i_pitch + p_line->p_glyph_pos[ i ].x + p_glyph->left + 1;
  326.             for( y = 0, i_bitmap_offset = 0; y < p_glyph->bitmap.rows; y++ )
  327.             {
  328.                for( x = 0; x < p_glyph->bitmap.width; x++, i_bitmap_offset++ )
  329.                {
  330.                    p_y[i_offset + x] =
  331.                        pi_gamma[p_glyph->bitmap.buffer[i_bitmap_offset]];
  332.                }
  333.                i_offset += i_pitch;
  334.             }
  335. #undef pi_gamma
  336.         }
  337.     }
  338. }
  339. /**
  340.  * This function receives a string and creates a subpicture for it. It
  341.  * also calculates the size needed for this string, and renders the
  342.  * needed glyphs into memory. It is used as pf_add_string callback in
  343.  * the vout method by this module
  344.  */
  345. static subpicture_t *RenderText( filter_t *p_filter, block_t *p_block )
  346. {
  347.     filter_sys_t *p_sys = p_filter->p_sys;
  348.     subpicture_t *p_subpic = 0;
  349.     subpicture_data_t *p_string = 0;
  350.     line_desc_t  *p_line = 0, *p_next = 0, *p_prev = 0;
  351.     int i, i_pen_y, i_pen_x, i_error, i_glyph_index, i_previous;
  352.     uint32_t *psz_unicode, *psz_unicode_orig = 0, i_char, *psz_line_start;
  353.     int i_string_length;
  354.     char *psz_string;
  355.     vlc_iconv_t iconv_handle = (vlc_iconv_t)(-1);
  356.     FT_BBox line;
  357.     FT_BBox glyph_size;
  358.     FT_Vector result;
  359.     FT_Glyph tmp_glyph;
  360.     /* Sanity check */
  361.     if( !p_block ) return NULL;
  362.     psz_string = p_block->p_buffer;
  363.     if( !psz_string || !*psz_string ) goto error;
  364.     result.x = 0;
  365.     result.y = 0;
  366.     line.xMin = 0;
  367.     line.xMax = 0;
  368.     line.yMin = 0;
  369.     line.yMax = 0;
  370.     /* Create and initialize a subpicture */
  371.     p_subpic = p_filter->pf_sub_buffer_new( p_filter );
  372.     if( !p_subpic ) goto error;
  373.     p_subpic->i_start = p_block->i_pts;
  374.     p_subpic->i_stop = p_block->i_pts + p_block->i_length;
  375.     p_subpic->b_ephemer = (p_block->i_length == 0);
  376.     p_subpic->b_absolute = VLC_FALSE;
  377.     /* Create and initialize private data for the subpicture */
  378.     p_string = malloc( sizeof(subpicture_data_t) );
  379.     if( !p_string )
  380.     {
  381.         msg_Err( p_filter, "out of memory" );
  382.         goto error;
  383.     }
  384.     p_string->p_lines = 0;
  385.     p_string->psz_text = strdup( psz_string );
  386.     psz_unicode = psz_unicode_orig =
  387.         malloc( ( strlen(psz_string) + 1 ) * sizeof(uint32_t) );
  388.     if( psz_unicode == NULL )
  389.     {
  390.         msg_Err( p_filter, "out of memory" );
  391.         goto error;
  392.     }
  393. #if defined(WORDS_BIGENDIAN)
  394.     iconv_handle = vlc_iconv_open( "UCS-4BE", "UTF-8" );
  395. #else
  396.     iconv_handle = vlc_iconv_open( "UCS-4LE", "UTF-8" );
  397. #endif
  398.     if( iconv_handle == (vlc_iconv_t)-1 )
  399.     {
  400.         msg_Warn( p_filter, "unable to do convertion" );
  401.         goto error;
  402.     }
  403.     {
  404.         char *p_in_buffer, *p_out_buffer;
  405.         size_t i_in_bytes, i_out_bytes, i_out_bytes_left, i_ret;
  406.         i_in_bytes = strlen( psz_string );
  407.         i_out_bytes = i_in_bytes * sizeof( uint32_t );
  408.         i_out_bytes_left = i_out_bytes;
  409.         p_in_buffer = psz_string;
  410.         p_out_buffer = (char *)psz_unicode;
  411.         i_ret = vlc_iconv( iconv_handle, &p_in_buffer, &i_in_bytes,
  412.                            &p_out_buffer, &i_out_bytes_left );
  413.         vlc_iconv_close( iconv_handle );
  414.         if( i_in_bytes )
  415.         {
  416.             msg_Warn( p_filter, "failed to convert string to unicode (%s), "
  417.                       "bytes left %d", strerror(errno), i_in_bytes );
  418.             goto error;
  419.         }
  420.         *(uint32_t*)p_out_buffer = 0;
  421.         i_string_length = (i_out_bytes - i_out_bytes_left) / sizeof(uint32_t);
  422.     }
  423. #if defined(HAVE_FRIBIDI)
  424.     {
  425.         uint32_t *p_fribidi_string;
  426.         FriBidiCharType base_dir = FRIBIDI_TYPE_ON;
  427.         p_fribidi_string = malloc( (i_string_length + 1) * sizeof(uint32_t) );
  428.         fribidi_log2vis( (FriBidiChar*)psz_unicode, i_string_length,
  429.                          &base_dir, (FriBidiChar*)p_fribidi_string, 0, 0, 0 );
  430.         free( psz_unicode_orig );
  431.         psz_unicode = psz_unicode_orig = p_fribidi_string;
  432.         p_fribidi_string[ i_string_length ] = 0;
  433.     }
  434. #endif
  435.     /* Calculate relative glyph positions and a bounding box for the
  436.      * entire string */
  437.     p_line = NewLine( psz_string );
  438.     if( p_line == NULL )
  439.     {
  440.         msg_Err( p_filter, "out of memory" );
  441.         goto error;
  442.     }
  443.     p_string->p_lines = p_line;
  444.     i_pen_x = 0;
  445.     i_pen_y = 0;
  446.     i_previous = 0;
  447.     i = 0;
  448.     psz_line_start = psz_unicode;
  449. #define face p_sys->p_face
  450. #define glyph face->glyph
  451.     while( *psz_unicode )
  452.     {
  453.         i_char = *psz_unicode++;
  454.         if( i_char == 'r' ) /* ignore CR chars wherever they may be */
  455.         {
  456.             continue;
  457.         }
  458.         if( i_char == 'n' )
  459.         {
  460.             psz_line_start = psz_unicode;
  461.             p_next = NewLine( psz_string );
  462.             if( p_next == NULL )
  463.             {
  464.                 msg_Err( p_filter, "out of memory" );
  465.                 goto error;
  466.             }
  467.             p_line->p_next = p_next;
  468.             p_line->i_width = line.xMax;
  469.             p_line->i_height = face->size->metrics.height >> 6;
  470.             p_line->pp_glyphs[ i ] = NULL;
  471.             p_prev = p_line;
  472.             p_line = p_next;
  473.             result.x = __MAX( result.x, line.xMax );
  474.             result.y += face->size->metrics.height >> 6;
  475.             i_pen_x = 0;
  476.             i_previous = 0;
  477.             line.xMin = 0;
  478.             line.xMax = 0;
  479.             line.yMin = 0;
  480.             line.yMax = 0;
  481.             i_pen_y += face->size->metrics.height >> 6;
  482. #if 0
  483.             msg_Dbg( p_filter, "Creating new line, i is %d", i );
  484. #endif
  485.             i = 0;
  486.             continue;
  487.         }
  488.         i_glyph_index = FT_Get_Char_Index( face, i_char );
  489.         if( p_sys->i_use_kerning && i_glyph_index
  490.             && i_previous )
  491.         {
  492.             FT_Vector delta;
  493.             FT_Get_Kerning( face, i_previous, i_glyph_index,
  494.                             ft_kerning_default, &delta );
  495.             i_pen_x += delta.x >> 6;
  496.         }
  497.         p_line->p_glyph_pos[ i ].x = i_pen_x;
  498.         p_line->p_glyph_pos[ i ].y = i_pen_y;
  499.         i_error = FT_Load_Glyph( face, i_glyph_index, FT_LOAD_DEFAULT );
  500.         if( i_error )
  501.         {
  502.             msg_Err( p_filter, "FT_Load_Glyph returned %d", i_error );
  503.             goto error;
  504.         }
  505.         i_error = FT_Get_Glyph( glyph, &tmp_glyph );
  506.         if( i_error )
  507.         {
  508.             msg_Err( p_filter, "FT_Get_Glyph returned %d", i_error );
  509.             goto error;
  510.         }
  511.         FT_Glyph_Get_CBox( tmp_glyph, ft_glyph_bbox_pixels, &glyph_size );
  512.         i_error = FT_Glyph_To_Bitmap( &tmp_glyph, ft_render_mode_normal,
  513.                                       NULL, 1 );
  514.         if( i_error ) continue;
  515.         p_line->pp_glyphs[ i ] = (FT_BitmapGlyph)tmp_glyph;
  516.         /* Do rest */
  517.         line.xMax = p_line->p_glyph_pos[i].x + glyph_size.xMax - glyph_size.xMin + ((FT_BitmapGlyph)tmp_glyph)->left;
  518.         if( line.xMax > p_filter->fmt_out.video.i_visible_width - 20 )
  519.         {
  520.             p_line->pp_glyphs[ i ] = NULL;
  521.             FreeLine( p_line );
  522.             p_line = NewLine( psz_string );
  523.             if( p_prev )
  524.             {
  525.                 p_prev->p_next = p_line;
  526.             }
  527.             else
  528.             {
  529.                 p_string->p_lines = p_line;
  530.             }
  531.             while( psz_unicode > psz_line_start && *psz_unicode != ' ' )
  532.             {
  533.                 psz_unicode--;
  534.             }
  535.             if( psz_unicode == psz_line_start )
  536.             {
  537.                 msg_Warn( p_filter, "unbreakable string" );
  538.                 goto error;
  539.             }
  540.             else
  541.             {
  542.                 *psz_unicode = 'n';
  543.             }
  544.             psz_unicode = psz_line_start;
  545.             i_pen_x = 0;
  546.             i_previous = 0;
  547.             line.xMin = 0;
  548.             line.xMax = 0;
  549.             line.yMin = 0;
  550.             line.yMax = 0;
  551.             i = 0;
  552.             continue;
  553.         }
  554.         line.yMax = __MAX( line.yMax, glyph_size.yMax );
  555.         line.yMin = __MIN( line.yMin, glyph_size.yMin );
  556.         i_previous = i_glyph_index;
  557.         i_pen_x += glyph->advance.x >> 6;
  558.         i++;
  559.     }
  560.     p_line->i_width = line.xMax;
  561.     p_line->i_height = face->size->metrics.height >> 6;
  562.     p_line->pp_glyphs[ i ] = NULL;
  563.     result.x = __MAX( result.x, line.xMax );
  564.     result.y += line.yMax - line.yMin;
  565.     p_string->i_height = result.y;
  566.     p_string->i_width = result.x;
  567. #undef face
  568. #undef glyph
  569.     Render( p_filter, p_subpic, p_string );
  570.     FreeString( p_string );
  571.     block_Release( p_block );
  572.     if( psz_unicode_orig ) free( psz_unicode_orig );
  573.     return p_subpic;
  574.  error:
  575.     FreeString( p_string );
  576.     if( p_subpic ) p_filter->pf_sub_buffer_del( p_filter, p_subpic );
  577.     block_Release( p_block );
  578.     if( psz_unicode_orig ) free( psz_unicode_orig );
  579.     return NULL;
  580. }
  581. static void FreeLine( line_desc_t *p_line )
  582. {
  583.     unsigned int i;
  584.     for( i = 0; p_line->pp_glyphs[ i ] != NULL; i++ )
  585.     {
  586.         FT_Done_Glyph( (FT_Glyph)p_line->pp_glyphs[ i ] );
  587.     }
  588.     free( p_line->pp_glyphs );
  589.     free( p_line->p_glyph_pos );
  590.     free( p_line );
  591. }
  592. static void FreeString( subpicture_data_t *p_string )
  593. {
  594.     line_desc_t *p_line, *p_next;
  595.     if( !p_string ) return;
  596.     for( p_line = p_string->p_lines; p_line != NULL; p_line = p_next )
  597.     {
  598.         p_next = p_line->p_next;
  599.         FreeLine( p_line );
  600.     }
  601.     free( p_string->psz_text );
  602.     free( p_string );
  603. }
  604. static line_desc_t *NewLine( byte_t *psz_string )
  605. {
  606.     int i_count;
  607.     line_desc_t *p_line = malloc( sizeof(line_desc_t) );
  608.     if( !p_line )
  609.     {
  610.         return NULL;
  611.     }
  612.     p_line->i_height = 0;
  613.     p_line->i_width = 0;
  614.     p_line->p_next = NULL;
  615.     /* We don't use CountUtf8Characters() here because we are not acutally
  616.      * sure the string is utf8. Better be safe than sorry. */
  617.     i_count = strlen( psz_string );
  618.     p_line->pp_glyphs = malloc( sizeof(FT_BitmapGlyph)
  619.                                 * ( i_count + 1 ) );
  620.     if( p_line->pp_glyphs == NULL )
  621.     {
  622.         free( p_line );
  623.         return NULL;
  624.     }
  625.     p_line->pp_glyphs[0] = NULL;
  626.     p_line->p_glyph_pos = malloc( sizeof( FT_Vector )
  627.                                   * i_count + 1 );
  628.     if( p_line->p_glyph_pos == NULL )
  629.     {
  630.         free( p_line->pp_glyphs );
  631.         free( p_line );
  632.         return NULL;
  633.     }
  634.     return p_line;
  635. }