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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_subpictures.c : subpicture management functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2007 the VideoLAN team
  5.  * $Id: 56baf3b80790c9b28b2d4c96f17ea07242d2751c $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Gildas Bazin <gbazin@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <vlc_vout.h>
  33. #include <vlc_block.h>
  34. #include <vlc_filter.h>
  35. #include <vlc_osd.h>
  36. #include "../libvlc.h"
  37. #include "vout_internal.h"
  38. #include <assert.h>
  39. #include <limits.h>
  40. /*****************************************************************************
  41.  * Local prototypes
  42.  *****************************************************************************/
  43. /* Number of simultaneous subpictures */
  44. #define VOUT_MAX_SUBPICTURES (__MAX(VOUT_MAX_PICTURES, SPU_MAX_PREPARE_TIME/5000))
  45. #define VLC_FOURCC_YUVP VLC_FOURCC('Y','U','V','P')
  46. #define VLC_FOURCC_YUVA VLC_FOURCC('Y','U','V','A')
  47. #define VLC_FOURCC_RGBA VLC_FOURCC('R','G','B','A')
  48. #define VLC_FOURCC_TEXT VLC_FOURCC('T','E','X','T')
  49. /* */
  50. typedef struct
  51. {
  52.     subpicture_t *p_subpicture;
  53.     bool          b_reject;
  54. } spu_heap_entry_t;
  55. typedef struct
  56. {
  57.     spu_heap_entry_t p_entry[VOUT_MAX_SUBPICTURES];
  58. } spu_heap_t;
  59. static void SpuHeapInit( spu_heap_t * );
  60. static int  SpuHeapPush( spu_heap_t *, subpicture_t * );
  61. static void SpuHeapDeleteAt( spu_heap_t *, int i_index );
  62. static int  SpuHeapDeleteSubpicture( spu_heap_t *, subpicture_t * );
  63. static void SpuHeapClean( spu_heap_t *p_heap );
  64. struct spu_private_t
  65. {
  66.     vlc_mutex_t lock;   /* lock to protect all followings fields */
  67.     spu_heap_t heap;
  68.     int i_channel;             /**< number of subpicture channels registered */
  69.     filter_t *p_blend;                            /**< alpha blending module */
  70.     filter_t *p_text;                              /**< text renderer module */
  71.     filter_t *p_scale_yuvp;                     /**< scaling module for YUVP */
  72.     filter_t *p_scale;                    /**< scaling module (all but YUVP) */
  73.     bool b_force_crop;                     /**< force cropping of subpicture */
  74.     int i_crop_x, i_crop_y, i_crop_width, i_crop_height;       /**< cropping */
  75.     int i_margin;                        /**< force position of a subpicture */
  76.     bool b_force_palette;             /**< force palette of subpicture */
  77.     uint8_t palette[4][4];                               /**< forced palette */
  78.     /* Subpiture filters */
  79.     char           *psz_chain_update;
  80.     filter_chain_t *p_chain;
  81.     /* */
  82.     mtime_t i_last_sort_date;
  83. };
  84. /* */
  85. struct subpicture_region_private_t
  86. {
  87.     video_format_t fmt;
  88.     picture_t      *p_picture;
  89. };
  90. static subpicture_region_private_t *SpuRegionPrivateNew( video_format_t * );
  91. static void SpuRegionPrivateDelete( subpicture_region_private_t * );
  92. /* */
  93. typedef struct
  94. {
  95.     int w;
  96.     int h;
  97. } spu_scale_t;
  98. static spu_scale_t spu_scale_create( int w, int h );
  99. static spu_scale_t spu_scale_unit(void );
  100. static spu_scale_t spu_scale_createq( int wn, int wd, int hn, int hd );
  101. static int spu_scale_w( int v, const spu_scale_t s );
  102. static int spu_scale_h( int v, const spu_scale_t s );
  103. static int spu_invscale_w( int v, const spu_scale_t s );
  104. static int spu_invscale_h( int v, const spu_scale_t s );
  105. typedef struct
  106. {
  107.     int i_x;
  108.     int i_y;
  109.     int i_width;
  110.     int i_height;
  111.     spu_scale_t scale;
  112. } spu_area_t;
  113. static spu_area_t spu_area_create( int x, int y, int w, int h, spu_scale_t );
  114. static spu_area_t spu_area_scaled( spu_area_t );
  115. static spu_area_t spu_area_unscaled( spu_area_t, spu_scale_t );
  116. static bool spu_area_overlap( spu_area_t, spu_area_t );
  117. /* Subpicture rendered flag
  118.  * FIXME ? it could be moved to private ? */
  119. #define SUBPICTURE_RENDERED  (0x1000)
  120. #if SUBPICTURE_RENDERED < SUBPICTURE_ALIGN_MASK
  121. #   error SUBPICTURE_RENDERED too low
  122. #endif
  123. #define SCALE_UNIT (1000)
  124. static void SubpictureChain( subpicture_t **pp_head, subpicture_t *p_subpic );
  125. static int SubpictureCmp( const void *s0, const void *s1 );
  126. static void SpuRenderRegion( spu_t *,
  127.                              picture_t *p_pic_dst, spu_area_t *,
  128.                              subpicture_t *, subpicture_region_t *,
  129.                              const spu_scale_t scale_size,
  130.                              const video_format_t *p_fmt,
  131.                              const spu_area_t *p_subtitle_area, int i_subtitle_area,
  132.                              mtime_t render_date );
  133. static void UpdateSPU   ( spu_t *, vlc_object_t * );
  134. static int  CropCallback( vlc_object_t *, char const *,
  135.                           vlc_value_t, vlc_value_t, void * );
  136. static int SpuControl( spu_t *, int, va_list );
  137. static void SpuClearChannel( spu_t *p_spu, int i_channel );
  138. /* Buffer allocation for SPU filter (blend, scale, ...) */
  139. static subpicture_t *spu_new_buffer( filter_t * );
  140. static void spu_del_buffer( filter_t *, subpicture_t * );
  141. static picture_t *spu_new_video_buffer( filter_t * );
  142. static void spu_del_video_buffer( filter_t *, picture_t * );
  143. /* Buffer aloccation fir SUB filter */
  144. static int SubFilterCallback( vlc_object_t *, char const *,
  145.                               vlc_value_t, vlc_value_t, void * );
  146. static int SubFilterAllocationInit( filter_t *, void * );
  147. static void SubFilterAllocationClean( filter_t * );
  148. /* */
  149. static void SpuRenderCreateAndLoadText( spu_t * );
  150. static void SpuRenderCreateAndLoadScale( spu_t * );
  151. static void SpuRenderCreateBlend( spu_t *, const video_format_t * );
  152. static void FilterRelease( filter_t *p_filter );
  153. /*****************************************************************************
  154.  * Public API
  155.  *****************************************************************************/
  156. /**
  157.  * Creates the subpicture unit
  158.  *
  159.  * param p_this the parent object which creates the subpicture unit
  160.  */
  161. spu_t *__spu_Create( vlc_object_t *p_this )
  162. {
  163.     spu_t *p_spu;
  164.     spu_private_t *p_sys;
  165.  
  166.     p_spu = vlc_custom_create( p_this, sizeof(spu_t) + sizeof(spu_private_t),
  167.                                VLC_OBJECT_GENERIC, "subpicture" );
  168.     if( !p_spu )
  169.         return NULL;
  170.     /* Initialize spu fields */
  171.     p_spu->pf_control = SpuControl;
  172.     p_spu->p = p_sys = (spu_private_t*)&p_spu[1];
  173.     /* Initialize private fields */
  174.     vlc_mutex_init( &p_sys->lock );
  175.     SpuHeapInit( &p_sys->heap );
  176.     p_sys->p_blend = NULL;
  177.     p_sys->p_text = NULL;
  178.     p_sys->p_scale = NULL;
  179.     p_sys->p_scale_yuvp = NULL;
  180.     /* Register the default subpicture channel */
  181.     p_sys->i_channel = 2;
  182.     vlc_object_attach( p_spu, p_this );
  183.     p_sys->psz_chain_update = NULL;
  184.     p_sys->p_chain = filter_chain_New( p_spu, "sub filter", false,
  185.                                        SubFilterAllocationInit,
  186.                                        SubFilterAllocationClean,
  187.                                        p_spu );
  188.     /* Load text and scale module */
  189.     SpuRenderCreateAndLoadText( p_spu );
  190.     SpuRenderCreateAndLoadScale( p_spu );
  191.     /* */
  192.     p_sys->i_last_sort_date = -1;
  193.     return p_spu;
  194. }
  195. /**
  196.  * Initialise the subpicture unit
  197.  *
  198.  * param p_spu the subpicture unit object
  199.  */
  200. int spu_Init( spu_t *p_spu )
  201. {
  202.     spu_private_t *p_sys = p_spu->p;
  203.     /* If the user requested a sub margin, we force the position. */
  204.     p_sys->i_margin = var_CreateGetInteger( p_spu, "sub-margin" );
  205.     var_Create( p_spu, "sub-filter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
  206.     var_AddCallback( p_spu, "sub-filter", SubFilterCallback, p_spu );
  207.     var_TriggerCallback( p_spu, "sub-filter" );
  208.     return VLC_SUCCESS;
  209. }
  210. /**
  211.  * Destroy the subpicture unit
  212.  *
  213.  * param p_this the parent object which destroys the subpicture unit
  214.  */
  215. void spu_Destroy( spu_t *p_spu )
  216. {
  217.     spu_private_t *p_sys = p_spu->p;
  218.     var_DelCallback( p_spu, "sub-filter", SubFilterCallback, p_spu );
  219.     if( p_sys->p_blend )
  220.         FilterRelease( p_sys->p_blend );
  221.     if( p_sys->p_text )
  222.         FilterRelease( p_sys->p_text );
  223.     if( p_sys->p_scale_yuvp )
  224.         FilterRelease( p_sys->p_scale_yuvp );
  225.     if( p_sys->p_scale )
  226.         FilterRelease( p_sys->p_scale );
  227.     filter_chain_Delete( p_sys->p_chain );
  228.     free( p_sys->psz_chain_update );
  229.     /* Destroy all remaining subpictures */
  230.     SpuHeapClean( &p_sys->heap );
  231.     vlc_mutex_destroy( &p_sys->lock );
  232.     vlc_object_release( p_spu );
  233. }
  234. /**
  235.  * Attach/Detach the SPU from any input
  236.  *
  237.  * param p_this the object in which to destroy the subpicture unit
  238.  * param b_attach to select attach or detach
  239.  */
  240. void spu_Attach( spu_t *p_spu, vlc_object_t *p_this, bool b_attach )
  241. {
  242.     vlc_object_t *p_input;
  243.     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_PARENT );
  244.     if( !p_input )
  245.         return;
  246.     if( b_attach )
  247.     {
  248.         UpdateSPU( p_spu, VLC_OBJECT(p_input) );
  249.         var_AddCallback( p_input, "highlight", CropCallback, p_spu );
  250.         vlc_object_release( p_input );
  251.     }
  252.     else
  253.     {
  254.         /* Delete callback */
  255.         var_DelCallback( p_input, "highlight", CropCallback, p_spu );
  256.         vlc_object_release( p_input );
  257.     }
  258. }
  259. /**
  260.  * Display a subpicture
  261.  *
  262.  * Remove the reservation flag of a subpicture, which will cause it to be
  263.  * ready for display.
  264.  * param p_spu the subpicture unit object
  265.  * param p_subpic the subpicture to display
  266.  */
  267. void spu_DisplaySubpicture( spu_t *p_spu, subpicture_t *p_subpic )
  268. {
  269.     spu_private_t *p_sys = p_spu->p;
  270.     /* DEFAULT_CHAN always reset itself */
  271.     if( p_subpic->i_channel == DEFAULT_CHAN )
  272.         SpuClearChannel( p_spu, DEFAULT_CHAN );
  273.     /* p_private is for spu only and cannot be non NULL here */
  274.     for( subpicture_region_t *r = p_subpic->p_region; r != NULL; r = r->p_next )
  275.         assert( r->p_private == NULL );
  276.     /* */
  277.     vlc_mutex_lock( &p_sys->lock );
  278.     if( SpuHeapPush( &p_sys->heap, p_subpic ) )
  279.     {
  280.         vlc_mutex_unlock( &p_sys->lock );
  281.         msg_Err( p_spu, "subpicture heap full" );
  282.         subpicture_Delete( p_subpic );
  283.         return;
  284.     }
  285.     vlc_mutex_unlock( &p_sys->lock );
  286. }
  287. /**
  288.  * This function renders all sub picture units in the list.
  289.  */
  290. void spu_RenderSubpicturesNew( spu_t *p_spu,
  291.                                picture_t *p_pic_dst, const video_format_t *p_fmt_dst,
  292.                                subpicture_t *p_subpic_list,
  293.                                const video_format_t *p_fmt_src,
  294.                                mtime_t render_subtitle_date )
  295. {
  296.     spu_private_t *p_sys = p_spu->p;
  297.     const mtime_t render_osd_date = mdate();
  298.     const int i_source_video_width  = p_fmt_src->i_width;
  299.     const int i_source_video_height = p_fmt_src->i_height;
  300.     unsigned int i_subpicture;
  301.     subpicture_t *pp_subpicture[VOUT_MAX_SUBPICTURES];
  302.     unsigned int i_subtitle_region_count;
  303.     spu_area_t p_subtitle_area_buffer[VOUT_MAX_SUBPICTURES];
  304.     spu_area_t *p_subtitle_area;
  305.     int i_subtitle_area;
  306.     vlc_mutex_lock( &p_sys->lock );
  307.     /* Preprocess subpictures */
  308.     i_subpicture = 0;
  309.     i_subtitle_region_count = 0;
  310.     for( subpicture_t * p_subpic = p_subpic_list;
  311.             p_subpic != NULL;
  312.                 p_subpic = p_subpic->p_next )
  313.     {
  314.         /* TODO remove pre-render */
  315.         if( p_subpic->pf_pre_render )
  316.             p_subpic->pf_pre_render( p_spu, p_subpic, p_fmt_dst );
  317.         if( p_subpic->pf_update_regions )
  318.         {
  319.             video_format_t fmt_org = *p_fmt_dst;
  320.             fmt_org.i_width =
  321.             fmt_org.i_visible_width = i_source_video_width;
  322.             fmt_org.i_height =
  323.             fmt_org.i_visible_height = i_source_video_height;
  324.             p_subpic->pf_update_regions( p_spu, p_subpic, &fmt_org,
  325.                                          p_subpic->b_subtitle ? render_subtitle_date : render_osd_date );
  326.         }
  327.         /* */
  328.         if( p_subpic->b_subtitle )
  329.         {
  330.             for( subpicture_region_t *r = p_subpic->p_region; r != NULL; r = r->p_next )
  331.                 i_subtitle_region_count++;
  332.         }
  333.         /* */
  334.         pp_subpicture[i_subpicture++] = p_subpic;
  335.     }
  336.     /* Be sure we have at least 1 picture to process */
  337.     if( i_subpicture <= 0 )
  338.     {
  339.         vlc_mutex_unlock( &p_sys->lock );
  340.         return;
  341.     }
  342.     /* Now order subpicture array
  343.      * XXX The order is *really* important for overlap subtitles positionning */
  344.     qsort( pp_subpicture, i_subpicture, sizeof(*pp_subpicture), SubpictureCmp );
  345.     /* Allocate area array for subtitle overlap */
  346.     i_subtitle_area = 0;
  347.     p_subtitle_area = p_subtitle_area_buffer;
  348.     if( i_subtitle_region_count > sizeof(p_subtitle_area_buffer)/sizeof(*p_subtitle_area_buffer) )
  349.         p_subtitle_area = calloc( i_subtitle_region_count, sizeof(*p_subtitle_area) );
  350.     /* Create the blending module */
  351.     if( !p_sys->p_blend )
  352.         SpuRenderCreateBlend( p_spu, p_fmt_dst );
  353.     /* Process all subpictures and regions (in the right order) */
  354.     for( unsigned int i_index = 0; i_index < i_subpicture; i_index++ )
  355.     {
  356.         subpicture_t *p_subpic = pp_subpicture[i_index];
  357.         subpicture_region_t *p_region;
  358.         if( !p_subpic->p_region )
  359.             continue;
  360.         /* FIXME when possible use a better rendering size than source size
  361.          * (max of display size and source size for example) FIXME */
  362.         int i_render_width  = p_subpic->i_original_picture_width;
  363.         int i_render_height = p_subpic->i_original_picture_height;
  364.         if( !i_render_width || !i_render_height )
  365.         {
  366.             if( i_render_width != 0 || i_render_height != 0 )
  367.                 msg_Err( p_spu, "unsupported original picture size %dx%d",
  368.                          i_render_width, i_render_height );
  369.             p_subpic->i_original_picture_width  = i_render_width = i_source_video_width;
  370.             p_subpic->i_original_picture_height = i_render_height = i_source_video_height;
  371.         }
  372.         if( p_sys->p_text )
  373.         {
  374.             p_sys->p_text->fmt_out.video.i_width          =
  375.             p_sys->p_text->fmt_out.video.i_visible_width  = i_render_width;
  376.             p_sys->p_text->fmt_out.video.i_height         =
  377.             p_sys->p_text->fmt_out.video.i_visible_height = i_render_height;
  378.         }
  379.         /* Compute scaling from picture to source size */
  380.         spu_scale_t scale = spu_scale_createq( i_source_video_width,  i_render_width,
  381.                                                i_source_video_height, i_render_height );
  382.         /* Update scaling from source size to display size(p_fmt_dst) */
  383.         scale.w = scale.w * p_fmt_dst->i_width  / i_source_video_width;
  384.         scale.h = scale.h * p_fmt_dst->i_height / i_source_video_height;
  385.         /* Set default subpicture aspect ratio
  386.          * FIXME if we only handle 1 aspect ratio per picture, why is it set per
  387.          * region ? */
  388.         p_region = p_subpic->p_region;
  389.         if( !p_region->fmt.i_sar_num || !p_region->fmt.i_sar_den )
  390.         {
  391.             if( p_region->fmt.i_aspect != 0 )
  392.             {
  393.                 p_region->fmt.i_sar_den = p_region->fmt.i_aspect;
  394.                 p_region->fmt.i_sar_num = VOUT_ASPECT_FACTOR;
  395.             }
  396.             else
  397.             {
  398.                 p_region->fmt.i_sar_den = p_fmt_dst->i_sar_den;
  399.                 p_region->fmt.i_sar_num = p_fmt_dst->i_sar_num;
  400.             }
  401.         }
  402.         /* Take care of the aspect ratio */
  403.         if( p_region->fmt.i_sar_num * p_fmt_dst->i_sar_den !=
  404.             p_region->fmt.i_sar_den * p_fmt_dst->i_sar_num )
  405.         {
  406.             /* FIXME FIXME what about region->i_x/i_y ? */
  407.             scale.w = scale.w *
  408.                 (int64_t)p_region->fmt.i_sar_num * p_fmt_dst->i_sar_den /
  409.                 p_region->fmt.i_sar_den / p_fmt_dst->i_sar_num;
  410.         }
  411.         /* Render all regions
  412.          * We always transform non absolute subtitle into absolute one on the
  413.          * first rendering to allow good subtitle overlap support.
  414.          */
  415.         for( p_region = p_subpic->p_region; p_region != NULL; p_region = p_region->p_next )
  416.         {
  417.             spu_area_t area;
  418.             /* Check scale validity */
  419.             if( scale.w <= 0 || scale.h <= 0 )
  420.                 continue;
  421.             /* */
  422.             SpuRenderRegion( p_spu, p_pic_dst, &area,
  423.                              p_subpic, p_region, scale, p_fmt_dst,
  424.                              p_subtitle_area, i_subtitle_area,
  425.                              p_subpic->b_subtitle ? render_subtitle_date : render_osd_date );
  426.             if( p_subpic->b_subtitle )
  427.             {
  428.                 area = spu_area_unscaled( area, scale );
  429.                 if( !p_subpic->b_absolute && area.i_width > 0 && area.i_height > 0 )
  430.                 {
  431.                     p_region->i_x = area.i_x;
  432.                     p_region->i_y = area.i_y;
  433.                 }
  434.                 if( p_subtitle_area )
  435.                     p_subtitle_area[i_subtitle_area++] = area;
  436.             }
  437.         }
  438.         if( p_subpic->b_subtitle )
  439.             p_subpic->b_absolute = true;
  440.     }
  441.     /* */
  442.     if( p_subtitle_area != p_subtitle_area_buffer )
  443.         free( p_subtitle_area );
  444.     vlc_mutex_unlock( &p_sys->lock );
  445. }
  446. void spu_RenderSubpictures( spu_t *p_spu,
  447.                             picture_t *p_pic_dst, const video_format_t *p_fmt_dst,
  448.                             subpicture_t *p_subpic_list,
  449.                             const video_format_t *p_fmt_src,
  450.                             bool b_paused )
  451. {
  452.     VLC_UNUSED(b_paused);
  453.     spu_RenderSubpictures( p_spu, p_pic_dst, p_fmt_dst,
  454.                            p_subpic_list, p_fmt_src, mdate() );
  455. }
  456. /*****************************************************************************
  457.  * spu_SortSubpictures: find the subpictures to display
  458.  *****************************************************************************
  459.  * This function parses all subpictures and decides which ones need to be
  460.  * displayed. If no picture has been selected, display_date will depend on
  461.  * the subpicture.
  462.  * We also check for ephemer DVD subpictures (subpictures that have
  463.  * to be removed if a newer one is available), which makes it a lot
  464.  * more difficult to guess if a subpicture has to be rendered or not.
  465.  *****************************************************************************/
  466. subpicture_t *spu_SortSubpicturesNew( spu_t *p_spu, mtime_t render_subtitle_date,
  467.                                       bool b_subtitle_only )
  468. {
  469.     spu_private_t *p_sys = p_spu->p;
  470.     int i_channel;
  471.     subpicture_t *p_subpic = NULL;
  472.     const mtime_t render_osd_date = mdate();
  473.     /* Update sub-filter chain */
  474.     vlc_mutex_lock( &p_sys->lock );
  475.     char *psz_chain_update = p_sys->psz_chain_update;
  476.     p_sys->psz_chain_update = NULL;
  477.     vlc_mutex_unlock( &p_sys->lock );
  478.     if( psz_chain_update )
  479.     {
  480.         filter_chain_Reset( p_sys->p_chain, NULL, NULL );
  481.         filter_chain_AppendFromString( p_spu->p->p_chain, psz_chain_update );
  482.         free( psz_chain_update );
  483.     }
  484.     /* Run subpicture filters */
  485.     filter_chain_SubFilter( p_sys->p_chain, render_osd_date );
  486.     vlc_mutex_lock( &p_sys->lock );
  487.     /* We get an easily parsable chained list of subpictures which
  488.      * ends with NULL since p_subpic was initialized to NULL. */
  489.     for( i_channel = 0; i_channel < p_sys->i_channel; i_channel++ )
  490.     {
  491.         subpicture_t *p_available_subpic[VOUT_MAX_SUBPICTURES];
  492.         bool         pb_available_late[VOUT_MAX_SUBPICTURES];
  493.         int          i_available = 0;
  494.         mtime_t      start_date = render_subtitle_date;
  495.         mtime_t      ephemer_subtitle_date = 0;
  496.         mtime_t      ephemer_osd_date = 0;
  497.         int64_t      i_ephemer_subtitle_order = INT64_MIN;
  498.         int64_t      i_ephemer_system_order = INT64_MIN;
  499.         int i_index;
  500.         /* Select available pictures */
  501.         for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++ )
  502.         {
  503.             spu_heap_entry_t *p_entry = &p_sys->heap.p_entry[i_index];
  504.             subpicture_t *p_current = p_entry->p_subpicture;
  505.             bool b_stop_valid;
  506.             bool b_late;
  507.             if( !p_current || p_entry->b_reject )
  508.             {
  509.                 if( p_entry->b_reject )
  510.                     SpuHeapDeleteAt( &p_sys->heap, i_index );
  511.                 continue;
  512.             }
  513.             if( p_current->i_channel != i_channel ||
  514.                 ( b_subtitle_only && !p_current->b_subtitle ) )
  515.             {
  516.                 continue;
  517.             }
  518.             const mtime_t render_date = p_current->b_subtitle ? render_subtitle_date : render_osd_date;
  519.             if( render_date &&
  520.                 render_date < p_current->i_start )
  521.             {
  522.                 /* Too early, come back next monday */
  523.                 continue;
  524.             }
  525.             mtime_t *pi_ephemer_date  = p_current->b_subtitle ? &ephemer_subtitle_date : &ephemer_osd_date;
  526.             int64_t *pi_ephemer_order = p_current->b_subtitle ? &i_ephemer_subtitle_order : &i_ephemer_system_order;
  527.             if( p_current->i_start >= *pi_ephemer_date )
  528.             {
  529.                 *pi_ephemer_date = p_current->i_start;
  530.                 if( p_current->i_order > *pi_ephemer_order )
  531.                     *pi_ephemer_order = p_current->i_order;
  532.             }
  533.             b_stop_valid = !p_current->b_ephemer || p_current->i_stop > p_current->i_start;
  534.             b_late = b_stop_valid && p_current->i_stop <= render_date;
  535.             /* start_date will be used for correct automatic overlap support
  536.              * in case picture that should not be displayed anymore (display_time)
  537.              * overlap with a picture to be displayed (p_current->i_start)  */
  538.             if( p_current->b_subtitle && !b_late && !p_current->b_ephemer )
  539.                 start_date = p_current->i_start;
  540.             /* */
  541.             p_available_subpic[i_available] = p_current;
  542.             pb_available_late[i_available] = b_late;
  543.             i_available++;
  544.         }
  545.         /* Only forced old picture display at the transition */
  546.         if( start_date < p_sys->i_last_sort_date )
  547.             start_date = p_sys->i_last_sort_date;
  548.         if( start_date <= 0 )
  549.             start_date = INT64_MAX;
  550.         /* Select pictures to be displayed */
  551.         for( i_index = 0; i_index < i_available; i_index++ )
  552.         {
  553.             subpicture_t *p_current = p_available_subpic[i_index];
  554.             bool b_late = pb_available_late[i_index];
  555.             const mtime_t stop_date = p_current->b_subtitle ? __MAX( start_date, p_sys->i_last_sort_date ) : render_osd_date;
  556.             const mtime_t ephemer_date = p_current->b_subtitle ? ephemer_subtitle_date : ephemer_osd_date;
  557.             const int64_t i_ephemer_order = p_current->b_subtitle ? i_ephemer_subtitle_order : i_ephemer_system_order;
  558.             /* Destroy late and obsolete ephemer subpictures */
  559.             bool b_rejet = b_late && p_current->i_stop <= stop_date;
  560.             if( p_current->b_ephemer )
  561.             {
  562.                 if( p_current->i_start < ephemer_date )
  563.                     b_rejet = true;
  564.                 else if( p_current->i_start == ephemer_date &&
  565.                          p_current->i_order < i_ephemer_order )
  566.                     b_rejet = true;
  567.             }
  568.             if( b_rejet )
  569.                 SpuHeapDeleteSubpicture( &p_sys->heap, p_current );
  570.             else
  571.                 SubpictureChain( &p_subpic, p_current );
  572.         }
  573.     }
  574.     p_sys->i_last_sort_date = render_subtitle_date;
  575.     vlc_mutex_unlock( &p_sys->lock );
  576.     return p_subpic;
  577. }
  578. subpicture_t *spu_SortSubpictures( spu_t *p_spu, mtime_t display_date, bool b_paused,
  579.                                    bool b_subtitle_only )
  580. {
  581.     VLC_UNUSED(b_paused);
  582.     return spu_SortSubpicturesNew( p_spu, display_date, b_subtitle_only );
  583. }
  584. void spu_OffsetSubtitleDate( spu_t *p_spu, mtime_t i_duration )
  585. {
  586.     spu_private_t *p_sys = p_spu->p;
  587.     vlc_mutex_lock( &p_sys->lock );
  588.     for( int i = 0; i < VOUT_MAX_SUBPICTURES; i++ )
  589.     {
  590.         spu_heap_entry_t *p_entry = &p_sys->heap.p_entry[i];
  591.         subpicture_t *p_current = p_entry->p_subpicture;
  592.         if( p_current && p_current->b_subtitle )
  593.         {
  594.             if( p_current->i_start > 0 )
  595.                 p_current->i_start += i_duration;
  596.             if( p_current->i_stop > 0 )
  597.                 p_current->i_stop += i_duration;
  598.         }
  599.     }
  600.     vlc_mutex_unlock( &p_sys->lock );
  601. }
  602. /*****************************************************************************
  603.  * subpicture_t allocation
  604.  *****************************************************************************/
  605. subpicture_t *subpicture_New( void )
  606. {
  607.     subpicture_t *p_subpic = calloc( 1, sizeof(*p_subpic) );
  608.     if( !p_subpic )
  609.         return NULL;
  610.     p_subpic->i_order    = 0;
  611.     p_subpic->b_absolute = true;
  612.     p_subpic->b_fade     = false;
  613.     p_subpic->b_subtitle = false;
  614.     p_subpic->i_alpha    = 0xFF;
  615.     p_subpic->p_region   = NULL;
  616.     p_subpic->pf_render  = NULL;
  617.     p_subpic->pf_destroy = NULL;
  618.     p_subpic->p_sys      = NULL;
  619.     return p_subpic;
  620. }
  621. void subpicture_Delete( subpicture_t *p_subpic )
  622. {
  623.     subpicture_region_ChainDelete( p_subpic->p_region );
  624.     p_subpic->p_region = NULL;
  625.     if( p_subpic->pf_destroy )
  626.     {
  627.         p_subpic->pf_destroy( p_subpic );
  628.     }
  629.     free( p_subpic );
  630. }
  631. static void SubpictureChain( subpicture_t **pp_head, subpicture_t *p_subpic )
  632. {
  633.     p_subpic->p_next = *pp_head;
  634.     *pp_head = p_subpic;
  635. }
  636. /*****************************************************************************
  637.  * subpicture_region_t allocation
  638.  *****************************************************************************/
  639. subpicture_region_t *subpicture_region_New( const video_format_t *p_fmt )
  640. {
  641.     subpicture_region_t *p_region = calloc( 1, sizeof(*p_region ) );
  642.     if( !p_region )
  643.         return NULL;
  644.     p_region->fmt = *p_fmt;
  645.     p_region->fmt.p_palette = NULL;
  646.     if( p_fmt->i_chroma == VLC_FOURCC_YUVP )
  647.     {
  648.         p_region->fmt.p_palette = calloc( 1, sizeof(*p_region->fmt.p_palette) );
  649.         if( p_fmt->p_palette )
  650.             *p_region->fmt.p_palette = *p_fmt->p_palette;
  651.     }
  652.     p_region->i_alpha = 0xff;
  653.     p_region->p_next = NULL;
  654.     p_region->p_private = NULL;
  655.     p_region->psz_text = NULL;
  656.     p_region->p_style = NULL;
  657.     p_region->p_picture = NULL;
  658.     if( p_fmt->i_chroma == VLC_FOURCC_TEXT )
  659.         return p_region;
  660.     p_region->p_picture = picture_New( p_fmt->i_chroma, p_fmt->i_width, p_fmt->i_height,
  661.                                        p_fmt->i_aspect );
  662.     if( !p_region->p_picture )
  663.     {
  664.         free( p_fmt->p_palette );
  665.         free( p_region );
  666.         return NULL;
  667.     }
  668.     return p_region;
  669. }
  670. /* */
  671. void subpicture_region_Delete( subpicture_region_t *p_region )
  672. {
  673.     if( !p_region )
  674.         return;
  675.     if( p_region->p_private )
  676.         SpuRegionPrivateDelete( p_region->p_private );
  677.     if( p_region->p_picture )
  678.         picture_Release( p_region->p_picture );
  679.     free( p_region->fmt.p_palette );
  680.     free( p_region->psz_text );
  681.     free( p_region->psz_html );
  682.     //free( p_region->p_style ); FIXME --fenrir plugin does not allocate the memory for it. I think it might lead to segfault, video renderer can live longer than the decoder
  683.     free( p_region );
  684. }
  685. /* */
  686. void subpicture_region_ChainDelete( subpicture_region_t *p_head )
  687. {
  688.     while( p_head )
  689.     {
  690.         subpicture_region_t *p_next = p_head->p_next;
  691.         subpicture_region_Delete( p_head );
  692.         p_head = p_next;
  693.     }
  694. }
  695. /*****************************************************************************
  696.  * heap managment
  697.  *****************************************************************************/
  698. static void SpuHeapInit( spu_heap_t *p_heap )
  699. {
  700.     for( int i = 0; i < VOUT_MAX_SUBPICTURES; i++ )
  701.     {
  702.         spu_heap_entry_t *e = &p_heap->p_entry[i];
  703.         e->p_subpicture = NULL;
  704.         e->b_reject = false;
  705.     }
  706. }
  707. static int SpuHeapPush( spu_heap_t *p_heap, subpicture_t *p_subpic )
  708. {
  709.     for( int i = 0; i < VOUT_MAX_SUBPICTURES; i++ )
  710.     {
  711.         spu_heap_entry_t *e = &p_heap->p_entry[i];
  712.         if( e->p_subpicture )
  713.             continue;
  714.         e->p_subpicture = p_subpic;
  715.         e->b_reject = false;
  716.         return VLC_SUCCESS;
  717.     }
  718.     return VLC_EGENERIC;
  719. }
  720. static void SpuHeapDeleteAt( spu_heap_t *p_heap, int i_index )
  721. {
  722.     spu_heap_entry_t *e = &p_heap->p_entry[i_index];
  723.     if( e->p_subpicture )
  724.         subpicture_Delete( e->p_subpicture );
  725.     e->p_subpicture = NULL;
  726. }
  727. static int SpuHeapDeleteSubpicture( spu_heap_t *p_heap, subpicture_t *p_subpic )
  728. {
  729.     for( int i = 0; i < VOUT_MAX_SUBPICTURES; i++ )
  730.     {
  731.         spu_heap_entry_t *e = &p_heap->p_entry[i];
  732.         if( e->p_subpicture != p_subpic )
  733.             continue;
  734.         SpuHeapDeleteAt( p_heap, i );
  735.         return VLC_SUCCESS;
  736.     }
  737.     return VLC_EGENERIC;
  738. }
  739. static void SpuHeapClean( spu_heap_t *p_heap )
  740. {
  741.     for( int i = 0; i < VOUT_MAX_SUBPICTURES; i++ )
  742.     {
  743.         spu_heap_entry_t *e = &p_heap->p_entry[i];
  744.         if( e->p_subpicture )
  745.             subpicture_Delete( e->p_subpicture );
  746.     }
  747. }
  748. static subpicture_region_private_t *SpuRegionPrivateNew( video_format_t *p_fmt )
  749. {
  750.     subpicture_region_private_t *p_private = malloc( sizeof(*p_private) );
  751.     if( !p_private )
  752.         return NULL;
  753.     p_private->fmt = *p_fmt;
  754.     if( p_fmt->p_palette )
  755.     {
  756.         p_private->fmt.p_palette = malloc( sizeof(*p_private->fmt.p_palette) );
  757.         if( p_private->fmt.p_palette )
  758.             *p_private->fmt.p_palette = *p_fmt->p_palette;
  759.     }
  760.     p_private->p_picture = NULL;
  761.     return p_private;
  762. }
  763. static void SpuRegionPrivateDelete( subpicture_region_private_t *p_private )
  764. {
  765.     if( p_private->p_picture )
  766.         picture_Release( p_private->p_picture );
  767.     free( p_private->fmt.p_palette );
  768.     free( p_private );
  769. }
  770. static void FilterRelease( filter_t *p_filter )
  771. {
  772.     if( p_filter->p_module )
  773.         module_unneed( p_filter, p_filter->p_module );
  774.     vlc_object_detach( p_filter );
  775.     vlc_object_release( p_filter );
  776. }
  777. static void SpuRenderCreateBlend( spu_t *p_spu, const video_format_t *p_fmt )
  778. {
  779.     filter_t *p_blend;
  780.     assert( !p_spu->p->p_blend );
  781.     p_spu->p->p_blend =
  782.     p_blend        = vlc_custom_create( p_spu, sizeof(filter_t),
  783.                                         VLC_OBJECT_GENERIC, "blend" );
  784.     if( !p_blend )
  785.         return;
  786.     es_format_Init( &p_blend->fmt_in, VIDEO_ES, 0 );
  787.     es_format_Init( &p_blend->fmt_out, VIDEO_ES, 0 );
  788.     p_blend->fmt_out.video.i_x_offset = 0;
  789.     p_blend->fmt_out.video.i_y_offset = 0;
  790.     p_blend->fmt_out.video.i_chroma = p_fmt->i_chroma;
  791.     p_blend->fmt_out.video.i_aspect = p_fmt->i_aspect;
  792.     p_blend->fmt_out.video.i_chroma = p_fmt->i_chroma;
  793.     p_blend->fmt_out.video.i_rmask  = p_fmt->i_rmask;
  794.     p_blend->fmt_out.video.i_gmask  = p_fmt->i_gmask;
  795.     p_blend->fmt_out.video.i_bmask  = p_fmt->i_bmask;
  796.     p_blend->fmt_out.video.i_rrshift= p_fmt->i_rrshift;
  797.     p_blend->fmt_out.video.i_rgshift= p_fmt->i_rgshift;
  798.     p_blend->fmt_out.video.i_rbshift= p_fmt->i_rbshift;
  799.     p_blend->fmt_out.video.i_lrshift= p_fmt->i_lrshift;
  800.     p_blend->fmt_out.video.i_lgshift= p_fmt->i_lgshift;
  801.     p_blend->fmt_out.video.i_lbshift= p_fmt->i_lbshift;
  802.     /* The blend module will be loaded when needed with the real
  803.     * input format */
  804.     p_blend->p_module = NULL;
  805.     /* */
  806.     vlc_object_attach( p_blend, p_spu );
  807. }
  808. static void SpuRenderUpdateBlend( spu_t *p_spu, int i_out_width, int i_out_height,
  809.                                   const video_format_t *p_in_fmt )
  810. {
  811.     filter_t *p_blend = p_spu->p->p_blend;
  812.     assert( p_blend );
  813.     /* */
  814.     if( p_blend->p_module && p_blend->fmt_in.video.i_chroma != p_in_fmt->i_chroma )
  815.     {
  816.         /* The chroma is not the same, we need to reload the blend module
  817.          * XXX to match the old behaviour just test !p_blend->fmt_in.video.i_chroma */
  818.         module_unneed( p_blend, p_blend->p_module );
  819.         p_blend->p_module = NULL;
  820.     }
  821.     /* */
  822.     p_blend->fmt_in.video = *p_in_fmt;
  823.     /* */
  824.     p_blend->fmt_out.video.i_width =
  825.     p_blend->fmt_out.video.i_visible_width = i_out_width;
  826.     p_blend->fmt_out.video.i_height =
  827.     p_blend->fmt_out.video.i_visible_height = i_out_height;
  828.     /* */
  829.     if( !p_blend->p_module )
  830.         p_blend->p_module = module_need( p_blend, "video blending", NULL, false );
  831. }
  832. static void SpuRenderCreateAndLoadText( spu_t *p_spu )
  833. {
  834.     filter_t *p_text;
  835.     assert( !p_spu->p->p_text );
  836.     p_spu->p->p_text =
  837.     p_text        = vlc_custom_create( p_spu, sizeof(filter_t),
  838.                                        VLC_OBJECT_GENERIC, "spu text" );
  839.     if( !p_text )
  840.         return;
  841.     es_format_Init( &p_text->fmt_in, VIDEO_ES, 0 );
  842.     es_format_Init( &p_text->fmt_out, VIDEO_ES, 0 );
  843.     p_text->fmt_out.video.i_width =
  844.     p_text->fmt_out.video.i_visible_width = 32;
  845.     p_text->fmt_out.video.i_height =
  846.     p_text->fmt_out.video.i_visible_height = 32;
  847.     p_text->pf_sub_buffer_new = spu_new_buffer;
  848.     p_text->pf_sub_buffer_del = spu_del_buffer;
  849.     vlc_object_attach( p_text, p_spu );
  850.     /* FIXME TOCHECK shouldn't module_need( , , psz_modulename, false ) do the
  851.      * same than these 2 calls ? */
  852.     char *psz_modulename = var_CreateGetString( p_spu, "text-renderer" );
  853.     if( psz_modulename && *psz_modulename )
  854.     {
  855.         p_text->p_module = module_need( p_text, "text renderer",
  856.                                         psz_modulename, true );
  857.     }
  858.     free( psz_modulename );
  859.     if( !p_text->p_module )
  860.         p_text->p_module = module_need( p_text, "text renderer", NULL, false );
  861.     /* Create a few variables used for enhanced text rendering */
  862.     var_Create( p_text, "spu-duration", VLC_VAR_TIME );
  863.     var_Create( p_text, "spu-elapsed", VLC_VAR_TIME );
  864.     var_Create( p_text, "text-rerender", VLC_VAR_BOOL );
  865.     var_Create( p_text, "scale", VLC_VAR_INTEGER );
  866. }
  867. static filter_t *CreateAndLoadScale( vlc_object_t *p_obj,
  868.                                      vlc_fourcc_t i_src_chroma, vlc_fourcc_t i_dst_chroma,
  869.                                      bool b_resize )
  870. {
  871.     filter_t *p_scale;
  872.     p_scale = vlc_custom_create( p_obj, sizeof(filter_t),
  873.                                  VLC_OBJECT_GENERIC, "scale" );
  874.     if( !p_scale )
  875.         return NULL;
  876.     es_format_Init( &p_scale->fmt_in, VIDEO_ES, 0 );
  877.     p_scale->fmt_in.video.i_chroma = i_src_chroma;
  878.     p_scale->fmt_in.video.i_width =
  879.     p_scale->fmt_in.video.i_height = 32;
  880.     es_format_Init( &p_scale->fmt_out, VIDEO_ES, 0 );
  881.     p_scale->fmt_out.video.i_chroma = i_dst_chroma;
  882.     p_scale->fmt_out.video.i_width =
  883.     p_scale->fmt_out.video.i_height = b_resize ? 16 : 32;
  884.     p_scale->pf_vout_buffer_new = spu_new_video_buffer;
  885.     p_scale->pf_vout_buffer_del = spu_del_video_buffer;
  886.     vlc_object_attach( p_scale, p_obj );
  887.     p_scale->p_module = module_need( p_scale, "video filter2", NULL, false );
  888.     return p_scale;
  889. }
  890. static void SpuRenderCreateAndLoadScale( spu_t *p_spu )
  891. {
  892.     assert( !p_spu->p->p_scale );
  893.     assert( !p_spu->p->p_scale_yuvp );
  894.     /* XXX p_spu->p_scale is used for all conversion/scaling except yuvp to
  895.      * yuva/rgba */
  896.     p_spu->p->p_scale = CreateAndLoadScale( VLC_OBJECT(p_spu),
  897.                                             VLC_FOURCC_YUVA, VLC_FOURCC_YUVA, true );
  898.     /* This one is used for YUVP to YUVA/RGBA without scaling
  899.      * FIXME rename it */
  900.     p_spu->p->p_scale_yuvp = CreateAndLoadScale( VLC_OBJECT(p_spu),
  901.                                                  VLC_FOURCC_YUVP, VLC_FOURCC_YUVA, false );
  902. }
  903. static void SpuRenderText( spu_t *p_spu, bool *pb_rerender_text,
  904.                            subpicture_t *p_subpic, subpicture_region_t *p_region,
  905.                            int i_min_scale_ratio, mtime_t render_date )
  906. {
  907.     filter_t *p_text = p_spu->p->p_text;
  908.     assert( p_region->fmt.i_chroma == VLC_FOURCC_TEXT );
  909.     if( !p_text || !p_text->p_module )
  910.         goto exit;
  911.     /* Setup 3 variables which can be used to render
  912.      * time-dependent text (and effects). The first indicates
  913.      * the total amount of time the text will be on screen,
  914.      * the second the amount of time it has already been on
  915.      * screen (can be a negative value as text is layed out
  916.      * before it is rendered) and the third is a feedback
  917.      * variable from the renderer - if the renderer sets it
  918.      * then this particular text is time-dependent, eg. the
  919.      * visual progress bar inside the text in karaoke and the
  920.      * text needs to be rendered multiple times in order for
  921.      * the effect to work - we therefore need to return the
  922.      * region to its original state at the end of the loop,
  923.      * instead of leaving it in YUVA or YUVP.
  924.      * Any renderer which is unaware of how to render
  925.      * time-dependent text can happily ignore the variables
  926.      * and render the text the same as usual - it should at
  927.      * least show up on screen, but the effect won't change
  928.      * the text over time.
  929.      */
  930.     var_SetTime( p_text, "spu-duration", p_subpic->i_stop - p_subpic->i_start );
  931.     var_SetTime( p_text, "spu-elapsed", render_date );
  932.     var_SetBool( p_text, "text-rerender", false );
  933.     var_SetInteger( p_text, "scale", i_min_scale_ratio );
  934.     if( p_text->pf_render_html && p_region->psz_html )
  935.     {
  936.         p_text->pf_render_html( p_text, p_region, p_region );
  937.     }
  938.     else if( p_text->pf_render_text )
  939.     {
  940.         p_text->pf_render_text( p_text, p_region, p_region );
  941.     }
  942.     *pb_rerender_text = var_GetBool( p_text, "text-rerender" );
  943. exit:
  944.     p_region->i_align |= SUBPICTURE_RENDERED;
  945. }
  946. /**
  947.  * A few scale functions helpers.
  948.  */
  949. static spu_scale_t spu_scale_create( int w, int h )
  950. {
  951.     spu_scale_t s = { .w = w, .h = h };
  952.     if( s.w <= 0 )
  953.         s.w = SCALE_UNIT;
  954.     if( s.h <= 0 )
  955.         s.h = SCALE_UNIT;
  956.     return s;
  957. }
  958. static spu_scale_t spu_scale_unit( void )
  959. {
  960.     return spu_scale_create( SCALE_UNIT, SCALE_UNIT );
  961. }
  962. static spu_scale_t spu_scale_createq( int wn, int wd, int hn, int hd )
  963. {
  964.     return spu_scale_create( wn * SCALE_UNIT / wd,
  965.                              hn * SCALE_UNIT / hd );
  966. }
  967. static int spu_scale_w( int v, const spu_scale_t s )
  968. {
  969.     return v * s.w / SCALE_UNIT;
  970. }
  971. static int spu_scale_h( int v, const spu_scale_t s )
  972. {
  973.     return v * s.h / SCALE_UNIT;
  974. }
  975. static int spu_invscale_w( int v, const spu_scale_t s )
  976. {
  977.     return v * SCALE_UNIT / s.w;
  978. }
  979. static int spu_invscale_h( int v, const spu_scale_t s )
  980. {
  981.     return v * SCALE_UNIT / s.h;
  982. }
  983. /**
  984.  * A few area functions helpers
  985.  */
  986. static spu_area_t spu_area_create( int x, int y, int w, int h, spu_scale_t s )
  987. {
  988.     spu_area_t a = { .i_x = x, .i_y = y, .i_width = w, .i_height = h, .scale = s };
  989.     return a;
  990. }
  991. static spu_area_t spu_area_scaled( spu_area_t a )
  992. {
  993.     if( a.scale.w == SCALE_UNIT && a.scale.h == SCALE_UNIT )
  994.         return a;
  995.     a.i_x = spu_scale_w( a.i_x, a.scale );
  996.     a.i_y = spu_scale_h( a.i_y, a.scale );
  997.     a.i_width  = spu_scale_w( a.i_width,  a.scale );
  998.     a.i_height = spu_scale_h( a.i_height, a.scale );
  999.     a.scale = spu_scale_unit();
  1000.     return a;
  1001. }
  1002. static spu_area_t spu_area_unscaled( spu_area_t a, spu_scale_t s )
  1003. {
  1004.     if( a.scale.w == s.w && a.scale.h == s.h )
  1005.         return a;
  1006.     a = spu_area_scaled( a );
  1007.     a.i_x = spu_invscale_w( a.i_x, s );
  1008.     a.i_y = spu_invscale_h( a.i_y, s );
  1009.     a.i_width  = spu_invscale_w( a.i_width, s );
  1010.     a.i_height = spu_invscale_h( a.i_height, s );
  1011.     a.scale = s;
  1012.     return a;
  1013. }
  1014. static bool spu_area_overlap( spu_area_t a, spu_area_t b )
  1015. {
  1016.     const int i_dx = 0;
  1017.     const int i_dy = 0;
  1018.     a = spu_area_scaled( a );
  1019.     b = spu_area_scaled( b );
  1020.     return  __MAX( a.i_x-i_dx, b.i_x ) < __MIN( a.i_x+a.i_width +i_dx, b.i_x+b.i_width  ) &&
  1021.             __MAX( a.i_y-i_dy, b.i_y ) < __MIN( a.i_y+a.i_height+i_dy, b.i_y+b.i_height );
  1022. }
  1023. /**
  1024.  * Avoid area overlapping
  1025.  */
  1026. static void SpuAreaFixOverlap( spu_area_t *p_dst,
  1027.                                const spu_area_t *p_master,
  1028.                                const spu_area_t *p_sub, int i_sub, int i_align )
  1029. {
  1030.     spu_area_t a = spu_area_scaled( *p_dst );
  1031.     bool b_moved = false;
  1032.     bool b_ok;
  1033.     assert( p_master->i_x == 0 && p_master->i_y == 0 );
  1034.     /* Check for overlap
  1035.      * XXX It is not fast O(n^2) but we should not have a lot of region */
  1036.     do
  1037.     {
  1038.         b_ok = true;
  1039.         for( int i = 0; i < i_sub; i++ )
  1040.         {
  1041.             spu_area_t sub = spu_area_scaled( p_sub[i] );
  1042.             if( !spu_area_overlap( a, sub ) )
  1043.                 continue;
  1044.             if( i_align & SUBPICTURE_ALIGN_TOP )
  1045.             {
  1046.                 /* We go down */
  1047.                 int i_y = sub.i_y + sub.i_height;
  1048.                 if( i_y + a.i_height > p_master->i_height )
  1049.                     break;
  1050.                 a.i_y = i_y;
  1051.                 b_moved = true;
  1052.             }
  1053.             else if( i_align & SUBPICTURE_ALIGN_BOTTOM )
  1054.             {
  1055.                 /* We go up */
  1056.                 int i_y = sub.i_y - a.i_height;
  1057.                 if( i_y < 0 )
  1058.                     break;
  1059.                 a.i_y = i_y;
  1060.                 b_moved = true;
  1061.             }
  1062.             else
  1063.             {
  1064.                 /* TODO what to do in this case? */
  1065.                 //fprintf( stderr, "Overlap with unsupported alignmentn" );
  1066.                 break;
  1067.             }
  1068.             b_ok = false;
  1069.             break;
  1070.         }
  1071.     } while( !b_ok );
  1072.     if( b_moved )
  1073.         *p_dst = spu_area_unscaled( a, p_dst->scale );
  1074. }
  1075. /**
  1076.  * Place a region
  1077.  */
  1078. static void SpuRegionPlace( int *pi_x, int *pi_y,
  1079.                             const subpicture_t *p_subpic,
  1080.                             const subpicture_region_t *p_region,
  1081.                             int i_margin_y )
  1082. {
  1083.     const int i_delta_x = p_region->i_x;
  1084.     const int i_delta_y = p_region->i_y;
  1085.     int i_x, i_y;
  1086.     assert( p_region->i_x != INT_MAX && p_region->i_y != INT_MAX );
  1087.     if( p_region->i_align & SUBPICTURE_ALIGN_TOP )
  1088.     {
  1089.         i_y = i_delta_y;
  1090.     }
  1091.     else if( p_region->i_align & SUBPICTURE_ALIGN_BOTTOM )
  1092.     {
  1093.         i_y = p_subpic->i_original_picture_height - p_region->fmt.i_height - i_delta_y;
  1094.     }
  1095.     else
  1096.     {
  1097.         i_y = p_subpic->i_original_picture_height / 2 - p_region->fmt.i_height / 2;
  1098.     }
  1099.     if( p_region->i_align & SUBPICTURE_ALIGN_LEFT )
  1100.     {
  1101.         i_x = i_delta_x;
  1102.     }
  1103.     else if( p_region->i_align & SUBPICTURE_ALIGN_RIGHT )
  1104.     {
  1105.         i_x = p_subpic->i_original_picture_width - p_region->fmt.i_width - i_delta_x;
  1106.     }
  1107.     else
  1108.     {
  1109.         i_x = p_subpic->i_original_picture_width / 2 - p_region->fmt.i_width / 2;
  1110.     }
  1111.     if( p_subpic->b_absolute )
  1112.     {
  1113.         i_x = i_delta_x;
  1114.         i_y = i_delta_y;
  1115.     }
  1116.     /* Margin shifts all subpictures */
  1117.     if( i_margin_y != 0 )
  1118.         i_y -= i_margin_y;
  1119.     /* Clamp offset to not go out of the screen (when possible) */
  1120.     const int i_error_x = (i_x + p_region->fmt.i_width) - p_subpic->i_original_picture_width;
  1121.     if( i_error_x > 0 )
  1122.         i_x -= i_error_x;
  1123.     if( i_x < 0 )
  1124.         i_x = 0;
  1125.     const int i_error_y = (i_y + p_region->fmt.i_height) - p_subpic->i_original_picture_height;
  1126.     if( i_error_y > 0 )
  1127.         i_y -= i_error_y;
  1128.     if( i_y < 0 )
  1129.         i_y = 0;
  1130.     *pi_x = i_x;
  1131.     *pi_y = i_y;
  1132. }
  1133. /**
  1134.  * This function computes the current alpha value for a given region.
  1135.  */
  1136. static int SpuRegionAlpha( subpicture_t *p_subpic, subpicture_region_t *p_region )
  1137. {
  1138.     /* Compute alpha blend value */
  1139.     int i_fade_alpha = 255;
  1140.     if( p_subpic->b_fade )
  1141.     {
  1142.         mtime_t i_fade_start = ( p_subpic->i_stop +
  1143.                                  p_subpic->i_start ) / 2;
  1144.         mtime_t i_now = mdate();
  1145.         if( i_now >= i_fade_start && p_subpic->i_stop > i_fade_start )
  1146.         {
  1147.             i_fade_alpha = 255 * ( p_subpic->i_stop - i_now ) /
  1148.                            ( p_subpic->i_stop - i_fade_start );
  1149.         }
  1150.     }
  1151.     return i_fade_alpha * p_subpic->i_alpha * p_region->i_alpha / 65025;
  1152. }
  1153. /**
  1154.  * It will render the provided region onto p_pic_dst.
  1155.  */
  1156. static void SpuRenderRegion( spu_t *p_spu,
  1157.                              picture_t *p_pic_dst, spu_area_t *p_area,
  1158.                              subpicture_t *p_subpic, subpicture_region_t *p_region,
  1159.                              const spu_scale_t scale_size,
  1160.                              const video_format_t *p_fmt,
  1161.                              const spu_area_t *p_subtitle_area, int i_subtitle_area,
  1162.                              mtime_t render_date )
  1163. {
  1164.     spu_private_t *p_sys = p_spu->p;
  1165.     video_format_t fmt_original = p_region->fmt;
  1166.     bool b_rerender_text = false;
  1167.     bool b_restore_format = false;
  1168.     int i_x_offset;
  1169.     int i_y_offset;
  1170.     video_format_t region_fmt;
  1171.     picture_t *p_region_picture;
  1172.     /* Invalidate area by default */
  1173.     *p_area = spu_area_create( 0,0, 0,0, scale_size );
  1174.     /* Render text region */
  1175.     if( p_region->fmt.i_chroma == VLC_FOURCC_TEXT )
  1176.     {
  1177.         const int i_min_scale_ratio = SCALE_UNIT; /* FIXME what is the right value? (scale_size is not) */
  1178.         SpuRenderText( p_spu, &b_rerender_text, p_subpic, p_region,
  1179.                        i_min_scale_ratio, render_date );
  1180.         b_restore_format = b_rerender_text;
  1181.         /* Check if the rendering has failed ... */
  1182.         if( p_region->fmt.i_chroma == VLC_FOURCC_TEXT )
  1183.             goto exit;
  1184.     }
  1185.     /* Force palette if requested
  1186.      * FIXME b_force_palette and b_force_crop are applied to all subpictures using palette
  1187.      * instead of only the right one (being the dvd spu).
  1188.      */
  1189.     const bool b_using_palette = p_region->fmt.i_chroma == VLC_FOURCC_YUVP;
  1190.     const bool b_force_palette = b_using_palette && p_sys->b_force_palette;
  1191.     const bool b_force_crop    = b_force_palette && p_sys->b_force_crop;
  1192.     bool b_changed_palette     = false;
  1193.     /* Compute the margin which is expressed in destination pixel unit
  1194.      * The margin is applied only to subtitle and when no forced crop is
  1195.      * requested (dvd menu) */
  1196.     int i_margin_y = 0;
  1197.     if( !b_force_crop && p_subpic->b_subtitle )
  1198.         i_margin_y = spu_invscale_h( p_sys->i_margin, scale_size );
  1199.     /* Place the picture
  1200.      * We compute the position in the rendered size */
  1201.     SpuRegionPlace( &i_x_offset, &i_y_offset,
  1202.                     p_subpic, p_region, i_margin_y );
  1203.     /* Save this position for subtitle overlap support
  1204.      * it is really important that there are given without scale_size applied */
  1205.     *p_area = spu_area_create( i_x_offset, i_y_offset,
  1206.                                p_region->fmt.i_width, p_region->fmt.i_height,
  1207.                                scale_size );
  1208.     /* Handle overlapping subtitles when possible */
  1209.     if( p_subpic->b_subtitle && !p_subpic->b_absolute )
  1210.     {
  1211.         spu_area_t display = spu_area_create( 0, 0, p_fmt->i_width, p_fmt->i_height,
  1212.                                               spu_scale_unit() );
  1213.         SpuAreaFixOverlap( p_area, &display, p_subtitle_area, i_subtitle_area,
  1214.                            p_region->i_align );
  1215.     }
  1216.     /* Fix the position for the current scale_size */
  1217.     i_x_offset = spu_scale_w( p_area->i_x, p_area->scale );
  1218.     i_y_offset = spu_scale_h( p_area->i_y, p_area->scale );
  1219.     /* */
  1220.     if( b_force_palette )
  1221.     {
  1222.         video_palette_t *p_palette = p_region->fmt.p_palette;
  1223.         video_palette_t palette;
  1224.         /* We suppose DVD palette here */
  1225.         palette.i_entries = 4;
  1226.         for( int i = 0; i < 4; i++ )
  1227.             for( int j = 0; j < 4; j++ )
  1228.                 palette.palette[i][j] = p_sys->palette[i][j];
  1229.         if( p_palette->i_entries == palette.i_entries )
  1230.         {
  1231.             for( int i = 0; i < p_palette->i_entries; i++ )
  1232.                 for( int j = 0; j < 4; j++ )
  1233.                     b_changed_palette |= p_palette->palette[i][j] != palette.palette[i][j];
  1234.         }
  1235.         else
  1236.         {
  1237.             b_changed_palette = true;
  1238.         }
  1239.         *p_palette = palette;
  1240.     }
  1241.     /* */
  1242.     region_fmt = p_region->fmt;
  1243.     p_region_picture = p_region->p_picture;
  1244.     /* Scale from rendered size to destination size */
  1245.     if( p_sys->p_scale && p_sys->p_scale->p_module &&
  1246.         ( !b_using_palette || ( p_sys->p_scale_yuvp && p_sys->p_scale_yuvp->p_module ) ) &&
  1247.         ( scale_size.w != SCALE_UNIT || scale_size.h != SCALE_UNIT || b_using_palette ) )
  1248.     {
  1249.         const unsigned i_dst_width  = spu_scale_w( p_region->fmt.i_width, scale_size );
  1250.         const unsigned i_dst_height = spu_scale_h( p_region->fmt.i_height, scale_size );
  1251.         /* Destroy the cache if unusable */
  1252.         if( p_region->p_private )
  1253.         {
  1254.             subpicture_region_private_t *p_private = p_region->p_private;
  1255.             bool b_changed = false;
  1256.             /* Check resize changes */
  1257.             if( i_dst_width  != p_private->fmt.i_width ||
  1258.                 i_dst_height != p_private->fmt.i_height )
  1259.                 b_changed = true;
  1260.             /* Check forced palette changes */
  1261.             if( b_changed_palette )
  1262.                 b_changed = true;
  1263.             if( b_changed )
  1264.             {
  1265.                 SpuRegionPrivateDelete( p_private );
  1266.                 p_region->p_private = NULL;
  1267.             }
  1268.         }
  1269.         /* Scale if needed into cache */
  1270.         if( !p_region->p_private && i_dst_width > 0 && i_dst_height > 0 )
  1271.         {
  1272.             filter_t *p_scale = p_sys->p_scale;
  1273.             picture_t *p_picture = p_region->p_picture;
  1274.             picture_Hold( p_picture );
  1275.             /* Convert YUVP to YUVA/RGBA first for better scaling quality */
  1276.             if( b_using_palette )
  1277.             {
  1278.                 filter_t *p_scale_yuvp = p_sys->p_scale_yuvp;
  1279.                 p_scale_yuvp->fmt_in.video = p_region->fmt;
  1280.                 /* TODO converting to RGBA for RGB video output is better */
  1281.                 p_scale_yuvp->fmt_out.video = p_region->fmt;
  1282.                 p_scale_yuvp->fmt_out.video.i_chroma = VLC_FOURCC_YUVA;
  1283.                 p_picture = p_scale_yuvp->pf_video_filter( p_scale_yuvp, p_picture );
  1284.                 if( !p_picture )
  1285.                 {
  1286.                     /* Well we will try conversion+scaling */
  1287.                     msg_Warn( p_spu, "%4.4s to %4.4s conversion failed",
  1288.                              (const char*)&p_scale_yuvp->fmt_in.video.i_chroma,
  1289.                              (const char*)&p_scale_yuvp->fmt_out.video.i_chroma );
  1290.                 }
  1291.             }
  1292.             /* Conversion(except from YUVP)/Scaling */
  1293.             if( p_picture &&
  1294.                 ( p_picture->format.i_width != i_dst_width ||
  1295.                   p_picture->format.i_height != i_dst_height ) )
  1296.             {
  1297.                 p_scale->fmt_in.video = p_picture->format;
  1298.                 p_scale->fmt_out.video = p_picture->format;
  1299.                 p_scale->fmt_out.video.i_width = i_dst_width;
  1300.                 p_scale->fmt_out.video.i_height = i_dst_height;
  1301.                 p_scale->fmt_out.video.i_visible_width =
  1302.                     spu_scale_w( p_region->fmt.i_visible_width, scale_size );
  1303.                 p_scale->fmt_out.video.i_visible_height =
  1304.                     spu_scale_h( p_region->fmt.i_visible_height, scale_size );
  1305.                 p_picture = p_scale->pf_video_filter( p_scale, p_picture );
  1306.                 if( !p_picture )
  1307.                     msg_Err( p_spu, "scaling failed" );
  1308.             }
  1309.             /* */
  1310.             if( p_picture )
  1311.             {
  1312.                 p_region->p_private = SpuRegionPrivateNew( &p_picture->format );
  1313.                 if( p_region->p_private )
  1314.                 {
  1315.                     p_region->p_private->p_picture = p_picture;
  1316.                     if( !p_region->p_private->p_picture )
  1317.                     {
  1318.                         SpuRegionPrivateDelete( p_region->p_private );
  1319.                         p_region->p_private = NULL;
  1320.                     }
  1321.                 }
  1322.                 else
  1323.                 {
  1324.                     picture_Release( p_picture );
  1325.                 }
  1326.             }
  1327.         }
  1328.         /* And use the scaled picture */
  1329.         if( p_region->p_private )
  1330.         {
  1331.             region_fmt = p_region->p_private->fmt;
  1332.             p_region_picture = p_region->p_private->p_picture;
  1333.         }
  1334.     }
  1335.     /* Force cropping if requested */
  1336.     if( b_force_crop )
  1337.     {
  1338.         int i_crop_x = spu_scale_w( p_sys->i_crop_x, scale_size );
  1339.         int i_crop_y = spu_scale_h( p_sys->i_crop_y, scale_size );
  1340.         int i_crop_width = spu_scale_w( p_sys->i_crop_width, scale_size );
  1341.         int i_crop_height= spu_scale_h( p_sys->i_crop_height,scale_size );
  1342.         /* Find the intersection */
  1343.         if( i_crop_x + i_crop_width <= i_x_offset ||
  1344.             i_x_offset + (int)region_fmt.i_visible_width < i_crop_x ||
  1345.             i_crop_y + i_crop_height <= i_y_offset ||
  1346.             i_y_offset + (int)region_fmt.i_visible_height < i_crop_y )
  1347.         {
  1348.             /* No intersection */
  1349.             region_fmt.i_visible_width =
  1350.             region_fmt.i_visible_height = 0;
  1351.         }
  1352.         else
  1353.         {
  1354.             int i_x, i_y, i_x_end, i_y_end;
  1355.             i_x = __MAX( i_crop_x, i_x_offset );
  1356.             i_y = __MAX( i_crop_y, i_y_offset );
  1357.             i_x_end = __MIN( i_crop_x + i_crop_width,
  1358.                            i_x_offset + (int)region_fmt.i_visible_width );
  1359.             i_y_end = __MIN( i_crop_y + i_crop_height,
  1360.                            i_y_offset + (int)region_fmt.i_visible_height );
  1361.             region_fmt.i_x_offset = i_x - i_x_offset;
  1362.             region_fmt.i_y_offset = i_y - i_y_offset;
  1363.             region_fmt.i_visible_width = i_x_end - i_x;
  1364.             region_fmt.i_visible_height = i_y_end - i_y;
  1365.             i_x_offset = __MAX( i_x, 0 );
  1366.             i_y_offset = __MAX( i_y, 0 );
  1367.         }
  1368.     }
  1369.     /* Update the blender */
  1370.     SpuRenderUpdateBlend( p_spu, p_fmt->i_width, p_fmt->i_height, &region_fmt );
  1371.     if( p_sys->p_blend->p_module )
  1372.     {
  1373.         const int i_alpha = SpuRegionAlpha( p_subpic, p_region );
  1374.         p_sys->p_blend->pf_video_blend( p_sys->p_blend, p_pic_dst,
  1375.             p_region_picture, i_x_offset, i_y_offset, i_alpha );
  1376.     }
  1377.     else
  1378.     {
  1379.         msg_Err( p_spu, "blending %4.4s to %4.4s failed",
  1380.                  (char *)&p_sys->p_blend->fmt_out.video.i_chroma,
  1381.                  (char *)&p_sys->p_blend->fmt_out.video.i_chroma );
  1382.     }
  1383. exit:
  1384.     if( b_rerender_text )
  1385.     {
  1386.         /* Some forms of subtitles need to be re-rendered more than
  1387.          * once, eg. karaoke. We therefore restore the region to its
  1388.          * pre-rendered state, so the next time through everything is
  1389.          * calculated again.
  1390.          */
  1391.         if( p_region->p_picture )
  1392.         {
  1393.             picture_Release( p_region->p_picture );
  1394.             p_region->p_picture = NULL;
  1395.         }
  1396.         if( p_region->p_private )
  1397.         {
  1398.             SpuRegionPrivateDelete( p_region->p_private );
  1399.             p_region->p_private = NULL;
  1400.         }
  1401.         p_region->i_align &= ~SUBPICTURE_RENDERED;
  1402.     }
  1403.     if( b_restore_format )
  1404.         p_region->fmt = fmt_original;
  1405. }
  1406. /**
  1407.  * This function compares two 64 bits integers.
  1408.  * It can be used by qsort.
  1409.  */
  1410. static int IntegerCmp( int64_t i0, int64_t i1 )
  1411. {
  1412.     return i0 < i1 ? -1 : i0 > i1 ? 1 : 0;
  1413. }
  1414. /**
  1415.  * This function compares 2 subpictures using the following properties
  1416.  * (ordered by priority)
  1417.  * 1. absolute positionning
  1418.  * 2. start time
  1419.  * 3. creation order (per channel)
  1420.  *
  1421.  * It can be used by qsort.
  1422.  *
  1423.  * XXX spu_RenderSubpictures depends heavily on this order.
  1424.  */
  1425. static int SubpictureCmp( const void *s0, const void *s1 )
  1426. {
  1427.     subpicture_t *p_subpic0 = *(subpicture_t**)s0;
  1428.     subpicture_t *p_subpic1 = *(subpicture_t**)s1;
  1429.     int r;
  1430.     r = IntegerCmp( !p_subpic0->b_absolute, !p_subpic1->b_absolute );
  1431.     if( !r )
  1432.         r = IntegerCmp( p_subpic0->i_start, p_subpic1->i_start );
  1433.     if( !r )
  1434.         r = IntegerCmp( p_subpic0->i_channel, p_subpic1->i_channel );
  1435.     if( !r )
  1436.         r = IntegerCmp( p_subpic0->i_order, p_subpic1->i_order );
  1437.     return r;
  1438. }
  1439. /*****************************************************************************
  1440.  * SpuClearChannel: clear an spu channel
  1441.  *****************************************************************************
  1442.  * This function destroys the subpictures which belong to the spu channel
  1443.  * corresponding to i_channel_id.
  1444.  *****************************************************************************/
  1445. static void SpuClearChannel( spu_t *p_spu, int i_channel )
  1446. {
  1447.     spu_private_t *p_sys = p_spu->p;
  1448.     int          i_subpic;                               /* subpicture index */
  1449.     vlc_mutex_lock( &p_sys->lock );
  1450.     for( i_subpic = 0; i_subpic < VOUT_MAX_SUBPICTURES; i_subpic++ )
  1451.     {
  1452.         spu_heap_entry_t *p_entry = &p_sys->heap.p_entry[i_subpic];
  1453.         subpicture_t *p_subpic = p_entry->p_subpicture;
  1454.         if( !p_subpic )
  1455.             continue;
  1456.         if( p_subpic->i_channel != i_channel && ( i_channel != -1 || p_subpic->i_channel == DEFAULT_CHAN ) )
  1457.             continue;
  1458.         /* You cannot delete subpicture outside of spu_SortSubpictures */
  1459.         p_entry->b_reject = true;
  1460.     }
  1461.     vlc_mutex_unlock( &p_sys->lock );
  1462. }
  1463. /*****************************************************************************
  1464.  * spu_ControlDefault: default methods for the subpicture unit control.
  1465.  *****************************************************************************/
  1466. static int SpuControl( spu_t *p_spu, int i_query, va_list args )
  1467. {
  1468.     spu_private_t *p_sys = p_spu->p;
  1469.     int *pi, i;
  1470.     switch( i_query )
  1471.     {
  1472.     case SPU_CHANNEL_REGISTER:
  1473.         pi = (int *)va_arg( args, int * );
  1474.         vlc_mutex_lock( &p_sys->lock );
  1475.         if( pi )
  1476.             *pi = p_sys->i_channel++;
  1477.         vlc_mutex_unlock( &p_sys->lock );
  1478.         break;
  1479.     case SPU_CHANNEL_CLEAR:
  1480.         i = (int)va_arg( args, int );
  1481.         SpuClearChannel( p_spu, i );
  1482.         break;
  1483.     default:
  1484.         msg_Dbg( p_spu, "control query not supported" );
  1485.         return VLC_EGENERIC;
  1486.     }
  1487.     return VLC_SUCCESS;
  1488. }
  1489. /*****************************************************************************
  1490.  * Object variables callbacks
  1491.  *****************************************************************************/
  1492. /*****************************************************************************
  1493.  * UpdateSPU: update subpicture settings
  1494.  *****************************************************************************
  1495.  * This function is called from CropCallback and at initialization time, to
  1496.  * retrieve crop information from the input.
  1497.  *****************************************************************************/
  1498. static void UpdateSPU( spu_t *p_spu, vlc_object_t *p_object )
  1499. {
  1500.     spu_private_t *p_sys = p_spu->p;
  1501.     vlc_value_t val;
  1502.     vlc_mutex_lock( &p_sys->lock );
  1503.     p_sys->b_force_palette = false;
  1504.     p_sys->b_force_crop = false;
  1505.     if( var_Get( p_object, "highlight", &val ) || !val.b_bool )
  1506.     {
  1507.         vlc_mutex_unlock( &p_sys->lock );
  1508.         return;
  1509.     }
  1510.     p_sys->b_force_crop = true;
  1511.     p_sys->i_crop_x = var_GetInteger( p_object, "x-start" );
  1512.     p_sys->i_crop_y = var_GetInteger( p_object, "y-start" );
  1513.     p_sys->i_crop_width  = var_GetInteger( p_object, "x-end" ) - p_sys->i_crop_x;
  1514.     p_sys->i_crop_height = var_GetInteger( p_object, "y-end" ) - p_sys->i_crop_y;
  1515.     if( var_Get( p_object, "menu-palette", &val ) == VLC_SUCCESS )
  1516.     {
  1517.         memcpy( p_sys->palette, val.p_address, 16 );
  1518.         p_sys->b_force_palette = true;
  1519.     }
  1520.     vlc_mutex_unlock( &p_sys->lock );
  1521.     msg_Dbg( p_object, "crop: %i,%i,%i,%i, palette forced: %i",
  1522.              p_sys->i_crop_x, p_sys->i_crop_y,
  1523.              p_sys->i_crop_width, p_sys->i_crop_height,
  1524.              p_sys->b_force_palette );
  1525. }
  1526. /*****************************************************************************
  1527.  * CropCallback: called when the highlight properties are changed
  1528.  *****************************************************************************
  1529.  * This callback is called from the input thread when we need cropping
  1530.  *****************************************************************************/
  1531. static int CropCallback( vlc_object_t *p_object, char const *psz_var,
  1532.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  1533. {
  1534.     VLC_UNUSED(oldval); VLC_UNUSED(newval); VLC_UNUSED(psz_var);
  1535.     UpdateSPU( (spu_t *)p_data, p_object );
  1536.     return VLC_SUCCESS;
  1537. }
  1538. /*****************************************************************************
  1539.  * Buffers allocation callbacks for the filters
  1540.  *****************************************************************************/
  1541. struct filter_owner_sys_t
  1542. {
  1543.     spu_t *p_spu;
  1544.     int i_channel;
  1545. };
  1546. static subpicture_t *sub_new_buffer( filter_t *p_filter )
  1547. {
  1548.     filter_owner_sys_t *p_sys = p_filter->p_owner;
  1549.     subpicture_t *p_subpicture = subpicture_New();
  1550.     if( p_subpicture )
  1551.         p_subpicture->i_channel = p_sys->i_channel;
  1552.     return p_subpicture;
  1553. }
  1554. static void sub_del_buffer( filter_t *p_filter, subpicture_t *p_subpic )
  1555. {
  1556.     VLC_UNUSED( p_filter );
  1557.     subpicture_Delete( p_subpic );
  1558. }
  1559. static subpicture_t *spu_new_buffer( filter_t *p_filter )
  1560. {
  1561.     VLC_UNUSED(p_filter);
  1562.     return subpicture_New();
  1563. }
  1564. static void spu_del_buffer( filter_t *p_filter, subpicture_t *p_subpic )
  1565. {
  1566.     VLC_UNUSED(p_filter);
  1567.     subpicture_Delete( p_subpic );
  1568. }
  1569. static picture_t *spu_new_video_buffer( filter_t *p_filter )
  1570. {
  1571.     const video_format_t *p_fmt = &p_filter->fmt_out.video;
  1572.     VLC_UNUSED(p_filter);
  1573.     return picture_New( p_fmt->i_chroma,
  1574.                         p_fmt->i_width, p_fmt->i_height, p_fmt->i_aspect );
  1575. }
  1576. static void spu_del_video_buffer( filter_t *p_filter, picture_t *p_picture )
  1577. {
  1578.     VLC_UNUSED(p_filter);
  1579.     picture_Release( p_picture );
  1580. }
  1581. static int SubFilterAllocationInit( filter_t *p_filter, void *p_data )
  1582. {
  1583.     spu_t *p_spu = p_data;
  1584.     filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) );
  1585.     if( !p_sys )
  1586.         return VLC_EGENERIC;
  1587.     p_filter->pf_sub_buffer_new = sub_new_buffer;
  1588.     p_filter->pf_sub_buffer_del = sub_del_buffer;
  1589.     p_filter->p_owner = p_sys;
  1590.     spu_Control( p_spu, SPU_CHANNEL_REGISTER, &p_sys->i_channel );
  1591.     p_sys->p_spu = p_spu;
  1592.     return VLC_SUCCESS;
  1593. }
  1594. static void SubFilterAllocationClean( filter_t *p_filter )
  1595. {
  1596.     filter_owner_sys_t *p_sys = p_filter->p_owner;
  1597.     SpuClearChannel( p_sys->p_spu, p_sys->i_channel );
  1598.     free( p_filter->p_owner );
  1599. }
  1600. static int SubFilterCallback( vlc_object_t *p_object, char const *psz_var,
  1601.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  1602. {
  1603.     spu_t *p_spu = p_data;
  1604.     spu_private_t *p_sys = p_spu->p;
  1605.     VLC_UNUSED(p_object); VLC_UNUSED(oldval); VLC_UNUSED(psz_var);
  1606.     vlc_mutex_lock( &p_sys->lock );
  1607.     free( p_sys->psz_chain_update );
  1608.     p_sys->psz_chain_update = strdup( newval.psz_string );
  1609.     vlc_mutex_unlock( &p_sys->lock );
  1610.     return VLC_SUCCESS;
  1611. }