]> git.sesse.net Git - vlc/blob - modules/misc/freetype.c
* modules/misc/freetype.c: handle size change properly.
[vlc] / modules / misc / freetype.c
1 /*****************************************************************************
2  * freetype.c : Put text on the video, using freetype2
3  *****************************************************************************
4  * Copyright (C) 2002 - 2005 VideoLAN
5  * $Id$
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 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <string.h>
30
31 #ifdef HAVE_LINUX_LIMITS_H
32 #   include <linux/limits.h>
33 #endif
34
35 #include <vlc/vlc.h>
36 #include <vlc/vout.h>
37 #include "osd.h"
38 #include "vlc_block.h"
39 #include "vlc_filter.h"
40
41 #include <math.h>
42
43 #ifdef HAVE_ERRNO_H
44 #   include <errno.h>
45 #endif
46
47 #include <ft2build.h>
48 #include FT_FREETYPE_H
49 #include FT_GLYPH_H
50
51 #ifdef SYS_DARWIN
52 #define DEFAULT_FONT "/System/Library/Fonts/LucidaGrande.dfont"
53 #elif defined( SYS_BEOS )
54 #define DEFAULT_FONT "/boot/beos/etc/fonts/ttfonts/Swiss721.ttf"
55 #elif defined( WIN32 )
56 #define DEFAULT_FONT "" /* Default font found at run-time */
57 #else
58 #define DEFAULT_FONT "/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
59 #endif
60
61 #if defined(HAVE_FRIBIDI)
62 #include <fribidi/fribidi.h>
63 #endif
64
65 typedef struct line_desc_t line_desc_t;
66
67 /*****************************************************************************
68  * Local prototypes
69  *****************************************************************************/
70 static int  Create ( vlc_object_t * );
71 static void Destroy( vlc_object_t * );
72
73 /* The RenderText call maps to pf_render_string, defined in vlc_filter.h */
74 static int RenderText( filter_t *, subpicture_region_t *,
75                        subpicture_region_t * );
76 static line_desc_t *NewLine( byte_t * );
77
78 static int SetFontSize( filter_t *, int );
79
80 /*****************************************************************************
81  * Module descriptor
82  *****************************************************************************/
83 #define FONT_TEXT N_("Font")
84 #define FONT_LONGTEXT N_("Font filename")
85 #define FONTSIZE_TEXT N_("Font size in pixels")
86 #define FONTSIZE_LONGTEXT N_("The size of the fonts used by the osd module. " \
87     "If set to something different than 0 this option will override the " \
88     "relative font size " )
89 #define OPACITY_TEXT N_("Opacity, 0..255")
90 #define OPACITY_LONGTEXT N_("The opacity (inverse of transparency) of " \
91     "overlay text. 0 = transparent, 255 = totally opaque. " )
92 #define COLOR_TEXT N_("Text Default Color")
93 #define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, "\
94     "hexadecimal. #000000 = all colors off, 0xFF0000 = just Red, " \
95     "0xFFFFFF = all color on [White]" )
96 #define FONTSIZER_TEXT N_("Font size")
97 #define FONTSIZER_LONGTEXT N_("The size of the fonts used by the osd module" )
98
99 static int   pi_sizes[] = { 20, 18, 16, 12, 6 };
100 static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
101                                    N_("Large"), N_("Larger") };
102 static int pi_color_values[] = {
103   0x00000000, 0x00808080, 0x00C0C0C0, 0x00FFFFFF, 0x00800000,
104   0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00808000, 0x00008000, 0x00008080, 
105   0x0000FF00, 0x00800080, 0x00000080, 0x000000FF, 0x0000FFFF }; 
106
107 static char *ppsz_color_descriptions[] = {
108   N_("Black"), N_("Gray"), N_("Silver"), N_("White"), N_("Maroon"),
109   N_("Red"), N_("Fuchsia"), N_("Yellow"), N_("Olive"), N_("Green"), N_("Teal"),
110   N_("Lime"), N_("Purple"), N_("Navy"), N_("Blue"), N_("Aqua") };
111
112 vlc_module_begin();
113     set_shortname( _("Freetype"));
114     set_description( _("Freetype2 font renderer") );
115     set_category( CAT_VIDEO );
116     set_subcategory( SUBCAT_VIDEO_TEXT );
117
118     add_file( "freetype-font", DEFAULT_FONT, NULL, FONT_TEXT, FONT_LONGTEXT,
119               VLC_FALSE );
120
121     add_integer( "freetype-fontsize", 0, NULL, FONTSIZE_TEXT,
122                  FONTSIZE_LONGTEXT, VLC_TRUE );
123
124     /* opacity valid on 0..255, with default 255 = fully opaque */
125     add_integer_with_range( "freetype-opacity", 255, 0, 255, NULL,
126         OPACITY_TEXT, OPACITY_LONGTEXT, VLC_FALSE );
127
128     /* hook to the color values list, with default 0x00ffffff = white */
129     add_integer( "freetype-color", 0x00FFFFFF, NULL, COLOR_TEXT,
130                  COLOR_LONGTEXT, VLC_TRUE );
131         change_integer_list( pi_color_values, ppsz_color_descriptions, 0 );
132
133     add_integer( "freetype-rel-fontsize", 16, NULL, FONTSIZER_TEXT,
134                  FONTSIZER_LONGTEXT, VLC_FALSE );
135         change_integer_list( pi_sizes, ppsz_sizes_text, 0 );
136
137     set_capability( "text renderer", 100 );
138     add_shortcut( "text" );
139     set_callbacks( Create, Destroy );
140 vlc_module_end();
141
142 struct line_desc_t
143 {
144     /** NULL-terminated list of glyphs making the string */
145     FT_BitmapGlyph *pp_glyphs;
146     /** list of relative positions for the glyphs */
147     FT_Vector      *p_glyph_pos;
148
149     int             i_height;
150     int             i_width;
151     int             i_red, i_green, i_blue;
152     int             i_alpha;
153
154     line_desc_t    *p_next;
155 };
156
157 static int Render( filter_t *, subpicture_region_t *, line_desc_t *, int, int);
158 static void FreeLines( line_desc_t * );
159 static void FreeLine( line_desc_t * );
160
161 /*****************************************************************************
162  * filter_sys_t: freetype local data
163  *****************************************************************************
164  * This structure is part of the video output thread descriptor.
165  * It describes the freetype specific properties of an output thread.
166  *****************************************************************************/
167 struct filter_sys_t
168 {
169     FT_Library     p_library;   /* handle to library     */
170     FT_Face        p_face;      /* handle to face object */
171     vlc_bool_t     i_use_kerning;
172     uint8_t        i_font_opacity;
173     int            i_font_color;
174     int            i_font_size;
175
176     int            i_default_font_size;
177     int            i_display_height;
178 };
179
180 /*****************************************************************************
181  * Create: allocates osd-text video thread output method
182  *****************************************************************************
183  * This function allocates and initializes a Clone vout method.
184  *****************************************************************************/
185 static int Create( vlc_object_t *p_this )
186 {
187     filter_t *p_filter = (filter_t *)p_this;
188     filter_sys_t *p_sys;
189     char *psz_fontfile = NULL;
190     int i_error;
191     vlc_value_t val;
192
193     /* Allocate structure */
194     p_filter->p_sys = p_sys = malloc( sizeof( filter_sys_t ) );
195     if( !p_sys )
196     {
197         msg_Err( p_filter, "out of memory" );
198         return VLC_ENOMEM;
199     }
200     p_sys->p_face = 0;
201     p_sys->p_library = 0;
202     p_sys->i_font_size = 0;
203     p_sys->i_display_height = 0;
204
205     var_Create( p_filter, "freetype-font",
206                 VLC_VAR_STRING | VLC_VAR_DOINHERIT );
207     var_Create( p_filter, "freetype-fontsize",
208                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
209     var_Create( p_filter, "freetype-rel-fontsize",
210                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
211     var_Create( p_filter, "freetype-opacity",
212                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
213     var_Get( p_filter, "freetype-opacity", &val );
214     p_sys->i_font_opacity = __MAX( __MIN( val.i_int, 255 ), 0 );
215     var_Create( p_filter, "freetype-color",
216                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
217     var_Get( p_filter, "freetype-color", &val );
218     p_sys->i_font_color = __MAX( __MIN( val.i_int, 0xFFFFFF ), 0 );
219
220     /* Look what method was requested */
221     var_Get( p_filter, "freetype-font", &val );
222     psz_fontfile = val.psz_string;
223     if( !psz_fontfile || !*psz_fontfile )
224     {
225         if( psz_fontfile ) free( psz_fontfile );
226         psz_fontfile = (char *)malloc( PATH_MAX + 1 );
227 #ifdef WIN32
228         GetWindowsDirectory( psz_fontfile, PATH_MAX + 1 );
229         strcat( psz_fontfile, "\\fonts\\arial.ttf" );
230 #elif SYS_DARWIN
231         strcpy( psz_fontfile, DEFAULT_FONT );
232 #else
233         msg_Err( p_filter, "user didn't specify a font" );
234         goto error;
235 #endif
236     }
237
238     i_error = FT_Init_FreeType( &p_sys->p_library );
239     if( i_error )
240     {
241         msg_Err( p_filter, "couldn't initialize freetype" );
242         goto error;
243     }
244
245     i_error = FT_New_Face( p_sys->p_library, psz_fontfile ? psz_fontfile : "",
246                            0, &p_sys->p_face );
247     if( i_error == FT_Err_Unknown_File_Format )
248     {
249         msg_Err( p_filter, "file %s have unknown format", psz_fontfile );
250         goto error;
251     }
252     else if( i_error )
253     {
254         msg_Err( p_filter, "failed to load font file %s", psz_fontfile );
255         goto error;
256     }
257
258     i_error = FT_Select_Charmap( p_sys->p_face, ft_encoding_unicode );
259     if( i_error )
260     {
261         msg_Err( p_filter, "Font has no unicode translation table" );
262         goto error;
263     }
264
265     p_sys->i_use_kerning = FT_HAS_KERNING( p_sys->p_face );
266
267     var_Get( p_filter, "freetype-fontsize", &val );
268     p_sys->i_default_font_size = val.i_int;
269     if( SetFontSize( p_filter, 0 ) != VLC_SUCCESS ) goto error;
270
271     if( psz_fontfile ) free( psz_fontfile );
272     p_filter->pf_render_text = RenderText;
273     return VLC_SUCCESS;
274
275  error:
276     if( p_sys->p_face ) FT_Done_Face( p_sys->p_face );
277     if( p_sys->p_library ) FT_Done_FreeType( p_sys->p_library );
278     if( psz_fontfile ) free( psz_fontfile );
279     free( p_sys );
280     return VLC_EGENERIC;
281 }
282
283 /*****************************************************************************
284  * Destroy: destroy Clone video thread output method
285  *****************************************************************************
286  * Clean up all data and library connections
287  *****************************************************************************/
288 static void Destroy( vlc_object_t *p_this )
289 {
290     filter_t *p_filter = (filter_t *)p_this;
291     filter_sys_t *p_sys = p_filter->p_sys;
292
293     FT_Done_Face( p_sys->p_face );
294     FT_Done_FreeType( p_sys->p_library );
295     free( p_sys );
296 }
297
298 /*****************************************************************************
299  * Render: place string in picture
300  *****************************************************************************
301  * This function merges the previously rendered freetype glyphs into a picture
302  *****************************************************************************/
303 static int Render( filter_t *p_filter, subpicture_region_t *p_region,
304                    line_desc_t *p_line, int i_width, int i_height )
305 {
306     uint8_t *p_dst;
307     video_format_t fmt;
308     int i, x, y, i_pitch;
309     uint8_t i_y; /* YUV values, derived from incoming RGB */
310     int8_t i_u, i_v;
311     subpicture_region_t *p_region_tmp;
312
313     /* Create a new subpicture region */
314     memset( &fmt, 0, sizeof(video_format_t) );
315     fmt.i_chroma = VLC_FOURCC('Y','U','V','P');
316     fmt.i_aspect = VOUT_ASPECT_FACTOR;
317     fmt.i_width = fmt.i_visible_width = i_width + 2;
318     fmt.i_height = fmt.i_visible_height = i_height + 2;
319     fmt.i_x_offset = fmt.i_y_offset = 0;
320     p_region_tmp = spu_CreateRegion( p_filter, &fmt );
321     if( !p_region_tmp )
322     {
323         msg_Err( p_filter, "cannot allocate SPU region" );
324         return VLC_EGENERIC;
325     }
326
327     p_region->fmt = p_region_tmp->fmt;
328     p_region->picture = p_region_tmp->picture;
329     free( p_region_tmp );
330
331     /* Calculate text color components */
332     i_y = (uint8_t)(( 66 * p_line->i_red  + 129 * p_line->i_green +
333                       25 * p_line->i_blue + 128) >> 8) +  16;
334     i_u = (int8_t)(( -38 * p_line->i_red  -  74 * p_line->i_green +
335                      112 * p_line->i_blue + 128) >> 8) + 128;
336     i_v = (int8_t)(( 112 * p_line->i_red  -  94 * p_line->i_green -
337                       18 * p_line->i_blue + 128) >> 8) + 128;
338
339     /* Build palette */
340     fmt.p_palette->i_entries = 256;
341     for( i = 0; i < fmt.p_palette->i_entries; i++ )
342     {
343         fmt.p_palette->palette[i][0] = i * i_y / 256;
344         fmt.p_palette->palette[i][1] = i_u;
345         fmt.p_palette->palette[i][2] = i_v;
346         fmt.p_palette->palette[i][3] = i + (255 - i) / 16;
347         fmt.p_palette->palette[i][3] =
348             (int)fmt.p_palette->palette[i][3] * (255 - p_line->i_alpha) / 255;
349     }
350     fmt.p_palette->palette[0][3] = 0;
351
352     p_dst = p_region->picture.Y_PIXELS;
353     i_pitch = p_region->picture.Y_PITCH;
354
355     /* Initialize the region pixels */
356     memset( p_dst, 0, i_pitch * p_region->fmt.i_height );
357
358     for( ; p_line != NULL; p_line = p_line->p_next )
359     {
360         int i_glyph_tmax = 0;
361         int i_bitmap_offset, i_offset;
362         for( i = 0; p_line->pp_glyphs[i] != NULL; i++ )
363         {
364             FT_BitmapGlyph p_glyph = p_line->pp_glyphs[ i ];
365             i_glyph_tmax = __MAX( i_glyph_tmax, p_glyph->top );
366         }
367
368         for( i = 0; p_line->pp_glyphs[i] != NULL; i++ )
369         {
370             FT_BitmapGlyph p_glyph = p_line->pp_glyphs[ i ];
371
372             i_offset = ( p_line->p_glyph_pos[ i ].y +
373                 i_glyph_tmax - p_glyph->top + 1 ) *
374                 i_pitch + p_line->p_glyph_pos[ i ].x + p_glyph->left + 1;
375
376             for( y = 0, i_bitmap_offset = 0; y < p_glyph->bitmap.rows; y++ )
377             {
378                 for( x = 0; x < p_glyph->bitmap.width; x++, i_bitmap_offset++ )
379                 {
380                     if( !p_glyph->bitmap.buffer[i_bitmap_offset] )
381                         continue;
382
383                     i_offset -= i_pitch;
384                     p_dst[i_offset + x] = ((uint16_t)p_dst[i_offset + x]*2 +
385                       p_glyph->bitmap.buffer[i_bitmap_offset])/3;
386                     i_offset += i_pitch; x--;
387                     p_dst[i_offset + x] = ((uint16_t)p_dst[i_offset + x]*2 +
388                       p_glyph->bitmap.buffer[i_bitmap_offset])/3;
389                     x += 2;
390                     p_dst[i_offset + x] = ((uint16_t)p_dst[i_offset + x]*2 +
391                       p_glyph->bitmap.buffer[i_bitmap_offset])/3;
392                     i_offset += i_pitch; x--;
393                     p_dst[i_offset + x] = ((uint16_t)p_dst[i_offset + x]*2 +
394                       p_glyph->bitmap.buffer[i_bitmap_offset])/3;
395                     i_offset -= i_pitch;
396                 }
397                 i_offset += i_pitch;
398             }
399
400             i_offset = ( p_line->p_glyph_pos[ i ].y +
401                 i_glyph_tmax - p_glyph->top + 1 ) *
402                 i_pitch + p_line->p_glyph_pos[ i ].x + p_glyph->left + 1;
403
404             for( y = 0, i_bitmap_offset = 0; y < p_glyph->bitmap.rows; y++ )
405             {
406                for( x = 0; x < p_glyph->bitmap.width; x++, i_bitmap_offset++ )
407                {
408                  if( p_glyph->bitmap.buffer[i_bitmap_offset] > 16 )
409                    p_dst[i_offset+x] = p_glyph->bitmap.buffer[i_bitmap_offset];
410                }
411                i_offset += i_pitch;
412             }
413         }
414     }
415
416     return VLC_SUCCESS;
417 }
418
419 /**
420  * This function renders a text subpicture region into another one.
421  * It also calculates the size needed for this string, and renders the
422  * needed glyphs into memory. It is used as pf_add_string callback in
423  * the vout method by this module
424  */
425 static int RenderText( filter_t *p_filter, subpicture_region_t *p_region_out,
426                        subpicture_region_t *p_region_in )
427 {
428     filter_sys_t *p_sys = p_filter->p_sys;
429     line_desc_t  *p_lines = 0, *p_line = 0, *p_next = 0, *p_prev = 0;
430     int i, i_pen_y, i_pen_x, i_error, i_glyph_index, i_previous;
431     uint32_t *psz_unicode, *psz_unicode_orig = 0, i_char, *psz_line_start;
432     int i_string_length;
433     char *psz_string;
434     vlc_iconv_t iconv_handle = (vlc_iconv_t)(-1);
435     int i_font_color, i_font_alpha, i_font_size, i_red, i_green, i_blue;
436
437     FT_BBox line;
438     FT_BBox glyph_size;
439     FT_Vector result;
440     FT_Glyph tmp_glyph;
441
442     /* Sanity check */
443     if( !p_region_in || !p_region_out ) return VLC_EGENERIC;
444     psz_string = p_region_in->psz_text;
445     if( !psz_string || !*psz_string ) return VLC_EGENERIC;
446
447     i_font_color = __MAX( __MIN( p_region_in->i_text_color, 0xFFFFFF ), 0 );
448     if( i_font_color == 0xFFFFFF ) i_font_color = p_sys->i_font_color;
449
450     i_font_alpha = __MAX( __MIN( p_region_in->i_text_alpha, 255 ), 0 );
451     if( !i_font_alpha ) i_font_alpha = 255 - p_sys->i_font_opacity;
452
453     i_font_size  = __MAX( __MIN( p_region_in->i_text_size, 255 ), 0 );
454     SetFontSize( p_filter, i_font_size );
455
456     i_red   = ( i_font_color & 0x00FF0000 ) >> 16;
457     i_green = ( i_font_color & 0x0000FF00 ) >>  8;
458     i_blue  =   i_font_color & 0x000000FF;
459
460     result.x =  result.y = 0;
461     line.xMin = line.xMax = line.yMin = line.yMax = 0;
462
463     psz_unicode = psz_unicode_orig =
464         malloc( ( strlen(psz_string) + 1 ) * sizeof(uint32_t) );
465     if( psz_unicode == NULL )
466     {
467         msg_Err( p_filter, "out of memory" );
468         goto error;
469     }
470 #if defined(WORDS_BIGENDIAN)
471     iconv_handle = vlc_iconv_open( "UCS-4BE", "UTF-8" );
472 #else
473     iconv_handle = vlc_iconv_open( "UCS-4LE", "UTF-8" );
474 #endif
475     if( iconv_handle == (vlc_iconv_t)-1 )
476     {
477         msg_Warn( p_filter, "unable to do conversion" );
478         goto error;
479     }
480
481     {
482         char *p_in_buffer, *p_out_buffer;
483         size_t i_in_bytes, i_out_bytes, i_out_bytes_left, i_ret;
484         i_in_bytes = strlen( psz_string );
485         i_out_bytes = i_in_bytes * sizeof( uint32_t );
486         i_out_bytes_left = i_out_bytes;
487         p_in_buffer = psz_string;
488         p_out_buffer = (char *)psz_unicode;
489         i_ret = vlc_iconv( iconv_handle, &p_in_buffer, &i_in_bytes,
490                            &p_out_buffer, &i_out_bytes_left );
491
492         vlc_iconv_close( iconv_handle );
493
494         if( i_in_bytes )
495         {
496             msg_Warn( p_filter, "failed to convert string to unicode (%s), "
497                       "bytes left %d", strerror(errno), i_in_bytes );
498             goto error;
499         }
500         *(uint32_t*)p_out_buffer = 0;
501         i_string_length = (i_out_bytes - i_out_bytes_left) / sizeof(uint32_t);
502     }
503
504 #if defined(HAVE_FRIBIDI)
505     {
506         uint32_t *p_fribidi_string;
507         FriBidiCharType base_dir = FRIBIDI_TYPE_ON;
508         p_fribidi_string = malloc( (i_string_length + 1) * sizeof(uint32_t) );
509         fribidi_log2vis( (FriBidiChar*)psz_unicode, i_string_length,
510                          &base_dir, (FriBidiChar*)p_fribidi_string, 0, 0, 0 );
511         free( psz_unicode_orig );
512         psz_unicode = psz_unicode_orig = p_fribidi_string;
513         p_fribidi_string[ i_string_length ] = 0;
514     }
515 #endif
516
517     /* Calculate relative glyph positions and a bounding box for the
518      * entire string */
519     if( !(p_line = NewLine( psz_string )) )
520     {
521         msg_Err( p_filter, "out of memory" );
522         goto error;
523     }
524     p_lines = p_line;
525     i_pen_x = i_pen_y = 0;
526     i_previous = i = 0;
527     psz_line_start = psz_unicode;
528
529 #define face p_sys->p_face
530 #define glyph face->glyph
531
532     while( *psz_unicode )
533     {
534         i_char = *psz_unicode++;
535         if( i_char == '\r' ) /* ignore CR chars wherever they may be */
536         {
537             continue;
538         }
539
540         if( i_char == '\n' )
541         {
542             psz_line_start = psz_unicode;
543             if( !(p_next = NewLine( psz_string )) )
544             {
545                 msg_Err( p_filter, "out of memory" );
546                 goto error;
547             }
548             p_line->p_next = p_next;
549             p_line->i_width = line.xMax;
550             p_line->i_height = face->size->metrics.height >> 6;
551             p_line->pp_glyphs[ i ] = NULL;
552             p_line->i_alpha = i_font_alpha;
553             p_line->i_red = i_red;
554             p_line->i_green = i_green;
555             p_line->i_blue = i_blue;
556             p_prev = p_line;
557             p_line = p_next;
558             result.x = __MAX( result.x, line.xMax );
559             result.y += face->size->metrics.height >> 6;
560             i_pen_x = 0;
561             i_previous = i = 0;
562             line.xMin = line.xMax = line.yMin = line.yMax = 0;
563             i_pen_y += face->size->metrics.height >> 6;
564 #if 0
565             msg_Dbg( p_filter, "Creating new line, i is %d", i );
566 #endif
567             continue;
568         }
569
570         i_glyph_index = FT_Get_Char_Index( face, i_char );
571         if( p_sys->i_use_kerning && i_glyph_index
572             && i_previous )
573         {
574             FT_Vector delta;
575             FT_Get_Kerning( face, i_previous, i_glyph_index,
576                             ft_kerning_default, &delta );
577             i_pen_x += delta.x >> 6;
578
579         }
580         p_line->p_glyph_pos[ i ].x = i_pen_x;
581         p_line->p_glyph_pos[ i ].y = i_pen_y;
582         i_error = FT_Load_Glyph( face, i_glyph_index, FT_LOAD_DEFAULT );
583         if( i_error )
584         {
585             msg_Err( p_filter, "FT_Load_Glyph returned %d", i_error );
586             goto error;
587         }
588         i_error = FT_Get_Glyph( glyph, &tmp_glyph );
589         if( i_error )
590         {
591             msg_Err( p_filter, "FT_Get_Glyph returned %d", i_error );
592             goto error;
593         }
594         FT_Glyph_Get_CBox( tmp_glyph, ft_glyph_bbox_pixels, &glyph_size );
595         i_error = FT_Glyph_To_Bitmap( &tmp_glyph, ft_render_mode_normal, 0, 1);
596         if( i_error ) continue;
597         p_line->pp_glyphs[ i ] = (FT_BitmapGlyph)tmp_glyph;
598
599         /* Do rest */
600         line.xMax = p_line->p_glyph_pos[i].x + glyph_size.xMax -
601             glyph_size.xMin + ((FT_BitmapGlyph)tmp_glyph)->left;
602         if( line.xMax > (int)p_filter->fmt_out.video.i_visible_width - 20 )
603         {
604             p_line->pp_glyphs[ i ] = NULL;
605             FreeLine( p_line );
606             p_line = NewLine( psz_string );
607             if( p_prev ) p_prev->p_next = p_line;
608             else p_lines = p_line;
609
610             while( psz_unicode > psz_line_start && *psz_unicode != ' ' )
611             {
612                 psz_unicode--;
613             }
614             if( psz_unicode == psz_line_start )
615             {
616                 msg_Warn( p_filter, "unbreakable string" );
617                 goto error;
618             }
619             else
620             {
621                 *psz_unicode = '\n';
622             }
623             psz_unicode = psz_line_start;
624             i_pen_x = 0;
625             i_previous = i = 0;
626             line.xMin = line.xMax = line.yMin = line.yMax = 0;
627             continue;
628         }
629         line.yMax = __MAX( line.yMax, glyph_size.yMax );
630         line.yMin = __MIN( line.yMin, glyph_size.yMin );
631
632         i_previous = i_glyph_index;
633         i_pen_x += glyph->advance.x >> 6;
634         i++;
635     }
636
637     p_line->i_width = line.xMax;
638     p_line->i_height = face->size->metrics.height >> 6;
639     p_line->pp_glyphs[ i ] = NULL;
640     p_line->i_alpha = i_font_alpha;
641     p_line->i_red = i_red;
642     p_line->i_green = i_green;
643     p_line->i_blue = i_blue;
644     result.x = __MAX( result.x, line.xMax );
645     result.y += line.yMax - line.yMin;
646
647 #undef face
648 #undef glyph
649
650     p_region_out->i_x = p_region_in->i_x;
651     p_region_out->i_y = p_region_in->i_y;
652
653     Render( p_filter, p_region_out, p_lines, result.x, result.y );
654
655     if( psz_unicode_orig ) free( psz_unicode_orig );
656     FreeLines( p_lines );
657     return VLC_SUCCESS;
658
659  error:
660     if( psz_unicode_orig ) free( psz_unicode_orig );
661     FreeLines( p_lines );
662     return VLC_EGENERIC;
663 }
664
665 static void FreeLine( line_desc_t *p_line )
666 {
667     unsigned int i;
668     for( i = 0; p_line->pp_glyphs[ i ] != NULL; i++ )
669     {
670         FT_Done_Glyph( (FT_Glyph)p_line->pp_glyphs[ i ] );
671     }
672     free( p_line->pp_glyphs );
673     free( p_line->p_glyph_pos );
674     free( p_line );
675 }
676
677 static void FreeLines( line_desc_t *p_lines )
678 {
679     line_desc_t *p_line, *p_next;
680
681     if( !p_lines ) return;
682
683     for( p_line = p_lines; p_line != NULL; p_line = p_next )
684     {
685         p_next = p_line->p_next;
686         FreeLine( p_line );
687     }
688 }
689
690 static line_desc_t *NewLine( byte_t *psz_string )
691 {
692     int i_count;
693     line_desc_t *p_line = malloc( sizeof(line_desc_t) );
694
695     if( !p_line ) return NULL;
696     p_line->i_height = 0;
697     p_line->i_width = 0;
698     p_line->p_next = NULL;
699
700     /* We don't use CountUtf8Characters() here because we are not acutally
701      * sure the string is utf8. Better be safe than sorry. */
702     i_count = strlen( psz_string );
703
704     p_line->pp_glyphs = malloc( sizeof(FT_BitmapGlyph) * ( i_count + 1 ) );
705     if( p_line->pp_glyphs == NULL )
706     {
707         free( p_line );
708         return NULL;
709     }
710     p_line->pp_glyphs[0] = NULL;
711
712     p_line->p_glyph_pos = malloc( sizeof( FT_Vector ) * i_count + 1 );
713     if( p_line->p_glyph_pos == NULL )
714     {
715         free( p_line->pp_glyphs );
716         free( p_line );
717         return NULL;
718     }
719
720     return p_line;
721 }
722
723 static int SetFontSize( filter_t *p_filter, int i_size )
724 {
725     filter_sys_t *p_sys = p_filter->p_sys;
726
727     if( i_size && i_size == p_sys->i_font_size ) return VLC_SUCCESS;
728
729     if( !i_size )
730     {
731         vlc_value_t val;
732
733         if( !p_sys->i_default_font_size &&
734             p_sys->i_display_height == (int)p_filter->fmt_out.video.i_height )
735             return VLC_SUCCESS;
736
737         if( p_sys->i_default_font_size )
738         {
739             i_size = p_sys->i_default_font_size;
740         }
741         else
742         {
743             var_Get( p_filter, "freetype-rel-fontsize", &val );
744             i_size = (int)p_filter->fmt_out.video.i_height / val.i_int;
745             p_filter->p_sys->i_display_height =
746                 p_filter->fmt_out.video.i_height;
747         }
748         if( i_size <= 0 )
749         {
750             msg_Warn( p_filter, "Invalid fontsize, using 12" );
751             i_size = 12;
752         }
753
754         msg_Dbg( p_filter, "Using fontsize: %i", i_size );
755     }
756
757     p_sys->i_font_size = i_size;
758
759     if( FT_Set_Pixel_Sizes( p_sys->p_face, 0, i_size ) )
760     {
761         msg_Err( p_filter, "couldn't set font size to %d", i_size );
762         return VLC_EGENERIC;
763     }
764
765     return VLC_SUCCESS;
766 }