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