]> git.sesse.net Git - vlc/blob - modules/codec/libass.c
Libass: simplify and do not call ass_set_fonts_dir
[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         if( p_tmp->w > 0 && p_tmp->h > 0 )
453             i_count++;
454     if( i_count <= 0 )
455         return 0;
456
457     ASS_Image **pp_img = calloc( i_count, sizeof(*pp_img) );
458     if( !pp_img )
459         return 0;
460
461     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next )
462         if( p_tmp->w > 0 && p_tmp->h > 0 )
463             pp_img[i_count++] = p_tmp;
464
465     /* */
466     const int i_w_inc = __MAX( ( i_width + 49 ) / 50, 32 );
467     const int i_h_inc = __MAX( ( i_height + 99 ) / 100, 32 );
468     int i_maxh = i_w_inc;
469     int i_maxw = i_h_inc;
470     int i_region;
471     rectangle_t region[i_max_region+1];
472
473     i_region = 0;
474     for( int i_used = 0; i_used < i_count; )
475     {
476         int n;
477         for( n = 0; n < i_count; n++ )
478         {
479             if( pp_img[n] )
480                 break;
481         }
482         assert( i_region < i_max_region + 1 );
483         region[i_region++] = r_img( pp_img[n] );
484         pp_img[n] = NULL; i_used++;
485
486         bool b_ok;
487         do {
488             b_ok = false;
489             for( n = 0; n < i_count; n++ )
490             {
491                 ASS_Image *p_img = pp_img[n];
492                 if( !p_img )
493                     continue;
494                 rectangle_t r = r_img( p_img );
495
496                 int k;
497                 int i_best = -1;
498                 int i_best_s = INT_MAX;
499                 for( k = 0; k < i_region; k++ )
500                 {
501                     if( !r_overlap( &region[k], &r, i_maxw, i_maxh ) )
502                         continue;
503                     int s = r_surface( &r );
504                     if( s < i_best_s )
505                     {
506                         i_best_s = s;
507                         i_best = k;
508                     }
509                 }
510                 if( i_best >= 0 )
511                 {
512                     r_add( &region[i_best], &r );
513                     pp_img[n] = NULL; i_used++;
514                     b_ok = true;
515                 }
516             }
517         } while( b_ok );
518
519         if( i_region > i_max_region )
520         {
521             int i_best_i = -1;
522             int i_best_j = -1;
523             int i_best_ds = INT_MAX;
524
525             /* merge best */
526             for( int i = 0; i < i_region; i++ )
527             {
528                 for( int j = i+1; j < i_region; j++ )
529                 {
530                     rectangle_t n = region[i];
531                     r_add( &n, &region[j] );
532                     int ds = r_surface( &n ) - r_surface( &region[i] ) - r_surface( &region[j] );
533
534                     if( ds < i_best_ds )
535                     {
536                         i_best_i = i;
537                         i_best_j = j;
538                         i_best_ds = ds;
539                     }
540                 }
541             }
542 #ifdef DEBUG_REGION
543             msg_Err( p_spu, "Merging %d and %d", i_best_i, i_best_j );
544 #endif
545             r_add( &region[i_best_i], &region[i_best_j] );
546
547             if( i_best_j+1 < i_region )
548                 memmove( &region[i_best_j], &region[i_best_j+1], sizeof(*region) * ( i_region - (i_best_j+1)  ) );
549             i_region--;
550         }
551     }
552
553     /* */
554     for( int n = 0; n < i_region; n++ )
555         p_region[n] = region[n];
556
557 #ifdef DEBUG_REGION
558     int64_t i_ck_time = mdate() - i_ck_start;
559     msg_Err( p_spu, "ASS: %d objects merged into %d region in %d micros", i_count, i_region, (int)(i_ck_time) );
560 #endif
561
562     free( pp_img );
563
564     return i_region;
565 }
566
567 static void RegionDraw( subpicture_region_t *p_region, ASS_Image *p_img )
568 {
569     const plane_t *p = &p_region->p_picture->p[0];
570     const int i_x = p_region->i_x;
571     const int i_y = p_region->i_y;
572     const int i_width  = p_region->fmt.i_width;
573     const int i_height = p_region->fmt.i_height;
574
575     memset( p->p_pixels, 0x00, p->i_pitch * p->i_lines );
576     for( ; p_img != NULL; p_img = p_img->next )
577     {
578         if( p_img->dst_x < i_x || p_img->dst_x + p_img->w > i_x + i_width ||
579             p_img->dst_y < i_y || p_img->dst_y + p_img->h > i_y + i_height )
580             continue;
581
582         const unsigned r = (p_img->color >> 24)&0xff;
583         const unsigned g = (p_img->color >> 16)&0xff;
584         const unsigned b = (p_img->color >>  8)&0xff;
585         const unsigned a = (p_img->color      )&0xff;
586         int x, y;
587
588         for( y = 0; y < p_img->h; y++ )
589         {
590             for( x = 0; x < p_img->w; x++ )
591             {
592                 const unsigned alpha = p_img->bitmap[y*p_img->stride+x];
593                 const unsigned an = (255 - a) * alpha / 255;
594
595                 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)];
596                 const unsigned ao = p_rgba[3];
597
598                 /* Native endianness, but RGBA ordering */
599                 if( ao == 0 )
600                 {
601                     /* Optimized but the else{} will produce the same result */
602                     p_rgba[0] = r;
603                     p_rgba[1] = g;
604                     p_rgba[2] = b;
605                     p_rgba[3] = an;
606                 }
607                 else
608                 {
609                     p_rgba[3] = 255 - ( 255 - p_rgba[3] ) * ( 255 - an ) / 255;
610                     if( p_rgba[3] != 0 )
611                     {
612                         p_rgba[0] = ( p_rgba[0] * ao * (255-an) / 255 + r * an ) / p_rgba[3];
613                         p_rgba[1] = ( p_rgba[1] * ao * (255-an) / 255 + g * an ) / p_rgba[3];
614                         p_rgba[2] = ( p_rgba[2] * ao * (255-an) / 255 + b * an ) / p_rgba[3];
615                     }
616                 }
617             }
618         }
619     }
620
621 #ifdef DEBUG_REGION
622     /* XXX Draw a box for debug */
623 #define P(x,y) ((uint32_t*)&p->p_pixels[(y)*p->i_pitch + 4*(x)])
624     for( int y = 0; y < p->i_lines; y++ )
625         *P(0,y) = *P(p->i_visible_pitch/4-1,y) = 0xff000000;
626     for( int x = 0; x < p->i_visible_pitch; x++ )
627         *P(x/4,0) = *P(x/4,p->i_visible_lines-1) = 0xff000000;
628 #undef P
629 #endif
630 }
631
632
633 static void SubpictureReleaseRegions( spu_t *p_spu, subpicture_t *p_subpic )
634 {
635     VLC_UNUSED( p_spu );
636     subpicture_region_ChainDelete( p_subpic->p_region );
637     p_subpic->p_region = NULL;
638 }
639
640 /* */
641 static ass_handle_t *AssHandleHold( decoder_t *p_dec )
642 {
643     vlc_mutex_lock( &libass_lock );
644
645     ass_handle_t *p_ass = NULL;
646     ASS_Library *p_library = NULL;
647     ASS_Renderer *p_renderer = NULL;
648     vlc_value_t val;
649
650     var_Create( p_dec->p_libvlc, "libass-handle", VLC_VAR_ADDRESS );
651     if( var_Get( p_dec->p_libvlc, "libass-handle", &val ) )
652         val.p_address = NULL;
653
654     if( val.p_address )
655     {
656         p_ass = val.p_address;
657
658         p_ass->i_refcount++;
659
660         vlc_mutex_unlock( &libass_lock );
661         return p_ass;
662     }
663
664     /* */
665     p_ass = malloc( sizeof(*p_ass) );
666     if( !p_ass )
667         goto error;
668
669     /* */
670     p_ass->p_libvlc = VLC_OBJECT(p_dec->p_libvlc);
671     p_ass->i_refcount = 1;
672
673     /* Create libass library */
674     p_ass->p_library = p_library = ass_library_init();
675     if( !p_library )
676         goto error;
677
678     /* load attachments */
679     input_attachment_t  **pp_attachments;
680     int                   i_attachments;
681
682     if( decoder_GetInputAttachments( p_dec, &pp_attachments, &i_attachments ))
683     {
684         i_attachments = 0;
685         pp_attachments = NULL;
686     }
687     for( int k = 0; k < i_attachments; k++ )
688     {
689         input_attachment_t *p_attach = pp_attachments[k];
690
691         if( !strcasecmp( p_attach->psz_mime, "application/x-truetype-font" ) )
692         {
693             msg_Dbg( p_dec, "adding embedded font %s", p_attach->psz_name );
694
695             ass_add_font( p_ass->p_library, p_attach->psz_name, p_attach->p_data, p_attach->i_data );
696         }
697         vlc_input_attachment_Delete( p_attach );
698     }
699     free( pp_attachments );
700
701 #if defined(WIN32)
702     dialog_progress_bar_t *p_dialog = dialog_ProgressCreate( p_dec,
703         _("Building font cache"),
704         _( "Please wait while your font cache is rebuilt.\n"
705         "This should take less than a minute." ), NULL );
706     if( p_dialog )
707         dialog_ProgressSet( p_dialog, NULL, 0.1 );
708 #endif
709
710     ass_set_extract_fonts( p_library, true );
711     ass_set_style_overrides( p_library, NULL );
712
713     /* Create the renderer */
714     p_ass->p_renderer = p_renderer = ass_renderer_init( p_library );
715     if( !p_renderer )
716         goto error;
717
718     ass_set_use_margins( p_renderer, false);
719     //if( false )
720     //    ass_set_margins( p_renderer, int t, int b, int l, int r);
721     ass_set_hinting( p_renderer, ASS_HINTING_LIGHT );
722     ass_set_font_scale( p_renderer, 1.0 );
723     ass_set_line_spacing( p_renderer, 0.0 );
724
725     const char *psz_font = NULL; /* We don't ship a default font with VLC */
726     const char *psz_family = "Arial"; /* Use Arial if we can't find anything more suitable */
727
728 #ifdef HAVE_FONTCONFIG
729 #ifdef WIN32
730     if( p_dialog )
731         dialog_ProgressSet( p_dialog, NULL, 0.2 );
732 #endif
733 #if defined( LIBASS_VERSION ) && LIBASS_VERSION >= 0x00907000
734     ass_set_fonts( p_renderer, psz_font, psz_family, true, NULL, 1 );  // setup default font/family
735 #else
736     ass_set_fonts( p_renderer, psz_font, psz_family );  // setup default font/family
737 #endif
738 #ifdef WIN32
739     if( p_dialog )
740         dialog_ProgressSet( p_dialog, NULL, 1.0 );
741 #endif
742 #else
743     /* FIXME you HAVE to give him a font if no fontconfig */
744 #if defined( LIBASS_VERSION ) && LIBASS_VERSION >= 0x00907000
745     ass_set_fonts( p_renderer, psz_font, psz_family, false, NULL, 1 );
746 #else
747     ass_set_fonts_nofc( p_renderer, psz_font, psz_family );
748 #endif
749 #endif
750     memset( &p_ass->fmt, 0, sizeof(p_ass->fmt) );
751
752     /* */
753     val.p_address = p_ass;
754     var_Set( p_dec->p_libvlc, "libass-handle", val );
755
756     /* */
757     vlc_mutex_unlock( &libass_lock );
758 #ifdef WIN32
759     if( p_dialog )
760         dialog_ProgressDestroy( p_dialog );
761 #endif
762     return p_ass;
763
764 error:
765     if( p_renderer )
766         ass_renderer_done( p_renderer );
767     if( p_library )
768         ass_library_done( p_library );
769
770     msg_Warn( p_dec, "Libass creation failed" );
771
772     free( p_ass );
773     vlc_mutex_unlock( &libass_lock );
774     return NULL;
775 }
776 static void AssHandleRelease( ass_handle_t *p_ass )
777 {
778     vlc_mutex_lock( &libass_lock );
779     p_ass->i_refcount--;
780     if( p_ass->i_refcount > 0 )
781     {
782         vlc_mutex_unlock( &libass_lock );
783         return;
784     }
785
786     ass_renderer_done( p_ass->p_renderer );
787     ass_library_done( p_ass->p_library );
788
789     vlc_value_t val;
790     val.p_address = NULL;
791     var_Set( p_ass->p_libvlc, "libass-handle", val );
792
793     vlc_mutex_unlock( &libass_lock );
794     free( p_ass );
795 }