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