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