libass.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:25k
源码类别:

midi

开发平台:

Unix_Linux

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