]> git.sesse.net Git - vlc/blob - modules/codec/libass.c
Check against a few libass errors in AssHandleYield.
[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( video_format_t *, spu_t *, subpicture_t * );
67 static void UpdateRegions( video_format_t *, spu_t *,
68                            subpicture_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 CSRI renderer
126  *****************************************************************************
127  * Comment me.
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     vlc_mutex_init( &p_sys->lock );
146     p_sys->i_refcount = 1;
147
148     p_sys->p_ass = AssHandleYield( p_dec );
149
150     /* load attachments */
151     input_attachment_t  **pp_attachments;
152     int                   i_attachments;
153
154     if( decoder_GetInputAttachments( p_dec, &pp_attachments, &i_attachments ))
155     {
156         i_attachments = 0;
157         pp_attachments = NULL;
158     }
159     for( int k = 0; k < i_attachments; k++ )
160     {
161         input_attachment_t *p_attach = pp_attachments[k];
162
163         if( !strcasecmp( p_attach->psz_mime, "application/x-truetype-font" ) )
164         {
165             msg_Dbg( p_dec, "adding embedded font %s\n", p_attach->psz_name );
166
167             vlc_mutex_lock( p_sys->p_ass->p_lock );
168             ass_add_font( p_sys->p_ass->p_library, p_attach->psz_name, p_attach->p_data, p_attach->i_data );
169             vlc_mutex_unlock( p_sys->p_ass->p_lock );
170         }
171         vlc_input_attachment_Delete( p_attach );
172     }
173     free( pp_attachments );
174
175     /* Add a track */
176     vlc_mutex_lock( p_sys->p_ass->p_lock );
177     p_sys->p_track = p_track = ass_new_track( p_sys->p_ass->p_library );
178     ass_process_codec_private( p_track, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
179     vlc_mutex_unlock( p_sys->p_ass->p_lock );
180
181     return VLC_SUCCESS;
182 }
183
184 /*****************************************************************************
185  * Destroy: finish
186  *****************************************************************************
187  * Comment me.
188  *****************************************************************************/
189 static void Destroy( vlc_object_t *p_this )
190 {
191     decoder_t *p_dec = (decoder_t *)p_this;
192
193     DecSysRelease( p_dec->p_sys );
194 }
195
196 static void DecSysYield( decoder_sys_t *p_sys )
197 {
198     vlc_mutex_lock( &p_sys->lock );
199     p_sys->i_refcount++;
200     vlc_mutex_unlock( &p_sys->lock );
201 }
202 static void DecSysRelease( decoder_sys_t *p_sys )
203 {
204     /* */
205     vlc_mutex_lock( &p_sys->lock );
206     p_sys->i_refcount--;
207     if( p_sys->i_refcount > 0 )
208     {
209         vlc_mutex_unlock( &p_sys->lock );
210         return;
211     }
212     vlc_mutex_unlock( &p_sys->lock );
213     vlc_mutex_destroy( &p_sys->lock );
214
215     vlc_mutex_lock( p_sys->p_ass->p_lock );
216     ass_free_track( p_sys->p_track );
217     vlc_mutex_unlock( p_sys->p_ass->p_lock );
218
219     AssHandleRelease( p_sys->p_ass );
220     free( p_sys );
221 }
222
223 /****************************************************************************
224  * DecodeBlock: the whole thing
225  ****************************************************************************
226  * This function must be fed with complete subtitles units.
227  ****************************************************************************/
228 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
229 {
230     decoder_sys_t *p_sys = p_dec->p_sys;
231
232     subpicture_t *p_spu = NULL;
233     block_t *p_block;
234
235     //msg_Dbg( p_dec, "DecodeBlock %p", (void *)pp_block);
236     if( !pp_block || *pp_block == NULL )
237         return NULL;
238
239     p_block = *pp_block;
240     if( p_block->i_rate != 0 )
241         p_block->i_length = p_block->i_length * p_block->i_rate / INPUT_RATE_DEFAULT;
242     *pp_block = NULL;
243
244     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '\0' )
245     {
246         block_Release( p_block );
247         return NULL;
248     }
249
250     p_spu = p_dec->pf_spu_buffer_new( p_dec );
251     if( !p_spu )
252     {
253         msg_Warn( p_dec, "can't get spu buffer" );
254         block_Release( p_block );
255         return NULL;
256     }
257
258     p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
259     if( !p_spu->p_sys )
260     {
261         p_dec->pf_spu_buffer_del( p_dec, p_spu );
262         block_Release( p_block );
263         return NULL;
264     }
265
266     p_spu->p_sys->i_subs_len = p_block->i_buffer;
267     p_spu->p_sys->p_subs_data = malloc( p_block->i_buffer );
268     if( !p_spu->p_sys->p_subs_data )
269     {
270         free( p_spu->p_sys );
271         p_dec->pf_spu_buffer_del( p_dec, p_spu );
272         block_Release( p_block );
273         return NULL;
274     }
275     memcpy( p_spu->p_sys->p_subs_data, p_block->p_buffer,
276             p_block->i_buffer );
277
278     p_spu->i_x = 0;
279     p_spu->i_y = 0;
280     p_spu->i_start = p_block->i_pts;
281     p_spu->i_stop = p_block->i_pts + p_block->i_length;
282     p_spu->b_ephemer = true;
283     p_spu->b_absolute = true;
284     p_spu->b_pausable = true; /* ? */
285
286     vlc_mutex_lock( p_sys->p_ass->p_lock );
287     ass_process_chunk( p_sys->p_track, p_spu->p_sys->p_subs_data, p_spu->p_sys->i_subs_len,
288                        p_spu->i_start / 1000, (p_spu->i_stop-p_spu->i_start) / 1000 );
289     vlc_mutex_unlock( p_sys->p_ass->p_lock );
290
291     p_spu->pf_pre_render = PreRender;
292     p_spu->pf_update_regions = UpdateRegions;
293     p_spu->pf_destroy = DestroySubpicture;
294     p_spu->p_sys->p_dec_sys = p_sys;
295
296     DecSysYield( p_sys );
297
298     block_Release( p_block );
299
300     return p_spu;
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( video_format_t *p_fmt, spu_t *p_spu,
312                        subpicture_t *p_subpic )
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( video_format_t *p_fmt, spu_t *p_spu,
322                            subpicture_t *p_subpic, 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     fmt.i_sar_num = 1;
346     fmt.i_sar_den = 1;
347
348     b_fmt_changed = memcmp( &fmt, &p_ass->fmt, sizeof(fmt) ) != 0;
349     if( b_fmt_changed )
350     {
351         ass_set_frame_size( p_ass->p_renderer, fmt.i_width, fmt.i_height );
352         ass_set_aspect_ratio( p_ass->p_renderer, 1.0 ); // TODO ?
353
354         p_ass->fmt = fmt;
355     }
356
357     /* */
358     int i_changed;
359     ass_image_t *p_img = ass_render_frame( p_ass->p_renderer, p_sys->p_track, i_ts/1000, &i_changed );
360
361     if( !i_changed && !b_fmt_changed )
362     {
363         vlc_mutex_unlock( p_ass->p_lock );
364         return;
365     }
366
367     /* */
368     p_subpic->i_original_picture_height = fmt.i_height;
369     p_subpic->i_original_picture_width = fmt.i_width;
370     SubpictureReleaseRegions( p_spu, p_subpic );
371
372     /* TODO to improve efficiency we merge regions that are close minimizing
373      * the lost surface.
374      * libass tends to create a lot of small regions and thus spu engine
375      * reinstanciate a lot the scaler, and as we do not support subpel blending
376      * it looks ugly (text unaligned).
377      */
378     const int i_max_region = 4;
379     rectangle_t region[i_max_region];
380     const int i_region = BuildRegions( p_spu, region, i_max_region, p_img, fmt.i_width, fmt.i_height );
381
382     if( i_region <= 0 )
383     {
384         vlc_mutex_unlock( p_ass->p_lock );
385         return;
386     }
387
388     /* Allocate the regions and draw them */
389     subpicture_region_t *pp_region[i_max_region];
390     subpicture_region_t **pp_region_last = &p_subpic->p_region;
391
392     for( int i = 0; i < i_region; i++ )
393     {
394         subpicture_region_t *r;
395         video_format_t fmt_region;
396
397         /* */
398         fmt_region = fmt;
399         fmt_region.i_width =
400         fmt_region.i_visible_width  = region[i].x1 - region[i].x0;
401         fmt_region.i_height =
402         fmt_region.i_visible_height = region[i].y1 - region[i].y0;
403
404         pp_region[i] = r = p_subpic->pf_create_region( VLC_OBJECT(p_spu), &fmt_region );
405         if( !r )
406             break;
407         r->i_x = region[i].x0;
408         r->i_y = region[i].y0;
409         r->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
410
411         /* */
412         RegionDraw( r, p_img );
413
414         /* */
415         *pp_region_last = r;
416         pp_region_last = &r->p_next;
417     }
418     vlc_mutex_unlock( p_ass->p_lock );
419 }
420
421 static rectangle_t r_create( int x0, int y0, int x1, int y1 )
422 {
423     rectangle_t r = { x0, y0, x1, y1 };
424     return r;
425 }
426 static rectangle_t r_img( const ass_image_t *p_img )
427 {
428     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 );
429 }
430 static void r_add( rectangle_t *r, const rectangle_t *n )
431 {
432     r->x0 = __MIN( r->x0, n->x0 );
433     r->y0 = __MIN( r->y0, n->y0 );
434     r->x1 = __MAX( r->x1, n->x1 );
435     r->y1 = __MAX( r->y1, n->y1 );
436 }
437 static int r_surface( const rectangle_t *r )
438 {
439     return (r->x1-r->x0) * (r->y1-r->y0);
440 }
441 static bool r_overlap( const rectangle_t *a, const rectangle_t *b, int i_dx, int i_dy )
442 {
443     return  __MAX(a->x0-i_dx, b->x0) < __MIN( a->x1+i_dx, b->x1 ) &&
444             __MAX(a->y0-i_dy, b->y0) < __MIN( a->y1+i_dy, b->y1 );
445 }
446
447 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 )
448 {
449     ass_image_t *p_tmp;
450     int i_count;
451
452     int64_t i_ck_start = mdate();
453
454     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next )
455         i_count++;
456     if( i_count <= 0 )
457         return 0;
458
459     ass_image_t *pp_img[i_count];   // TODO move to context ?
460     for( p_tmp = p_img_list, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->next, i_count++ )
461         pp_img[i_count] = p_tmp;
462
463     /* */
464     const int i_w_inc = __MAX( ( i_width + 49 ) / 50, 32 );
465     const int i_h_inc = __MAX( ( i_height + 99 ) / 100, 32 );
466     int i_maxh = i_w_inc;
467     int i_maxw = i_h_inc;
468     int i_region;
469     rectangle_t region[i_max_region+1];
470
471     i_region = 0;
472     for( int i_used = 0; i_used < i_count; )
473     {
474         int n;
475         for( n = 0; n < i_count; n++ )
476         {
477             if( pp_img[n] )
478                 break;
479         }
480         assert( i_region < i_max_region + 1 );
481         region[i_region++] = r_img( pp_img[n] );
482         pp_img[n] = NULL; i_used++;
483
484         bool b_ok;
485         do {
486             b_ok = false;
487             for( n = 0; n < i_count; n++ )
488             {
489                 ass_image_t *p_img = pp_img[n];
490                 if( !p_img )
491                     continue;
492                 rectangle_t r = r_img( p_img );
493
494                 int k;
495                 int i_best = -1;
496                 int i_best_s = INT_MAX;
497                 for( k = 0; k < i_region; k++ )
498                 {
499                     if( !r_overlap( &region[k], &r, i_maxw, i_maxh ) )
500                         continue;
501                     int s = r_surface( &r );
502                     if( s < i_best_s )
503                     {
504                         i_best_s = s;
505                         i_best = k;
506                     }
507                 }
508                 if( i_best >= 0 )
509                 {
510                     r_add( &region[i_best], &r );
511                     pp_img[n] = NULL; i_used++;
512                     b_ok = true;
513                 }
514             }
515         } while( b_ok );
516
517         if( i_region > i_max_region )
518         {
519             int i_best_i = -1;
520             int i_best_j = -1;
521             int i_best_ds = INT_MAX;
522
523             /* merge best */
524             for( int i = 0; i < i_region; i++ )
525             {
526                 for( int j = i+1; j < i_region; j++ )
527                 {
528                     rectangle_t n = region[i];
529                     r_add( &n, &region[j] );
530                     int ds = r_surface( &n ) - r_surface( &region[i] ) - r_surface( &region[j] );
531
532                     if( ds < i_best_ds )
533                     {
534                         i_best_i = i;
535                         i_best_j = j;
536                         i_best_ds = ds;
537                     }
538                 }
539             }
540             msg_Err( p_spu, "Merging %d and %d", i_best_i, i_best_j );
541             r_add( &region[i_best_i], &region[i_best_j] );
542
543             if( i_best_j+1 < i_region )
544                 memmove( &region[i_best_j], &region[i_best_j+1], sizeof(*region) * ( i_region - (i_best_j+1)  ) );
545             i_region--;
546         }
547     }
548
549     /* */
550     for( int n = 0; n < i_region; n++ )
551         p_region[n] = region[n];
552
553     int64_t i_ck_time = mdate() - i_ck_start;
554     msg_Err( p_spu, "ASS: %d objects merged into %d region in %d micros", i_count, i_region, (int)(i_ck_time) );
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->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 #if 0
589                 p_rgba[0] = b;
590                 p_rgba[1] = g;
591                 p_rgba[2] = r;
592                 p_rgba[3] = an;
593 #else
594                 // FIXME it is not right
595                 p_rgba[0] = ( p_rgba[0] * (255-an) + b * an ) / 255;
596                 p_rgba[1] = ( p_rgba[1] * (255-an) + g * an ) / 255;
597                 p_rgba[2] = ( p_rgba[2] * (255-an) + r * an ) / 255;
598                 p_rgba[3] = 255 - ( 255 - p_rgba[3] ) * ( 255 - an ) / 255;
599 #endif
600             }
601         }
602     }
603
604 #ifdef DEBUG_REGION
605     /* XXX Draw a box for debug */
606 #define P(x,y) ((uint32_t*)&p->p_pixels[(y)*p->i_pitch + 4*(x)])
607     for( int y = 0; y < p->i_lines; y++ )
608         *P(0,y) = *P(p->i_visible_pitch/4-1,y) = 0xff000000;
609     for( int x = 0; x < p->i_visible_pitch; x++ )
610         *P(x/4,0) = *P(x/4,p->i_visible_lines-1) = 0xff000000;
611 #undef P
612 #endif
613 }
614
615
616 static void SubpictureReleaseRegions( spu_t *p_spu, subpicture_t *p_subpic )
617 {
618     while( p_subpic->p_region )
619     {
620         subpicture_region_t *p_region = p_subpic->p_region;
621         p_subpic->p_region = p_region->p_next;
622         spu_DestroyRegion( p_spu, p_region );
623     }
624     p_subpic->p_region = NULL;
625 }
626
627 /* */
628 static ass_handle_t *AssHandleYield( decoder_t *p_dec )
629 {
630     vlc_mutex_t *p_lock = var_AcquireMutex( "libass" );
631
632     ass_handle_t *p_ass = NULL;
633     ass_library_t *p_library = NULL;
634     ass_renderer_t *p_renderer = NULL;
635     vlc_value_t val;
636
637     var_Create( p_dec->p_libvlc, "libass-handle", VLC_VAR_ADDRESS );
638     if( var_Get( p_dec->p_libvlc, "libass-handle", &val ) )
639         val.p_address = NULL;
640
641     if( val.p_address )
642     {
643         p_ass = val.p_address;
644
645         p_ass->i_refcount++;
646
647         vlc_mutex_unlock( p_lock );
648         return p_ass;
649     }
650
651     /* */
652     p_ass = malloc( sizeof(*p_ass) );
653     if( !p_ass )
654         goto error;
655
656     /* */
657     p_ass->p_libvlc = VLC_OBJECT(p_dec->p_libvlc);
658     p_ass->p_lock = p_lock;
659     p_ass->i_refcount = 1;
660
661     /* Create libass library */
662     p_ass->p_library = p_library = ass_library_init();
663     if( !p_library )
664         goto error;
665
666     ass_set_fonts_dir( p_library, "/usr/share/fonts" ); // FIXME
667     ass_set_extract_fonts( p_library, true );
668     ass_set_style_overrides( p_library, NULL );
669
670     /* Create the renderer */
671     p_ass->p_renderer = p_renderer = ass_renderer_init( p_library );
672     if( !p_renderer )
673         goto error;
674
675     ass_set_use_margins( p_renderer, false);
676     //if( false )
677     //    ass_set_margins( p_renderer, int t, int b, int l, int r);
678     ass_set_hinting( p_renderer, ASS_HINTING_NATIVE ); // No idea
679     ass_set_font_scale( p_renderer, 1.0 );
680     ass_set_line_spacing( p_renderer, 0.0 );
681
682     const char *psz_font = "";//"/usr/src/videolan/vlc-libass.git/share/skins2/fonts/FreeSans.ttf"; // FIXME
683     const char *psz_family = "";//"Arial"; // FIXME
684 #ifdef HAVE_FONTCONFIG
685     ass_set_fonts( p_renderer, psz_font, psz_family );  // setup default font/family
686 #else
687     /* FIXME you HAVE to give him a font if no fontconfig */
688     ass_set_fonts_nofc( p_renderer, psz_font, psz_family );
689 #endif
690     memset( &p_ass->fmt, 0, sizeof(p_ass->fmt) );
691
692     /* */
693     val.p_address = p_ass;
694     var_Set( p_dec->p_libvlc, "libass-handle", val );
695
696     /* */
697     vlc_mutex_unlock( p_ass->p_lock );
698     return p_ass;
699
700 error:
701     if( p_renderer )
702         ass_renderer_done( p_renderer );
703     if( p_library )
704         ass_library_done( p_library );
705
706     free( p_ass );
707     vlc_mutex_unlock( p_lock );
708     return NULL;
709 }
710 static void AssHandleRelease( ass_handle_t *p_ass )
711 {
712     vlc_mutex_lock( p_ass->p_lock );
713     p_ass->i_refcount--;
714     if( p_ass->i_refcount > 0 )
715     {
716         vlc_mutex_unlock( p_ass->p_lock );
717         return;
718     }
719
720     ass_renderer_done( p_ass->p_renderer );
721     ass_library_done( p_ass->p_library );
722
723     vlc_value_t val;
724     val.p_address = NULL;
725     var_Set( p_ass->p_libvlc, "libass-handle", val );
726
727     vlc_mutex_unlock( p_ass->p_lock );
728     free( p_ass );
729 }
730