]> git.sesse.net Git - vlc/blob - modules/codec/libass.c
bfe0ab9c4dea09c572f4939f70a7d25dbce9411f
[vlc] / modules / codec / libass.c
1 /*****************************************************************************
2  * SSA/ASS subtitle decoder using libass.
3  *****************************************************************************
4  * Copyright (C) 2008-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 #   include "config.h"
30 #endif
31
32 #include <string.h>
33 #include <limits.h>
34 #include <assert.h>
35 #include <math.h>
36
37 #include <vlc_common.h>
38 #include <vlc_plugin.h>
39 #include <vlc_codec.h>
40 #include <vlc_osd.h>
41 #include <vlc_input.h>
42 #include <vlc_dialog.h>
43
44 #include <ass/ass.h>
45
46 #if defined(WIN32)
47 #   include <vlc_charset.h>
48 #endif
49
50 /* Compatibility with old libass */
51 #if !defined(LIBASS_VERSION) || LIBASS_VERSION < 0x00907010
52 #   define ASS_Renderer    ass_renderer_t
53 #   define ASS_Library     ass_library_t
54 #   define ASS_Track       ass_track_t
55 #   define ASS_Image       ass_image_t
56 #endif
57
58 /*****************************************************************************
59  * Module descriptor
60  *****************************************************************************/
61 static int  Create ( vlc_object_t * );
62 static void Destroy( vlc_object_t * );
63
64 vlc_module_begin ()
65     set_shortname( N_("Subtitles (advanced)"))
66     set_description( N_("Subtitle renderers using libass") )
67     set_capability( "decoder", 100 )
68     set_category( CAT_INPUT )
69     set_subcategory( SUBCAT_INPUT_SCODEC )
70     set_callbacks( Create, Destroy )
71 vlc_module_end ()
72
73 /*****************************************************************************
74  * Local prototypes
75  *****************************************************************************/
76 static subpicture_t *DecodeBlock( decoder_t *, block_t ** );
77 static void DestroySubpicture( subpicture_t * );
78 static void UpdateRegions( spu_t *,
79                            subpicture_t *, const video_format_t *, mtime_t );
80
81 /* Yes libass sux with threads */
82 typedef struct
83 {
84     vlc_object_t   *p_libvlc;
85
86     int             i_refcount;
87     ASS_Library     *p_library;
88     ASS_Renderer    *p_renderer;
89     video_format_t  fmt;
90 } ass_handle_t;
91 static ass_handle_t *AssHandleHold( decoder_t *p_dec );
92 static void AssHandleRelease( ass_handle_t * );
93
94 /* */
95 struct decoder_sys_t
96 {
97     mtime_t      i_max_stop;
98
99     /* decoder_sys_t is shared between decoder and spu units */
100     vlc_mutex_t  lock;
101     int          i_refcount;
102
103     /* */
104     ass_handle_t *p_ass;
105
106     /* */
107     ASS_Track    *p_track;
108 };
109 static void DecSysRelease( decoder_sys_t *p_sys );
110 static void DecSysHold( decoder_sys_t *p_sys );
111
112 struct subpicture_sys_t
113 {
114     decoder_sys_t *p_dec_sys;
115     void          *p_subs_data;
116     int           i_subs_len;
117     mtime_t       i_pts;
118 };
119
120 typedef struct
121 {
122     int x0;
123     int y0;
124     int x1;
125     int y1;
126 } rectangle_t;
127
128 static int BuildRegions( spu_t *p_spu, rectangle_t *p_region, int i_max_region, ASS_Image *p_img_list, int i_width, int i_height );
129 static void SubpictureReleaseRegions( spu_t *p_spu, subpicture_t *p_subpic );
130 static void RegionDraw( subpicture_region_t *p_region, ASS_Image *p_img );
131
132 static vlc_mutex_t libass_lock = VLC_STATIC_MUTEX;
133
134 //#define DEBUG_REGION
135
136 /*****************************************************************************
137  * Create: Open libass decoder.
138  *****************************************************************************/
139 static int Create( vlc_object_t *p_this )
140 {
141     decoder_t *p_dec = (decoder_t *)p_this;
142     decoder_sys_t *p_sys;
143     ASS_Track *p_track;
144
145     if( p_dec->fmt_in.i_codec != VLC_CODEC_SSA )
146         return VLC_EGENERIC;
147
148     p_dec->pf_decode_sub = DecodeBlock;
149
150     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
151     if( !p_sys )
152         return VLC_ENOMEM;
153
154     /* */
155     p_sys->i_max_stop = VLC_TS_INVALID;
156     p_sys->p_ass = AssHandleHold( p_dec );
157     if( !p_sys->p_ass )
158     {
159         free( p_sys );
160         return VLC_EGENERIC;
161     }
162     vlc_mutex_init( &p_sys->lock );
163     p_sys->i_refcount = 1;
164
165     /* Add a track */
166     vlc_mutex_lock( &libass_lock );
167     p_sys->p_track = p_track = ass_new_track( p_sys->p_ass->p_library );
168     if( !p_track )
169     {
170         vlc_mutex_unlock( &libass_lock );
171         DecSysRelease( p_sys );
172         return VLC_EGENERIC;
173     }
174     ass_process_codec_private( p_track, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
175     vlc_mutex_unlock( &libass_lock );
176
177     p_dec->fmt_out.i_cat = SPU_ES;
178     p_dec->fmt_out.i_codec = VLC_CODEC_RGBA;
179
180     return VLC_SUCCESS;
181 }
182
183 /*****************************************************************************
184  * Destroy: finish
185  *****************************************************************************/
186 static void Destroy( vlc_object_t *p_this )
187 {
188     decoder_t *p_dec = (decoder_t *)p_this;
189
190     DecSysRelease( p_dec->p_sys );
191 }
192
193 static void DecSysHold( decoder_sys_t *p_sys )
194 {
195     vlc_mutex_lock( &p_sys->lock );
196     p_sys->i_refcount++;
197     vlc_mutex_unlock( &p_sys->lock );
198 }
199 static void DecSysRelease( decoder_sys_t *p_sys )
200 {
201     /* */
202     vlc_mutex_lock( &p_sys->lock );
203     p_sys->i_refcount--;
204     if( p_sys->i_refcount > 0 )
205     {
206         vlc_mutex_unlock( &p_sys->lock );
207         return;
208     }
209     vlc_mutex_unlock( &p_sys->lock );
210     vlc_mutex_destroy( &p_sys->lock );
211
212     vlc_mutex_lock( &libass_lock );
213     if( p_sys->p_track )
214         ass_free_track( p_sys->p_track );
215     vlc_mutex_unlock( &libass_lock );
216
217     AssHandleRelease( p_sys->p_ass );
218     free( p_sys );
219 }
220
221 /****************************************************************************
222  * DecodeBlock:
223  ****************************************************************************/
224 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
225 {
226     decoder_sys_t *p_sys = p_dec->p_sys;
227
228     subpicture_t *p_spu = NULL;
229     block_t *p_block;
230
231     if( !pp_block || *pp_block == NULL )
232         return NULL;
233
234     p_block = *pp_block;
235     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
236     {
237         p_sys->i_max_stop = VLC_TS_INVALID;
238         block_Release( p_block );
239         return NULL;
240     }
241     *pp_block = NULL;
242
243     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '\0' )
244     {
245         block_Release( p_block );
246         return NULL;
247     }
248
249     p_spu = decoder_NewSubpicture( p_dec );
250     if( !p_spu )
251     {
252         msg_Warn( p_dec, "can't get spu buffer" );
253         block_Release( p_block );
254         return NULL;
255     }
256
257     p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
258     if( !p_spu->p_sys )
259     {
260         decoder_DeleteSubpicture( p_dec, p_spu );
261         block_Release( p_block );
262         return NULL;
263     }
264
265     p_spu->p_sys->i_subs_len = p_block->i_buffer;
266     p_spu->p_sys->p_subs_data = malloc( p_block->i_buffer );
267     if( !p_spu->p_sys->p_subs_data )
268     {
269         free( p_spu->p_sys );
270         decoder_DeleteSubpicture( p_dec, p_spu );
271         block_Release( p_block );
272         return NULL;
273     }
274     memcpy( p_spu->p_sys->p_subs_data, p_block->p_buffer,
275             p_block->i_buffer );
276     p_spu->p_sys->i_pts = p_block->i_pts;
277
278     p_spu->i_start = p_block->i_pts;
279     p_spu->i_stop = __MAX( p_sys->i_max_stop, p_block->i_pts + p_block->i_length );
280     p_spu->b_ephemer = true;
281     p_spu->b_absolute = true;
282
283     p_sys->i_max_stop = p_spu->i_stop;
284
285     vlc_mutex_lock( &libass_lock );
286     if( p_sys->p_track )
287     {
288         ass_process_chunk( p_sys->p_track, p_spu->p_sys->p_subs_data, p_spu->p_sys->i_subs_len,
289                            p_block->i_pts / 1000, p_block->i_length / 1000 );
290     }
291     vlc_mutex_unlock( &libass_lock );
292
293     p_spu->pf_update_regions = UpdateRegions;
294     p_spu->pf_destroy = DestroySubpicture;
295     p_spu->p_sys->p_dec_sys = p_sys;
296
297     DecSysHold( p_sys );
298
299     block_Release( p_block );
300
301     return p_spu;
302 }
303
304 /****************************************************************************
305  *
306  ****************************************************************************/
307 static void DestroySubpicture( subpicture_t *p_subpic )
308 {
309     DecSysRelease( p_subpic->p_sys->p_dec_sys );
310
311     free( p_subpic->p_sys->p_subs_data );
312     free( p_subpic->p_sys );
313 }
314
315 static void UpdateRegions( spu_t *p_spu, subpicture_t *p_subpic,
316                            const video_format_t *p_fmt, mtime_t i_ts )
317 {
318     decoder_sys_t *p_sys = p_subpic->p_sys->p_dec_sys;
319     ass_handle_t *p_ass = p_sys->p_ass;
320
321     video_format_t fmt;
322     bool b_fmt_changed;
323
324     vlc_mutex_lock( &libass_lock );
325
326     /* */
327     fmt = *p_fmt;
328     fmt.i_chroma = VLC_CODEC_RGBA;
329     fmt.i_width = fmt.i_visible_width;
330     fmt.i_height = fmt.i_visible_height;
331     fmt.i_bits_per_pixel = 0;
332     fmt.i_x_offset = fmt.i_y_offset = 0;
333
334     b_fmt_changed = memcmp( &fmt, &p_ass->fmt, sizeof(fmt) ) != 0;
335     if( b_fmt_changed )
336     {
337         ass_set_frame_size( p_ass->p_renderer, fmt.i_width, fmt.i_height );
338 #if defined( LIBASS_VERSION ) && LIBASS_VERSION >= 0x00907000
339     ass_set_aspect_ratio( p_ass->p_renderer, 1.0, 1.0 ); // TODO ?
340 #else
341     ass_set_aspect_ratio( p_ass->p_renderer, 1.0 ); // TODO ?
342 #endif
343
344         p_ass->fmt = fmt;
345     }
346
347     /* */
348     const mtime_t i_stream_date = p_subpic->p_sys->i_pts + (i_ts - p_subpic->i_start);
349     int i_changed;
350     ASS_Image *p_img = ass_render_frame( p_ass->p_renderer, p_sys->p_track,
351                                          i_stream_date/1000, &i_changed );
352
353     if( !i_changed && !b_fmt_changed &&
354         (p_img != NULL) == (p_subpic->p_region != NULL) )
355     {
356         vlc_mutex_unlock( &libass_lock );
357         return;
358     }
359
360     /* */
361     p_subpic->i_original_picture_height = fmt.i_height;
362     p_subpic->i_original_picture_width = fmt.i_width;
363     SubpictureReleaseRegions( p_spu, p_subpic );
364
365     /* XXX to improve efficiency we merge regions that are close minimizing
366      * the lost surface.
367      * libass tends to create a lot of small regions and thus spu engine
368      * reinstanciate a lot the scaler, and as we do not support subpel blending
369      * it looks ugly (text unaligned).
370      */
371     const int i_max_region = 4;
372     rectangle_t region[i_max_region];
373     const int i_region = BuildRegions( p_spu, region, i_max_region, p_img, fmt.i_width, fmt.i_height );
374
375     if( i_region <= 0 )
376     {
377         vlc_mutex_unlock( &libass_lock );
378         return;
379     }
380
381     /* Allocate the regions and draw them */
382     subpicture_region_t *pp_region[i_max_region];
383     subpicture_region_t **pp_region_last = &p_subpic->p_region;
384
385     for( int i = 0; i < i_region; i++ )
386     {
387         subpicture_region_t *r;
388         video_format_t fmt_region;
389
390         /* */
391         fmt_region = fmt;
392         fmt_region.i_width =
393         fmt_region.i_visible_width  = region[i].x1 - region[i].x0;
394         fmt_region.i_height =
395         fmt_region.i_visible_height = region[i].y1 - region[i].y0;
396
397         pp_region[i] = r = subpicture_region_New( &fmt_region );
398         if( !r )
399             break;
400         r->i_x = region[i].x0;
401         r->i_y = region[i].y0;
402         r->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
403
404         /* */
405         RegionDraw( r, p_img );
406
407         /* */
408         *pp_region_last = r;
409         pp_region_last = &r->p_next;
410     }
411     vlc_mutex_unlock( &libass_lock );
412 }
413
414 static rectangle_t r_create( int x0, int y0, int x1, int y1 )
415 {
416     rectangle_t r = { x0, y0, x1, y1 };
417     return r;
418 }
419 static rectangle_t r_img( const ASS_Image *p_img )
420 {
421     return r_create( p_img->dst_x, p_img->dst_y, p_img->dst_x+p_img->w, p_img->dst_y+p_img->h );
422 }
423 static void r_add( rectangle_t *r, const rectangle_t *n )
424 {
425     r->x0 = __MIN( r->x0, n->x0 );
426     r->y0 = __MIN( r->y0, n->y0 );
427     r->x1 = __MAX( r->x1, n->x1 );
428     r->y1 = __MAX( r->y1, n->y1 );
429 }
430 static int r_surface( const rectangle_t *r )
431 {
432     return (r->x1-r->x0) * (r->y1-r->y0);
433 }
434 static bool r_overlap( const rectangle_t *a, const rectangle_t *b, int i_dx, int i_dy )
435 {
436     return  __MAX(a->x0-i_dx, b->x0) < __MIN( a->x1+i_dx, b->x1 ) &&
437             __MAX(a->y0-i_dy, b->y0) < __MIN( a->y1+i_dy, b->y1 );
438 }
439
440 static int BuildRegions( spu_t *p_spu, rectangle_t *p_region, int i_max_region, ASS_Image *p_img_list, int i_width, int i_height )
441 {
442     ASS_Image *p_tmp;
443     int i_count;
444
445     VLC_UNUSED(p_spu);
446
447 #ifdef DEBUG_REGION
448     int64_t i_ck_start = mdate();
449 #endif
450
451     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next )
452         i_count++;
453     if( i_count <= 0 )
454         return 0;
455
456     ASS_Image **pp_img = calloc( i_count, sizeof(*pp_img) );
457     if( !pp_img )
458         return 0;
459
460     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next, i_count++ )
461         pp_img[i_count] = p_tmp;
462
463     /* */
464     const int i_w_inc = __MAX( ( i_width + 49 ) / 50, 32 );
465     const int i_h_inc = __MAX( ( i_height + 99 ) / 100, 32 );
466     int i_maxh = i_w_inc;
467     int i_maxw = i_h_inc;
468     int i_region;
469     rectangle_t region[i_max_region+1];
470
471     i_region = 0;
472     for( int i_used = 0; i_used < i_count; )
473     {
474         int n;
475         for( n = 0; n < i_count; n++ )
476         {
477             if( pp_img[n] )
478                 break;
479         }
480         assert( i_region < i_max_region + 1 );
481         region[i_region++] = r_img( pp_img[n] );
482         pp_img[n] = NULL; i_used++;
483
484         bool b_ok;
485         do {
486             b_ok = false;
487             for( n = 0; n < i_count; n++ )
488             {
489                 ASS_Image *p_img = pp_img[n];
490                 if( !p_img )
491                     continue;
492                 rectangle_t r = r_img( p_img );
493
494                 int k;
495                 int i_best = -1;
496                 int i_best_s = INT_MAX;
497                 for( k = 0; k < i_region; k++ )
498                 {
499                     if( !r_overlap( &region[k], &r, i_maxw, i_maxh ) )
500                         continue;
501                     int s = r_surface( &r );
502                     if( s < i_best_s )
503                     {
504                         i_best_s = s;
505                         i_best = k;
506                     }
507                 }
508                 if( i_best >= 0 )
509                 {
510                     r_add( &region[i_best], &r );
511                     pp_img[n] = NULL; i_used++;
512                     b_ok = true;
513                 }
514             }
515         } while( b_ok );
516
517         if( i_region > i_max_region )
518         {
519             int i_best_i = -1;
520             int i_best_j = -1;
521             int i_best_ds = INT_MAX;
522
523             /* merge best */
524             for( int i = 0; i < i_region; i++ )
525             {
526                 for( int j = i+1; j < i_region; j++ )
527                 {
528                     rectangle_t n = region[i];
529                     r_add( &n, &region[j] );
530                     int ds = r_surface( &n ) - r_surface( &region[i] ) - r_surface( &region[j] );
531
532                     if( ds < i_best_ds )
533                     {
534                         i_best_i = i;
535                         i_best_j = j;
536                         i_best_ds = ds;
537                     }
538                 }
539             }
540 #ifdef DEBUG_REGION
541             msg_Err( p_spu, "Merging %d and %d", i_best_i, i_best_j );
542 #endif
543             r_add( &region[i_best_i], &region[i_best_j] );
544
545             if( i_best_j+1 < i_region )
546                 memmove( &region[i_best_j], &region[i_best_j+1], sizeof(*region) * ( i_region - (i_best_j+1)  ) );
547             i_region--;
548         }
549     }
550
551     /* */
552     for( int n = 0; n < i_region; n++ )
553         p_region[n] = region[n];
554
555 #ifdef DEBUG_REGION
556     int64_t i_ck_time = mdate() - i_ck_start;
557     msg_Err( p_spu, "ASS: %d objects merged into %d region in %d micros", i_count, i_region, (int)(i_ck_time) );
558 #endif
559
560     free( pp_img );
561
562     return i_region;
563 }
564
565 static void RegionDraw( subpicture_region_t *p_region, ASS_Image *p_img )
566 {
567     const plane_t *p = &p_region->p_picture->p[0];
568     const int i_x = p_region->i_x;
569     const int i_y = p_region->i_y;
570     const int i_width  = p_region->fmt.i_width;
571     const int i_height = p_region->fmt.i_height;
572
573     memset( p->p_pixels, 0x00, p->i_pitch * p->i_lines );
574     for( ; p_img != NULL; p_img = p_img->next )
575     {
576         if( p_img->dst_x < i_x || p_img->dst_x + p_img->w > i_x + i_width ||
577             p_img->dst_y < i_y || p_img->dst_y + p_img->h > i_y + i_height )
578             continue;
579
580         const unsigned r = (p_img->color >> 24)&0xff;
581         const unsigned g = (p_img->color >> 16)&0xff;
582         const unsigned b = (p_img->color >>  8)&0xff;
583         const unsigned a = (p_img->color      )&0xff;
584         int x, y;
585
586         for( y = 0; y < p_img->h; y++ )
587         {
588             for( x = 0; x < p_img->w; x++ )
589             {
590                 const unsigned alpha = p_img->bitmap[y*p_img->stride+x];
591                 const unsigned an = (255 - a) * alpha / 255;
592
593                 uint8_t *p_rgba = &p->p_pixels[(y+p_img->dst_y-i_y) * p->i_pitch + 4 * (x+p_img->dst_x-i_x)];
594                 const unsigned ao = p_rgba[3];
595
596                 /* Native endianness, but RGBA ordering */
597                 if( ao == 0 )
598                 {
599                     /* Optimized but the else{} will produce the same result */
600                     p_rgba[0] = r;
601                     p_rgba[1] = g;
602                     p_rgba[2] = b;
603                     p_rgba[3] = an;
604                 }
605                 else
606                 {
607                     p_rgba[3] = 255 - ( 255 - p_rgba[3] ) * ( 255 - an ) / 255;
608                     if( p_rgba[3] != 0 )
609                     {
610                         p_rgba[0] = ( p_rgba[0] * ao * (255-an) / 255 + r * an ) / p_rgba[3];
611                         p_rgba[1] = ( p_rgba[1] * ao * (255-an) / 255 + g * an ) / p_rgba[3];
612                         p_rgba[2] = ( p_rgba[2] * ao * (255-an) / 255 + b * an ) / p_rgba[3];
613                     }
614                 }
615             }
616         }
617     }
618
619 #ifdef DEBUG_REGION
620     /* XXX Draw a box for debug */
621 #define P(x,y) ((uint32_t*)&p->p_pixels[(y)*p->i_pitch + 4*(x)])
622     for( int y = 0; y < p->i_lines; y++ )
623         *P(0,y) = *P(p->i_visible_pitch/4-1,y) = 0xff000000;
624     for( int x = 0; x < p->i_visible_pitch; x++ )
625         *P(x/4,0) = *P(x/4,p->i_visible_lines-1) = 0xff000000;
626 #undef P
627 #endif
628 }
629
630
631 static void SubpictureReleaseRegions( spu_t *p_spu, subpicture_t *p_subpic )
632 {
633     VLC_UNUSED( p_spu );
634     subpicture_region_ChainDelete( p_subpic->p_region );
635     p_subpic->p_region = NULL;
636 }
637
638 /* */
639 static ass_handle_t *AssHandleHold( decoder_t *p_dec )
640 {
641     vlc_mutex_lock( &libass_lock );
642
643     ass_handle_t *p_ass = NULL;
644     ASS_Library *p_library = NULL;
645     ASS_Renderer *p_renderer = NULL;
646     vlc_value_t val;
647
648     var_Create( p_dec->p_libvlc, "libass-handle", VLC_VAR_ADDRESS );
649     if( var_Get( p_dec->p_libvlc, "libass-handle", &val ) )
650         val.p_address = NULL;
651
652     if( val.p_address )
653     {
654         p_ass = val.p_address;
655
656         p_ass->i_refcount++;
657
658         vlc_mutex_unlock( &libass_lock );
659         return p_ass;
660     }
661
662     /* */
663     p_ass = malloc( sizeof(*p_ass) );
664     if( !p_ass )
665         goto error;
666
667     /* */
668     p_ass->p_libvlc = VLC_OBJECT(p_dec->p_libvlc);
669     p_ass->i_refcount = 1;
670
671     /* Create libass library */
672     p_ass->p_library = p_library = ass_library_init();
673     if( !p_library )
674         goto error;
675
676     /* load attachments */
677     input_attachment_t  **pp_attachments;
678     int                   i_attachments;
679
680     if( decoder_GetInputAttachments( p_dec, &pp_attachments, &i_attachments ))
681     {
682         i_attachments = 0;
683         pp_attachments = NULL;
684     }
685     for( int k = 0; k < i_attachments; k++ )
686     {
687         input_attachment_t *p_attach = pp_attachments[k];
688
689         if( !strcasecmp( p_attach->psz_mime, "application/x-truetype-font" ) )
690         {
691             msg_Dbg( p_dec, "adding embedded font %s", p_attach->psz_name );
692
693             ass_add_font( p_ass->p_library, p_attach->psz_name, p_attach->p_data, p_attach->i_data );
694         }
695         vlc_input_attachment_Delete( p_attach );
696     }
697     free( pp_attachments );
698
699     char *psz_font_dir = NULL;
700
701
702 #if defined(WIN32)
703     dialog_progress_bar_t *p_dialog = dialog_ProgressCreate( p_dec,
704         _("Building font cache"),
705         _( "Please wait while your font cache is rebuilt.\n"
706         "This should take less than a minute." ), NULL );
707     /* This makes Windows build of VLC hang */
708     const UINT uPath = GetSystemWindowsDirectoryW( NULL, 0 );
709     if( uPath > 0 )
710     {
711         wchar_t *psw_path = calloc( uPath + 1, sizeof(wchar_t) );
712         if( psw_path )
713         {
714             if( GetSystemWindowsDirectoryW( psw_path, uPath + 1 ) > 0 )
715             {
716                 char *psz_tmp = FromWide( psw_path );
717                 if( psz_tmp &&
718                     asprintf( &psz_font_dir, "%s\\Fonts", psz_tmp ) < 0 )
719                     psz_font_dir = NULL;
720                 free( psz_tmp );
721             }
722             free( psw_path );
723         }
724     }
725 #endif
726     if( !psz_font_dir )
727         psz_font_dir = config_GetCacheDir();
728
729     if( !psz_font_dir )
730         goto error;
731     msg_Dbg( p_dec, "Setting libass fontdir: %s", psz_font_dir );
732     ass_set_fonts_dir( p_library, psz_font_dir );
733     free( psz_font_dir );
734 #ifdef WIN32
735     if( p_dialog )
736         dialog_ProgressSet( p_dialog, NULL, 0.1 );
737 #endif
738
739     ass_set_extract_fonts( p_library, true );
740     ass_set_style_overrides( p_library, NULL );
741
742     /* Create the renderer */
743     p_ass->p_renderer = p_renderer = ass_renderer_init( p_library );
744     if( !p_renderer )
745         goto error;
746
747     ass_set_use_margins( p_renderer, false);
748     //if( false )
749     //    ass_set_margins( p_renderer, int t, int b, int l, int r);
750     ass_set_hinting( p_renderer, ASS_HINTING_LIGHT );
751     ass_set_font_scale( p_renderer, 1.0 );
752     ass_set_line_spacing( p_renderer, 0.0 );
753
754     const char *psz_font = NULL; /* We don't ship a default font with VLC */
755     const char *psz_family = "Arial"; /* Use Arial if we can't find anything more suitable */
756
757 #ifdef HAVE_FONTCONFIG
758 #ifdef WIN32
759     if( p_dialog )
760         dialog_ProgressSet( p_dialog, NULL, 0.2 );
761 #endif
762 #if defined( LIBASS_VERSION ) && LIBASS_VERSION >= 0x00907000
763     ass_set_fonts( p_renderer, psz_font, psz_family, true, NULL, 1 );  // setup default font/family
764 #else
765     ass_set_fonts( p_renderer, psz_font, psz_family );  // setup default font/family
766 #endif
767 #ifdef WIN32
768     if( p_dialog )
769         dialog_ProgressSet( p_dialog, NULL, 1.0 );
770 #endif
771 #else
772     /* FIXME you HAVE to give him a font if no fontconfig */
773 #if defined( LIBASS_VERSION ) && LIBASS_VERSION >= 0x00907000
774     ass_set_fonts( p_renderer, psz_font, psz_family, false, NULL, 1 );
775 #else
776     ass_set_fonts_nofc( p_renderer, psz_font, psz_family );
777 #endif
778 #endif
779     memset( &p_ass->fmt, 0, sizeof(p_ass->fmt) );
780
781     /* */
782     val.p_address = p_ass;
783     var_Set( p_dec->p_libvlc, "libass-handle", val );
784
785     /* */
786     vlc_mutex_unlock( &libass_lock );
787 #ifdef WIN32
788     if( p_dialog )
789         dialog_ProgressDestroy( p_dialog );
790 #endif
791     return p_ass;
792
793 error:
794     if( p_renderer )
795         ass_renderer_done( p_renderer );
796     if( p_library )
797         ass_library_done( p_library );
798
799     msg_Warn( p_dec, "Libass creation failed" );
800
801     free( p_ass );
802     vlc_mutex_unlock( &libass_lock );
803     return NULL;
804 }
805 static void AssHandleRelease( ass_handle_t *p_ass )
806 {
807     vlc_mutex_lock( &libass_lock );
808     p_ass->i_refcount--;
809     if( p_ass->i_refcount > 0 )
810     {
811         vlc_mutex_unlock( &libass_lock );
812         return;
813     }
814
815     ass_renderer_done( p_ass->p_renderer );
816     ass_library_done( p_ass->p_library );
817
818     vlc_value_t val;
819     val.p_address = NULL;
820     var_Set( p_ass->p_libvlc, "libass-handle", val );
821
822     vlc_mutex_unlock( &libass_lock );
823     free( p_ass );
824 }