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