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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * kate.c : a decoder for the kate bitstream format
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2008 the VideoLAN team
  5.  * $Id: 9fe0af9851d4d3cf71513595c5c03f5bd1258c8e $
  6.  *
  7.  * Authors: Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>
  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 <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_input.h>
  32. #include <vlc_codec.h>
  33. #include <vlc_osd.h>
  34. #include <kate/kate.h>
  35. #ifdef HAVE_TIGER
  36. # include <tiger/tiger.h>
  37. #endif
  38. /* #define ENABLE_PACKETIZER */
  39. /* #define ENABLE_PROFILE */
  40. #ifdef ENABLE_PROFILE
  41. # define PROFILE_START(name) int64_t profile_start_##name = mdate()
  42. # define PROFILE_STOP(name) fprintf( stderr, #name ": %f msn", (mdate() - profile_start_##name)/1000.0f )
  43. #else
  44. # define PROFILE_START(name) ((void)0)
  45. # define PROFILE_STOP(name) ((void)0)
  46. #endif
  47. #define CHECK_TIGER_RET( statement )                                   
  48.     do                                                                 
  49.     {                                                                  
  50.         int i_ret = (statement);                                       
  51.         if( i_ret < 0 )                                                
  52.         {                                                              
  53.             msg_Dbg( p_dec, "Error in " #statement ": %d", i_ret );    
  54.         }                                                              
  55.     } while( 0 )
  56. /*****************************************************************************
  57.  * decoder_sys_t : decoder descriptor
  58.  *****************************************************************************/
  59. struct decoder_sys_t
  60. {
  61. #ifdef ENABLE_PACKETIZER
  62.     /* Module mode */
  63.     bool b_packetizer;
  64. #endif
  65.     /*
  66.      * Input properties
  67.      */
  68.     int i_num_headers;
  69.     int i_headers;
  70.     /*
  71.      * Kate properties
  72.      */
  73.     bool           b_ready;
  74.     kate_info      ki;
  75.     kate_comment   kc;
  76.     kate_state     k;
  77.     /*
  78.      * Common properties
  79.      */
  80.     mtime_t i_pts;
  81.     /* decoder_sys_t is shared between decoder and spu units */
  82.     vlc_mutex_t lock;
  83.     int         i_refcount;
  84. #ifdef HAVE_TIGER
  85.     /*
  86.      * Tiger properties
  87.      */
  88.     tiger_renderer    *p_tr;
  89.     subpicture_t      *p_spu_final;
  90.     mtime_t            last_render_ts;
  91.     bool               b_dirty;
  92.     uint32_t           i_tiger_default_font_color;
  93.     uint32_t           i_tiger_default_background_color;
  94.     tiger_font_effect  e_tiger_default_font_effect;
  95.     double             f_tiger_default_font_effect_strength;
  96.     char              *psz_tiger_default_font_desc;
  97.     double             f_tiger_quality;
  98. #endif
  99.     /*
  100.      * Options
  101.      */
  102.     bool   b_formatted;
  103.     bool   b_use_tiger;
  104. };
  105. struct subpicture_sys_t
  106. {
  107.     decoder_sys_t *p_dec_sys;
  108.     mtime_t        i_start;
  109. };
  110. /*
  111.  * This is a global list of existing decoders.
  112.  * The reason for this list is that:
  113.  *  - I want to be able to reconfigure Tiger when user prefs change
  114.  *  - User prefs are variables which are not specific to a decoder (eg, if
  115.  *    there are several decoders, there will still be one set of variables)
  116.  *  - A callback set on those will not be passed a pointer to the decoder
  117.  *    (as the decoder isn't known, and there could be multiple ones)
  118.  *  - Creating variables in the decoder will create different ones, with
  119.  *    values copied from the relevant user pref, so a callback on those
  120.  *    won't be called when the user pref is changed
  121.  * Therefore, each decoder will register/unregister itself with this list,
  122.  * callbacks will be set for the user prefs, and these will in turn walk
  123.  * through this list and tell each decoder to update the relevant variable.
  124.  * HOWEVER.
  125.  * VLC's variable system is still in my way as I can't get the value of
  126.  * the user pref variables at decoder start *unless* I create my own vars
  127.  * which inherit from the user ones, but those are utterly useless after
  128.  * that first use, since they'll be detached from the ones the user can
  129.  * change. So, I create them, read their values, and then destroy them.
  130.  */
  131. static vlc_mutex_t kate_decoder_list_mutex = VLC_STATIC_MUTEX;
  132. static size_t kate_decoder_list_size = 0;
  133. static decoder_t **kate_decoder_list = NULL;
  134. /*****************************************************************************
  135.  * Local prototypes
  136.  *****************************************************************************/
  137. static int  OpenDecoder   ( vlc_object_t * );
  138. static void CloseDecoder  ( vlc_object_t * );
  139. #ifdef ENABLE_PACKETIZER
  140. static int OpenPacketizer( vlc_object_t *p_this );
  141. #endif
  142. static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block );
  143. static int ProcessHeaders( decoder_t *p_dec );
  144. static subpicture_t *ProcessPacket( decoder_t *p_dec, kate_packet *p_kp,
  145.                             block_t **pp_block );
  146. static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp,
  147.                             block_t *p_block );
  148. static void ParseKateComments( decoder_t * );
  149. static subpicture_t *SetupSimpleKateSPU( decoder_t *p_dec, subpicture_t *p_spu,
  150.                             const kate_event *ev );
  151. static void DecSysRelease( decoder_sys_t *p_sys );
  152. static void DecSysHold( decoder_sys_t *p_sys );
  153. #ifdef HAVE_TIGER
  154. static uint32_t GetTigerColor( decoder_t *p_dec, const char *psz_prefix );
  155. static char *GetTigerString( decoder_t *p_dec, const char *psz_name );
  156. static int GetTigerInteger( decoder_t *p_dec, const char *psz_name );
  157. static double GetTigerFloat( decoder_t *p_dec, const char *psz_name );
  158. static void UpdateTigerFontColor( decoder_t *p_dec );
  159. static void UpdateTigerBackgroundColor( decoder_t *p_dec );
  160. static void UpdateTigerFontEffect( decoder_t *p_dec );
  161. static void UpdateTigerQuality( decoder_t *p_dec );
  162. static void UpdateTigerFontDesc( decoder_t *p_dec );
  163. static int TigerConfigurationCallback( vlc_object_t *p_this, const char *psz_var,
  164.                                        vlc_value_t oldvar, vlc_value_t newval,
  165.                                        void *p_data );
  166. static int OnConfigurationChanged( decoder_t *p_dec, const char *psz_var,
  167.                                    vlc_value_t oldval, vlc_value_t newval);
  168. #endif
  169. #define DEFAULT_NAME "Default"
  170. #define MAX_LINE 8192
  171. /*****************************************************************************
  172.  * Module descriptor.
  173.  *****************************************************************************/
  174. #define FORMAT_TEXT N_("Formatted Subtitles")
  175. #define FORMAT_LONGTEXT N_("Kate streams allow for text formatting. " 
  176.  "VLC partly implements this, but you can choose to disable all formatting." 
  177.  "Note that this has no effect is rendering via Tiger is enabled.")
  178. #ifdef HAVE_TIGER
  179. static const tiger_font_effect pi_font_effects[] = { tiger_font_plain, tiger_font_shadow, tiger_font_outline };
  180. static const char * const ppsz_font_effect_names[] = { N_("None"), N_("Shadow"), N_("Outline") };
  181. /* nicked off freetype.c */
  182. static const int pi_color_values[] = {
  183.   0x00000000, 0x00808080, 0x00C0C0C0, 0x00FFFFFF, 0x00800000,
  184.   0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00808000, 0x00008000, 0x00008080,
  185.   0x0000FF00, 0x00800080, 0x00000080, 0x000000FF, 0x0000FFFF };
  186. static const char *const ppsz_color_descriptions[] = {
  187.   N_("Black"), N_("Gray"), N_("Silver"), N_("White"), N_("Maroon"),
  188.   N_("Red"), N_("Fuchsia"), N_("Yellow"), N_("Olive"), N_("Green"), N_("Teal"),
  189.   N_("Lime"), N_("Purple"), N_("Navy"), N_("Blue"), N_("Aqua") };
  190. #define TIGER_TEXT N_("Use Tiger for rendering")
  191. #define TIGER_LONGTEXT N_("Kate streams can be rendered using the Tiger library. " 
  192.  "Disabling this will only render static text and bitmap based streams.")
  193. #define TIGER_QUALITY_DEFAULT 1.0
  194. #define TIGER_QUALITY_TEXT N_("Rendering quality")
  195. #define TIGER_QUALITY_LONGTEXT N_("Select rendering quality, at the expense of speed. " 
  196.  "0 is fastest, 1 is highest quality.")
  197. #define TIGER_DEFAULT_FONT_EFFECT_DEFAULT 0
  198. #define TIGER_DEFAULT_FONT_EFFECT_TEXT N_("Default font effect")
  199. #define TIGER_DEFAULT_FONT_EFFECT_LONGTEXT N_("Add a font effect to text to improve readability " 
  200.  "against different backgrounds.")
  201. #define TIGER_DEFAULT_FONT_EFFECT_STRENGTH_DEFAULT 0.5
  202. #define TIGER_DEFAULT_FONT_EFFECT_STRENGTH_TEXT N_("Default font effect strength")
  203. #define TIGER_DEFAULT_FONT_EFFECT_STRENGTH_LONGTEXT N_("How pronounced to make the chosen font effect " 
  204.  "(effect dependent).")
  205. #define TIGER_DEFAULT_FONT_DESC_DEFAULT ""
  206. #define TIGER_DEFAULT_FONT_DESC_TEXT N_("Default font description")
  207. #define TIGER_DEFAULT_FONT_DESC_LONGTEXT N_("Which font description to use if the Kate stream " 
  208.  "does not specify particular font parameters (name, size, etc) to use. " 
  209.  "A blank name will let Tiger choose font parameters where appropriate.")
  210. #define TIGER_DEFAULT_FONT_COLOR_DEFAULT 0x00ffffff
  211. #define TIGER_DEFAULT_FONT_COLOR_TEXT N_("Default font color")
  212. #define TIGER_DEFAULT_FONT_COLOR_LONGTEXT N_("Default font color to use if the Kate stream " 
  213.  "does not specify a particular font color to use.")
  214. #define TIGER_DEFAULT_FONT_ALPHA_DEFAULT 0xff
  215. #define TIGER_DEFAULT_FONT_ALPHA_TEXT N_("Default font alpha")
  216. #define TIGER_DEFAULT_FONT_ALPHA_LONGTEXT N_("Transparency of the default font color if the Kate stream " 
  217.  "does not specify a particular font color to use.")
  218. #define TIGER_DEFAULT_BACKGROUND_COLOR_DEFAULT 0x00ffffff
  219. #define TIGER_DEFAULT_BACKGROUND_COLOR_TEXT N_("Default background color")
  220. #define TIGER_DEFAULT_BACKGROUND_COLOR_LONGTEXT N_("Default background color if the Kate stream " 
  221.  "does not specify a background color to use.")
  222. #define TIGER_DEFAULT_BACKGROUND_ALPHA_DEFAULT 0
  223. #define TIGER_DEFAULT_BACKGROUND_ALPHA_TEXT N_("Default background alpha")
  224. #define TIGER_DEFAULT_BACKGROUND_ALPHA_LONGTEXT N_("Transparency of the default background color if the Kate stream " 
  225.  "does not specify a particular background color to use.")
  226. #endif
  227. #define HELP_TEXT N_( 
  228.     "Kate is a codec for text and image based overlays.n" 
  229.     "The Tiger rendering library is needed to render complex Kate streams, " 
  230.     "but VLC can still render static text and image based subtitles if " 
  231.     "it is not available.n" 
  232.     "Note that changing settings below will not take effect until a new stream is played. " 
  233.     "This will hopefully be fixed soon." 
  234.     )
  235. vlc_module_begin ()
  236.     set_shortname( N_("Kate"))
  237.     set_description( N_("Kate overlay decoder") )
  238.     set_help( HELP_TEXT )
  239.     set_capability( "decoder", 50 )
  240.     set_callbacks( OpenDecoder, CloseDecoder )
  241.     set_category( CAT_INPUT )
  242.     set_subcategory( SUBCAT_INPUT_SCODEC )
  243.     add_shortcut( "kate" )
  244.     add_bool( "kate-formatted", true, NULL, FORMAT_TEXT, FORMAT_LONGTEXT,
  245.               true )
  246. #ifdef HAVE_TIGER
  247.     add_bool( "kate-use-tiger", true, NULL, TIGER_TEXT, TIGER_LONGTEXT,
  248.               true )
  249.     add_float_with_range( "kate-tiger-quality",
  250.                           TIGER_QUALITY_DEFAULT, 0.0f, 1.0f, TigerConfigurationCallback,
  251.                           TIGER_QUALITY_TEXT, TIGER_QUALITY_LONGTEXT,
  252.                           true )
  253.     set_section( N_("Tiger rendering defaults"), NULL );
  254.     add_string( "kate-tiger-default-font-desc",
  255.                 TIGER_DEFAULT_FONT_DESC_DEFAULT, TigerConfigurationCallback,
  256.                 TIGER_DEFAULT_FONT_DESC_TEXT, TIGER_DEFAULT_FONT_DESC_LONGTEXT, true);
  257.     add_integer_with_range( "kate-tiger-default-font-effect",
  258.                             TIGER_DEFAULT_FONT_EFFECT_DEFAULT,
  259.                             0, sizeof(pi_font_effects)/sizeof(pi_font_effects[0])-1, TigerConfigurationCallback,
  260.                             TIGER_DEFAULT_FONT_EFFECT_TEXT, TIGER_DEFAULT_FONT_EFFECT_LONGTEXT,
  261.                             true )
  262.     change_integer_list( pi_font_effects, ppsz_font_effect_names, NULL );
  263.     add_float_with_range( "kate-tiger-default-font-effect-strength",
  264.               TIGER_DEFAULT_FONT_EFFECT_STRENGTH_DEFAULT, 0.0f, 1.0f, TigerConfigurationCallback,
  265.               TIGER_DEFAULT_FONT_EFFECT_STRENGTH_TEXT, TIGER_DEFAULT_FONT_EFFECT_STRENGTH_LONGTEXT,
  266.               true )
  267.     add_integer_with_range( "kate-tiger-default-font-color",
  268.                             TIGER_DEFAULT_FONT_COLOR_DEFAULT, 0, 0x00ffffff, TigerConfigurationCallback,
  269.                             TIGER_DEFAULT_FONT_COLOR_TEXT, TIGER_DEFAULT_FONT_COLOR_LONGTEXT,
  270.                             true);
  271.     change_integer_list( pi_color_values, ppsz_color_descriptions, NULL );
  272.     add_integer_with_range( "kate-tiger-default-font-alpha",
  273.                             TIGER_DEFAULT_FONT_ALPHA_DEFAULT, 0, 255, TigerConfigurationCallback,
  274.                             TIGER_DEFAULT_FONT_ALPHA_TEXT, TIGER_DEFAULT_FONT_ALPHA_LONGTEXT,
  275.                             true);
  276.     add_integer_with_range( "kate-tiger-default-background-color",
  277.                             TIGER_DEFAULT_BACKGROUND_COLOR_DEFAULT, 0, 0x00ffffff, TigerConfigurationCallback,
  278.                             TIGER_DEFAULT_BACKGROUND_COLOR_TEXT, TIGER_DEFAULT_BACKGROUND_COLOR_LONGTEXT,
  279.                             true);
  280.     change_integer_list( pi_color_values, ppsz_color_descriptions, NULL );
  281.     add_integer_with_range( "kate-tiger-default-background-alpha",
  282.                             TIGER_DEFAULT_BACKGROUND_ALPHA_DEFAULT, 0, 255, TigerConfigurationCallback,
  283.                             TIGER_DEFAULT_BACKGROUND_ALPHA_TEXT, TIGER_DEFAULT_BACKGROUND_ALPHA_LONGTEXT,
  284.                             true);
  285. #endif
  286. #ifdef ENABLE_PACKETIZER
  287.     add_submodule ()
  288.     set_description( N_("Kate text subtitles packetizer") )
  289.     set_capability( "packetizer", 100 )
  290.     set_callbacks( OpenPacketizer, CloseDecoder )
  291.     add_shortcut( "kate" )
  292. #endif
  293. vlc_module_end ()
  294. /*****************************************************************************
  295.  * OpenDecoder: probe the decoder and return score
  296.  *****************************************************************************
  297.  * Tries to launch a decoder and return score so that the interface is able
  298.  * to chose.
  299.  *****************************************************************************/
  300. static int OpenDecoder( vlc_object_t *p_this )
  301. {
  302.     decoder_t     *p_dec = (decoder_t*)p_this;
  303.     decoder_sys_t *p_sys;
  304.     int            i_ret;
  305.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('k','a','t','e') )
  306.     {
  307.         return VLC_EGENERIC;
  308.     }
  309.     msg_Dbg( p_dec, "kate: OpenDecoder");
  310.     /* Set callbacks */
  311.     p_dec->pf_decode_sub = (subpicture_t *(*)(decoder_t *, block_t **))
  312.         DecodeBlock;
  313.     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
  314.         DecodeBlock;
  315.     /* Allocate the memory needed to store the decoder's structure */
  316.     if( ( p_dec->p_sys = p_sys = malloc(sizeof(*p_sys)) ) == NULL )
  317.         return VLC_ENOMEM;
  318.     vlc_mutex_init( &p_sys->lock );
  319.     p_sys->i_refcount = 0;
  320.     DecSysHold( p_sys );
  321.     /* init of p_sys */
  322. #ifdef ENABLE_PACKETIZER
  323.     p_sys->b_packetizer = false;
  324. #endif
  325.     p_sys->b_ready = false;
  326.     p_sys->i_pts = 0;
  327.     kate_comment_init( &p_sys->kc );
  328.     kate_info_init( &p_sys->ki );
  329.     p_sys->i_num_headers = 0;
  330.     p_sys->i_headers = 0;
  331.     /* retrieve options */
  332.     p_sys->b_formatted = var_CreateGetBool( p_dec, "kate-formatted" );
  333.     vlc_mutex_lock( &kate_decoder_list_mutex );
  334. #ifdef HAVE_TIGER
  335.     p_sys->b_use_tiger = var_CreateGetBool( p_dec, "kate-use-tiger" );
  336.     p_sys->p_tr = NULL;
  337.     p_sys->last_render_ts = 0;
  338.     /* get initial value of configuration */
  339.     p_sys->i_tiger_default_font_color = GetTigerColor( p_dec, "kate-tiger-default-font" );
  340.     p_sys->i_tiger_default_background_color = GetTigerColor( p_dec, "kate-tiger-default-background" );
  341.     p_sys->e_tiger_default_font_effect = GetTigerInteger( p_dec, "kate-tiger-default-font-effect" );
  342.     p_sys->f_tiger_default_font_effect_strength = GetTigerFloat( p_dec, "kate-tiger-default-font-effect-strength" );
  343.     p_sys->psz_tiger_default_font_desc = GetTigerString( p_dec, "kate-tiger-default-font-desc" );
  344.     p_sys->f_tiger_quality = GetTigerFloat( p_dec, "kate-tiger-quality" );
  345.     if( p_sys->b_use_tiger )
  346.     {
  347.         i_ret = tiger_renderer_create( &p_sys->p_tr );
  348.         if( i_ret < 0 )
  349.         {
  350.             msg_Warn ( p_dec, "Failed to create Tiger renderer, falling back to basic rendering" );
  351.             p_sys->p_tr = NULL;
  352.             p_sys->b_use_tiger = false;
  353.         }
  354.         CHECK_TIGER_RET( tiger_renderer_set_surface_clear_color( p_sys->p_tr, 1, 0, 0, 0, 0 ) );
  355.         UpdateTigerFontEffect( p_dec );
  356.         UpdateTigerFontColor( p_dec );
  357.         UpdateTigerBackgroundColor( p_dec );
  358.         UpdateTigerQuality( p_dec );
  359.         UpdateTigerFontDesc( p_dec );
  360.     }
  361. #else
  362.     p_sys->b_use_tiger = false;
  363. #endif
  364.     es_format_Init( &p_dec->fmt_out, SPU_ES, 0 );
  365.     /* add the decoder to the global list */
  366.     decoder_t **list = realloc( kate_decoder_list, (kate_decoder_list_size+1) * sizeof( *list ));
  367.     if( list )
  368.     {
  369.         list[ kate_decoder_list_size++ ] = p_dec;
  370.         kate_decoder_list = list;
  371.     }
  372.     vlc_mutex_unlock( &kate_decoder_list_mutex );
  373.     return VLC_SUCCESS;
  374. }
  375. #ifdef ENABLE_PACKETIZER
  376. static int OpenPacketizer( vlc_object_t *p_this )
  377. {
  378.     decoder_t *p_dec = (decoder_t*)p_this;
  379.     int i_ret = OpenDecoder( p_this );
  380.     if( i_ret == VLC_SUCCESS )
  381.     {
  382.         p_dec->p_sys->b_packetizer = true;
  383.         p_dec->fmt_out.i_codec = VLC_FOURCC( 'k', 'a', 't', 'e' );
  384.     }
  385.     return i_ret;
  386. }
  387. #endif
  388. /****************************************************************************
  389.  * DecodeBlock: the whole thing
  390.  ****************************************************************************
  391.  * This function must be fed with kate packets.
  392.  ****************************************************************************/
  393. static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  394. {
  395.     decoder_sys_t *p_sys = p_dec->p_sys;
  396.     block_t *p_block;
  397.     kate_packet kp;
  398.     if( !pp_block || !*pp_block )
  399.         return NULL;
  400.     p_block = *pp_block;
  401.     if( p_block->i_flags & (BLOCK_FLAG_CORRUPTED) )
  402.     {
  403.         block_Release( p_block );
  404.         return NULL;
  405.     }
  406.     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY) )
  407.     {
  408. #ifdef HAVE_TIGER
  409.         /* Hmm, should we wait before flushing the renderer ? I think not, but not certain... */
  410.         vlc_mutex_lock( &p_sys->lock );
  411.         tiger_renderer_seek( p_sys->p_tr, 0 );
  412.         vlc_mutex_unlock( &p_sys->lock );
  413. #endif
  414.         block_Release( p_block );
  415.         return NULL;
  416.     }
  417.     /* Block to Kate packet */
  418.     kate_packet_wrap(&kp, p_block->i_buffer, p_block->p_buffer);
  419.     if( p_sys->i_headers == 0 && p_dec->fmt_in.i_extra )
  420.     {
  421.         /* Headers already available as extra data */
  422.         p_sys->i_num_headers = ((unsigned char*)p_dec->fmt_in.p_extra)[0];
  423.         p_sys->i_headers = p_sys->i_num_headers;
  424.     }
  425.     else if( kp.nbytes && (p_sys->i_headers==0 || p_sys->i_headers < p_sys->ki.num_headers ))
  426.     {
  427.         /* Backup headers as extra data */
  428.         uint8_t *p_extra;
  429.         p_dec->fmt_in.p_extra =
  430.             realloc( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra + kp.nbytes + 2 );
  431.         p_extra = (void*)(((unsigned char*)p_dec->fmt_in.p_extra) + p_dec->fmt_in.i_extra);
  432.         *(p_extra++) = kp.nbytes >> 8;
  433.         *(p_extra++) = kp.nbytes & 0xFF;
  434.         memcpy( p_extra, kp.data, kp.nbytes );
  435.         p_dec->fmt_in.i_extra += kp.nbytes + 2;
  436.         block_Release( *pp_block );
  437.         p_sys->i_num_headers = ((unsigned char*)p_dec->fmt_in.p_extra)[0];
  438.         p_sys->i_headers++;
  439.         return NULL;
  440.     }
  441.     if( p_sys->i_headers == p_sys->i_num_headers && p_sys->i_num_headers>0 )
  442.     {
  443.         if( ProcessHeaders( p_dec ) != VLC_SUCCESS )
  444.         {
  445.             p_sys->i_headers = 0;
  446.             p_dec->fmt_in.i_extra = 0;
  447.             block_Release( *pp_block );
  448.             return NULL;
  449.         }
  450.         else p_sys->i_headers++;
  451.     }
  452.     return ProcessPacket( p_dec, &kp, pp_block );
  453. }
  454. /*****************************************************************************
  455.  * ProcessHeaders: process Kate headers.
  456.  *****************************************************************************/
  457. static int ProcessHeaders( decoder_t *p_dec )
  458. {
  459.     decoder_sys_t *p_sys = p_dec->p_sys;
  460.     kate_packet kp;
  461.     uint8_t *p_extra;
  462.     int i_extra;
  463.     int i_headeridx;
  464.     int i_ret;
  465.     if( !p_dec->fmt_in.i_extra ) return VLC_EGENERIC;
  466.     p_extra = p_dec->fmt_in.p_extra;
  467.     i_extra = p_dec->fmt_in.i_extra;
  468.     /* skip number of headers */
  469.     ++p_extra;
  470.     --i_extra;
  471.     /* Take care of the initial Kate header */
  472.     kp.nbytes = *(p_extra++) << 8;
  473.     kp.nbytes |= (*(p_extra++) & 0xFF);
  474.     kp.data = p_extra;
  475.     p_extra += kp.nbytes;
  476.     i_extra -= (kp.nbytes + 2);
  477.     if( i_extra < 0 )
  478.     {
  479.         msg_Err( p_dec, "header data corrupted");
  480.         return VLC_EGENERIC;
  481.     }
  482.     i_ret = kate_decode_headerin( &p_sys->ki, &p_sys->kc, &kp );
  483.     if( i_ret < 0 )
  484.     {
  485.         msg_Err( p_dec, "this bitstream does not contain Kate data (%d)", i_ret );
  486.         return VLC_EGENERIC;
  487.     }
  488.     msg_Dbg( p_dec, "%s %s text, granule rate %f, granule shift %d",
  489.              p_sys->ki.language, p_sys->ki.category,
  490.              (double)p_sys->ki.gps_numerator/p_sys->ki.gps_denominator,
  491.              p_sys->ki.granule_shift);
  492.     /* parse all remaining header packets */
  493.     for( i_headeridx = 1; i_headeridx < p_sys->ki.num_headers; ++i_headeridx )
  494.     {
  495.         kp.nbytes = *(p_extra++) << 8;
  496.         kp.nbytes |= (*(p_extra++) & 0xFF);
  497.         kp.data = p_extra;
  498.         p_extra += kp.nbytes;
  499.         i_extra -= (kp.nbytes + 2);
  500.         if( i_extra < 0 )
  501.         {
  502.             msg_Err( p_dec, "header %d data corrupted", i_headeridx );
  503.             return VLC_EGENERIC;
  504.         }
  505.         i_ret = kate_decode_headerin( &p_sys->ki, &p_sys->kc, &kp );
  506.         if( i_ret < 0 )
  507.         {
  508.             msg_Err( p_dec, "Kate header %d is corrupted: %d", i_headeridx, i_ret );
  509.             return VLC_EGENERIC;
  510.         }
  511.         /* header 1 is comments */
  512.         if( i_headeridx == 1 )
  513.         {
  514.             ParseKateComments( p_dec );
  515.         }
  516.     }
  517. #ifdef ENABLE_PACKETIZER
  518.     if( !p_sys->b_packetizer )
  519. #endif
  520.     {
  521.         /* We have all the headers, initialize decoder */
  522.         msg_Dbg( p_dec, "we have all headers, initialize libkate for decoding" );
  523.         i_ret = kate_decode_init( &p_sys->k, &p_sys->ki );
  524.         if (i_ret < 0)
  525.         {
  526.             msg_Err( p_dec, "Kate failed to initialize for decoding: %d", i_ret );
  527.             return VLC_EGENERIC;
  528.         }
  529.         p_sys->b_ready = true;
  530.     }
  531. #ifdef ENABLE_PACKETIZER
  532.     else
  533.     {
  534.         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
  535.         p_dec->fmt_out.p_extra =
  536.             realloc( p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  537.         memcpy( p_dec->fmt_out.p_extra,
  538.                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
  539.     }
  540. #endif
  541.     return VLC_SUCCESS;
  542. }
  543. /*****************************************************************************
  544.  * ProcessPacket: processes a kate packet.
  545.  *****************************************************************************/
  546. static subpicture_t *ProcessPacket( decoder_t *p_dec, kate_packet *p_kp,
  547.                             block_t **pp_block )
  548. {
  549.     decoder_sys_t *p_sys = p_dec->p_sys;
  550.     block_t *p_block = *pp_block;
  551.     subpicture_t *p_buf = NULL;
  552.     /* Date management */
  553.     if( p_block->i_pts > 0 && p_block->i_pts != p_sys->i_pts )
  554.     {
  555.         p_sys->i_pts = p_block->i_pts;
  556.     }
  557.     *pp_block = NULL; /* To avoid being fed the same packet again */
  558. #ifdef ENABLE_PACKETIZER
  559.     if( p_sys->b_packetizer )
  560.     {
  561.         /* Date management */
  562.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  563.         if( p_sys->i_headers >= p_sys->i_num_headers )
  564.             p_block->i_length = p_sys->i_pts - p_block->i_pts;
  565.         else
  566.             p_block->i_length = 0;
  567.         p_buf = p_block;
  568.     }
  569.     else
  570. #endif
  571.     {
  572.         if( p_sys->i_headers >= p_sys->i_num_headers && p_sys->i_num_headers > 0)
  573.             p_buf = DecodePacket( p_dec, p_kp, p_block );
  574.         else
  575.             p_buf = NULL;
  576.         if( p_block ) block_Release( p_block );
  577.     }
  578.     return p_buf;
  579. }
  580. /* nicked off blend.c */
  581. static inline void rgb_to_yuv( uint8_t *y, uint8_t *u, uint8_t *v,
  582.                                int r, int g, int b )
  583. {
  584.     *y = ( ( (  66 * r + 129 * g +  25 * b + 128 ) >> 8 ) + 16 );
  585.     *u =   ( ( -38 * r -  74 * g + 112 * b + 128 ) >> 8 ) + 128 ;
  586.     *v =   ( ( 112 * r -  94 * g -  18 * b + 128 ) >> 8 ) + 128 ;
  587. }
  588. /*
  589.   This retrieves the size of the video.
  590.   The best case is when the original video size is known, as we can then
  591.   scale images to match. In this case, since VLC autoscales, we want to
  592.   return the original size and let VLC scale everything.
  593.   if the original size is not known, then VLC can't resize, so we return
  594.   the size of the incoming video. If sizes in the Kate stream are in
  595.   relative units, it works fine. If they are absolute, you get what you
  596.   ask for. Images aren't rescaled.
  597. */
  598. static void GetVideoSize( decoder_t *p_dec, int *w, int *h )
  599. {
  600.     /* searching for vout to get its size is frowned upon, so we don't and
  601.        use a default size if the original canvas size is not specified. */
  602. #if 1
  603.     decoder_sys_t *p_sys = p_dec->p_sys;
  604.     if( p_sys->ki.original_canvas_width > 0 && p_sys->ki.original_canvas_height > 0 )
  605.     {
  606.         *w = p_sys->ki.original_canvas_width;
  607.         *h = p_sys->ki.original_canvas_height;
  608.         msg_Dbg( p_dec, "original canvas %zu %zu",
  609.          p_sys->ki.original_canvas_width, p_sys->ki.original_canvas_height );
  610.     }
  611.     else
  612.     {
  613.         /* nothing, leave defaults */
  614.         msg_Dbg( p_dec, "original canvas size unknown");
  615.     }
  616. #else
  617.     /* keep this just in case it might be allowed one day ;) */
  618.     vout_thread_t *p_vout;
  619.     p_vout = vlc_object_find( (vlc_object_t*)p_dec, VLC_OBJECT_VOUT, FIND_CHILD );
  620.     if( p_vout )
  621.     {
  622.         decoder_sys_t *p_sys = p_dec->p_sys;
  623.         if( p_sys->ki.original_canvas_width > 0 && p_sys->ki.original_canvas_height > 0 )
  624.         {
  625.             *w = p_sys->ki.original_canvas_width;
  626.             *h = p_sys->ki.original_canvas_height;
  627.         }
  628.         else
  629.         {
  630.             *w = p_vout->fmt_in.i_width;
  631.             *h = p_vout->fmt_in.i_height;
  632.         }
  633.         msg_Dbg( p_dec, "video: in %d %d, out %d %d, original canvas %zu %zu",
  634.                  p_vout->fmt_in.i_width, p_vout->fmt_in.i_height,
  635.                  p_vout->fmt_out.i_width, p_vout->fmt_out.i_height,
  636.                  p_sys->ki.original_canvas_width, p_sys->ki.original_canvas_height );
  637.         vlc_object_release( p_vout );
  638.     }
  639. #endif
  640. }
  641. static void CreateKateBitmap( picture_t *pic, const kate_bitmap *bitmap )
  642. {
  643.     size_t y;
  644.     for( y=0; y<bitmap->height; ++y )
  645.     {
  646.         uint8_t *dest = pic->Y_PIXELS+pic->Y_PITCH*y;
  647.         const uint8_t *src = bitmap->pixels+y*bitmap->width;
  648.         memcpy( dest, src, bitmap->width );
  649.     }
  650. }
  651. static void CreateKatePalette( video_palette_t *fmt_palette, const kate_palette *palette )
  652. {
  653.     size_t n;
  654.     fmt_palette->i_entries = palette->ncolors;
  655.     for( n=0; n<palette->ncolors; ++n )
  656.     {
  657.         rgb_to_yuv(
  658.             &fmt_palette->palette[n][0], &fmt_palette->palette[n][1], &fmt_palette->palette[n][2],
  659.             palette->colors[n].r, palette->colors[n].g, palette->colors[n].b
  660.         );
  661.         fmt_palette->palette[n][3] = palette->colors[n].a;
  662.     }
  663. }
  664. static void SetupText( decoder_t *p_dec, subpicture_t *p_spu, const kate_event *ev )
  665. {
  666.     decoder_sys_t *p_sys = p_dec->p_sys;
  667.     if( ev->text_encoding != kate_utf8 )
  668.     {
  669.         msg_Warn( p_dec, "Text isn't UTF-8, unsupported, ignored" );
  670.         return;
  671.     }
  672.     switch( ev->text_markup_type )
  673.     {
  674.         case kate_markup_none:
  675.             p_spu->p_region->psz_text = strdup( ev->text ); /* no leak, this actually gets killed by the core */
  676.             break;
  677.         case kate_markup_simple:
  678.             if( p_sys->b_formatted )
  679.             {
  680.                 /* the HTML renderer expects a top level text tag pair */
  681.                 char *buffer = NULL;
  682.                 if( asprintf( &buffer, "<text>%s</text>", ev->text ) >= 0 )
  683.                 {
  684.                     p_spu->p_region->psz_html = buffer;
  685.                 }
  686.                 break;
  687.             }
  688.             /* if not formatted, we fall through */
  689.         default:
  690.             /* we don't know about this one, so remove markup and display as text */
  691.             {
  692.                 char *copy = strdup( ev->text );
  693.                 size_t len0 = strlen( copy ) + 1;
  694.                 kate_text_remove_markup( ev->text_encoding, copy, &len0 );
  695.                 p_spu->p_region->psz_text = copy;
  696.             }
  697.             break;
  698.     }
  699. }
  700. #ifdef HAVE_TIGER
  701. static void TigerDestroySubpicture( subpicture_t *p_subpic )
  702. {
  703.     DecSysRelease( p_subpic->p_sys->p_dec_sys );
  704. }
  705. static void SubpictureReleaseRegions( subpicture_t *p_subpic )
  706. {
  707.     if( p_subpic->p_region)
  708.     {
  709.         subpicture_region_ChainDelete( p_subpic->p_region );
  710.         p_subpic->p_region = NULL;
  711.     }
  712. }
  713. static void TigerPreRender( spu_t *p_spu, subpicture_t *p_subpic, const video_format_t *p_fmt )
  714. {
  715.     decoder_sys_t *p_sys = p_subpic->p_sys->p_dec_sys;
  716.     VLC_UNUSED( p_spu );
  717.     VLC_UNUSED( p_fmt );
  718.     p_sys->p_spu_final = p_subpic;
  719. }
  720. /*
  721.  * We get premultiplied alpha, but VLC doesn't expect this, so we demultiply
  722.  * alpha to avoid double multiply (and thus thinner text than we should)).
  723.  * Best would be to have VLC be able to handle premultiplied alpha, as it
  724.  * would be faster to blend as well.
  725.  *
  726.  * Also, we flip color components around for big endian machines, as Tiger
  727.  * outputs ARGB or ABGR (the one we selected here) in host endianness.
  728.  */
  729. static void PostprocessTigerImage( plane_t *p_plane, unsigned int i_width )
  730. {
  731.     PROFILE_START( tiger_renderer_postprocess );
  732.     int y;
  733.     for( y=0; y<p_plane->i_lines; ++y )
  734.     {
  735.         uint8_t *p_line = (uint8_t*)(p_plane->p_pixels + y*p_plane->i_pitch);
  736.         unsigned int x;
  737.         for( x=0; x<i_width; ++x )
  738.         {
  739.             uint8_t *p_pixel = p_line+x*4;
  740. #ifdef WORDS_BIGENDIAN
  741.             uint8_t a = p_pixel[0];
  742. #else
  743.             uint8_t a = p_pixel[3];
  744. #endif
  745.             if( a )
  746.             {
  747. #ifdef WORDS_BIGENDIAN
  748.                 uint8_t tmp = p_pixel[2];
  749.                 p_pixel[0] = p_pixel[3] * 255 / a;
  750.                 p_pixel[3] = a;
  751.                 p_pixel[2] = p_pixel[1] * 255 / a;
  752.                 p_pixel[1] = tmp * 255 / a;
  753. #else
  754.                 p_pixel[0] = p_pixel[0] * 255 / a;
  755.                 p_pixel[1] = p_pixel[1] * 255 / a;
  756.                 p_pixel[2] = p_pixel[2] * 255 / a;
  757. #endif
  758.             }
  759.             else
  760.             {
  761.                 p_pixel[0] = 0;
  762.                 p_pixel[1] = 0;
  763.                 p_pixel[2] = 0;
  764.                 p_pixel[3] = 0;
  765.             }
  766.         }
  767.     }
  768.     PROFILE_STOP( tiger_renderer_postprocess );
  769. }
  770. /* Tiger renders can end up looking a bit crap since they get overlaid on top of
  771.    a subsampled YUV image, so there can be a fair amount of chroma bleeding.
  772.    Looks good with white though since it's all luma. Hopefully that will be the
  773.    common case. */
  774. static void TigerUpdateRegions( spu_t *p_spu, subpicture_t *p_subpic, const video_format_t *p_fmt, mtime_t ts )
  775. {
  776.     decoder_sys_t *p_sys = p_subpic->p_sys->p_dec_sys;
  777.     subpicture_region_t *p_r;
  778.     video_format_t fmt;
  779.     plane_t *p_plane;
  780.     kate_float t;
  781.     int i_ret;
  782.     VLC_UNUSED( p_spu );
  783.     PROFILE_START( TigerUpdateRegions );
  784.     /* do not render more than once per frame, libtiger renders all events at once */
  785.     if (ts <= p_sys->last_render_ts)
  786.     {
  787.         SubpictureReleaseRegions( p_subpic );
  788.         return;
  789.     }
  790.     /* remember what frame we've rendered already */
  791.     p_sys->last_render_ts = ts;
  792.     if( p_subpic != p_sys->p_spu_final )
  793.     {
  794.         SubpictureReleaseRegions( p_subpic );
  795.         return;
  796.     }
  797.     /* time in seconds from the start of the stream */
  798.     t = (p_subpic->p_sys->i_start + ts - p_subpic->i_start ) / 1000000.0f;
  799.     /* it is likely that the current region (if any) can be kept as is; test for this */
  800.     vlc_mutex_lock( &p_sys->lock );
  801.     if( p_subpic->p_region && !p_sys->b_dirty && !tiger_renderer_is_dirty( p_sys->p_tr ))
  802.     {
  803.         PROFILE_START( tiger_renderer_update1 );
  804.         i_ret = tiger_renderer_update( p_sys->p_tr, t, 1 );
  805.         PROFILE_STOP( tiger_renderer_update1 );
  806.         if( i_ret < 0 )
  807.         {
  808.             SubpictureReleaseRegions( p_subpic );
  809.             vlc_mutex_unlock( &p_sys->lock );
  810.             return;
  811.         }
  812.         if( !tiger_renderer_is_dirty( p_sys->p_tr ) )
  813.         {
  814.             /* we can keep the current region list */
  815.             PROFILE_STOP( TigerUpdateRegions );
  816.             vlc_mutex_unlock( &p_sys->lock );
  817.             return;
  818.         }
  819.     }
  820.     vlc_mutex_unlock( &p_sys->lock );
  821.     /* we have to render again, reset current region list */
  822.     SubpictureReleaseRegions( p_subpic );
  823.     /* create a full frame region - this will also tell Tiger the size of the frame */
  824.     fmt = *p_fmt;
  825.     fmt.i_chroma = VLC_FOURCC('R','G','B','A');
  826.     fmt.i_width = fmt.i_visible_width;
  827.     fmt.i_height = fmt.i_visible_height;
  828.     fmt.i_bits_per_pixel = 0;
  829.     fmt.i_x_offset = fmt.i_y_offset = 0;
  830.     p_r = subpicture_region_New( &fmt );
  831.     if( !p_r )
  832.     {
  833.         return;
  834.     }
  835.     p_r->i_x = 0;
  836.     p_r->i_y = 0;
  837.     p_r->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
  838.     vlc_mutex_lock( &p_sys->lock );
  839.     p_plane = &p_r->p_picture->p[0];
  840.     i_ret = tiger_renderer_set_buffer( p_sys->p_tr, p_plane->p_pixels, fmt.i_width, p_plane->i_lines, p_plane->i_pitch, 1 );
  841.     if( i_ret < 0 )
  842.     {
  843.         goto failure;
  844.     }
  845.     PROFILE_START( tiger_renderer_update );
  846.     i_ret = tiger_renderer_update( p_sys->p_tr, t, 1 );
  847.     if( i_ret < 0 )
  848.     {
  849.         goto failure;
  850.     }
  851.     PROFILE_STOP( tiger_renderer_update );
  852.     PROFILE_START( tiger_renderer_render );
  853.     i_ret = tiger_renderer_render( p_sys->p_tr );
  854.     if( i_ret < 0 )
  855.     {
  856.         goto failure;
  857.     }
  858.     PROFILE_STOP( tiger_renderer_render );
  859.     PostprocessTigerImage( p_plane, fmt.i_width );
  860.     p_subpic->p_region = p_r;
  861.     p_sys->b_dirty = false;
  862.     PROFILE_STOP( TigerUpdateRegions );
  863.     vlc_mutex_unlock( &p_sys->lock );
  864.     return;
  865. failure:
  866.     vlc_mutex_unlock( &p_sys->lock );
  867.     subpicture_region_ChainDelete( p_r );
  868. }
  869. static uint32_t GetTigerColor( decoder_t *p_dec, const char *psz_prefix )
  870. {
  871.     char *psz_tmp;
  872.     uint32_t i_color = 0;
  873.     if( asprintf( &psz_tmp, "%s-color", psz_prefix ) >= 0 )
  874.     {
  875.         uint32_t i_rgb = var_CreateGetInteger( p_dec, psz_tmp );
  876.         var_Destroy( p_dec, psz_tmp );
  877.         free( psz_tmp );
  878.         i_color |= i_rgb;
  879.     }
  880.     if( asprintf( &psz_tmp, "%s-alpha", psz_prefix ) >= 0 )
  881.     {
  882.         uint32_t i_alpha = var_CreateGetInteger( p_dec, psz_tmp );
  883.         var_Destroy( p_dec, psz_tmp );
  884.         free( psz_tmp );
  885.         i_color |= (i_alpha << 24);
  886.     }
  887.     return i_color;
  888. }
  889. static char *GetTigerString( decoder_t *p_dec, const char *psz_name )
  890. {
  891.     char *psz_value = var_CreateGetString( p_dec, psz_name );
  892.     if( psz_value)
  893.     {
  894.         psz_value = strdup( psz_value );
  895.     }
  896.     var_Destroy( p_dec, psz_name );
  897.     return psz_value;
  898. }
  899. static int GetTigerInteger( decoder_t *p_dec, const char *psz_name )
  900. {
  901.     int i_value = var_CreateGetInteger( p_dec, psz_name );
  902.     var_Destroy( p_dec, psz_name );
  903.     return i_value;
  904. }
  905. static double GetTigerFloat( decoder_t *p_dec, const char *psz_name )
  906. {
  907.     double f_value = var_CreateGetFloat( p_dec, psz_name );
  908.     var_Destroy( p_dec, psz_name );
  909.     return f_value;
  910. }
  911. static void UpdateTigerQuality( decoder_t *p_dec )
  912. {
  913.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  914.     CHECK_TIGER_RET( tiger_renderer_set_quality( p_sys->p_tr, p_sys->f_tiger_quality ) );
  915.     p_sys->b_dirty = true;
  916. }
  917. static void UpdateTigerFontDesc( decoder_t *p_dec )
  918. {
  919.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  920.     CHECK_TIGER_RET( tiger_renderer_set_default_font_description( p_sys->p_tr, p_sys->psz_tiger_default_font_desc ) );
  921.     p_sys->b_dirty = true;
  922. }
  923. static void UpdateTigerFontColor( decoder_t *p_dec )
  924. {
  925.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  926.     double f_a = ((p_sys->i_tiger_default_font_color >> 24) & 0xff) / 255.0;
  927.     double f_r = ((p_sys->i_tiger_default_font_color >> 16) & 0xff) / 255.0;
  928.     double f_g = ((p_sys->i_tiger_default_font_color >> 8) & 0xff) / 255.0;
  929.     double f_b = (p_sys->i_tiger_default_font_color & 0xff) / 255.0;
  930.     CHECK_TIGER_RET( tiger_renderer_set_default_font_color( p_sys->p_tr, f_r, f_g, f_b, f_a ) );
  931.     p_sys->b_dirty = true;
  932. }
  933. static void UpdateTigerBackgroundColor( decoder_t *p_dec )
  934. {
  935.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  936.     double f_a = ((p_sys->i_tiger_default_background_color >> 24) & 0xff) / 255.0;
  937.     double f_r = ((p_sys->i_tiger_default_background_color >> 16) & 0xff) / 255.0;
  938.     double f_g = ((p_sys->i_tiger_default_background_color >> 8) & 0xff) / 255.0;
  939.     double f_b = (p_sys->i_tiger_default_background_color & 0xff) / 255.0;
  940.     CHECK_TIGER_RET( tiger_renderer_set_default_background_fill_color( p_sys->p_tr, f_r, f_g, f_b, f_a ) );
  941.     p_sys->b_dirty = true;
  942. }
  943. static void UpdateTigerFontEffect( decoder_t *p_dec )
  944. {
  945.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  946.     CHECK_TIGER_RET( tiger_renderer_set_default_font_effect( p_sys->p_tr,
  947.                                                              p_sys->e_tiger_default_font_effect,
  948.                                                              p_sys->f_tiger_default_font_effect_strength ) );
  949.     p_sys->b_dirty = true;
  950. }
  951. static int OnConfigurationChanged( decoder_t *p_dec, const char *psz_var,
  952.                                    vlc_value_t oldval, vlc_value_t newval )
  953. {
  954.     decoder_sys_t *p_sys = (decoder_sys_t*)p_dec->p_sys;
  955.     VLC_UNUSED( oldval );
  956.     vlc_mutex_lock( &p_sys->lock );
  957.     msg_Dbg( p_dec, "OnConfigurationChanged: %s", psz_var );
  958.     if( !p_sys->b_use_tiger || !p_sys->p_tr )
  959.     {
  960.         vlc_mutex_unlock( &p_sys->lock );
  961.         return VLC_SUCCESS;
  962.     }
  963. #define TEST_TIGER_VAR( name ) 
  964.     if( !strcmp( name, psz_var ) )
  965.     TEST_TIGER_VAR( "kate-tiger-quality" )
  966.     {
  967.         p_sys->f_tiger_quality = newval.f_float;
  968.         UpdateTigerQuality( p_dec );
  969.     }
  970.     TEST_TIGER_VAR( "kate-tiger-default-font-desc" )
  971.     {
  972.         if( p_sys->psz_tiger_default_font_desc )
  973.         {
  974.             free( p_sys->psz_tiger_default_font_desc );
  975.             p_sys->psz_tiger_default_font_desc = NULL;
  976.         }
  977.         if( newval.psz_string )
  978.         {
  979.             p_sys->psz_tiger_default_font_desc = strdup( newval.psz_string );
  980.         }
  981.         UpdateTigerFontDesc( p_dec );
  982.     }
  983.     TEST_TIGER_VAR( "kate-tiger-default-font-color" )
  984.     {
  985.         p_sys->i_tiger_default_font_color = (p_sys->i_tiger_default_font_color & 0xff00000000) | newval.i_int;
  986.         UpdateTigerFontColor( p_dec );
  987.     }
  988.     TEST_TIGER_VAR( "kate-tiger-default-font-alpha" )
  989.     {
  990.         p_sys->i_tiger_default_font_color = (p_sys->i_tiger_default_font_color & 0x00ffffff) | (newval.i_int<<24);
  991.         UpdateTigerFontColor( p_dec );
  992.     }
  993.     TEST_TIGER_VAR( "kate-tiger-default-background-color" )
  994.     {
  995.         p_sys->i_tiger_default_background_color = (p_sys->i_tiger_default_background_color & 0xff00000000) | newval.i_int;
  996.         UpdateTigerBackgroundColor( p_dec );
  997.     }
  998.     TEST_TIGER_VAR( "kate-tiger-default-background-alpha" )
  999.     {
  1000.         p_sys->i_tiger_default_background_color = (p_sys->i_tiger_default_background_color & 0x00ffffff) | (newval.i_int<<24);
  1001.         UpdateTigerBackgroundColor( p_dec );
  1002.     }
  1003.     TEST_TIGER_VAR( "kate-tiger-default-font-effect" )
  1004.     {
  1005.         p_sys->e_tiger_default_font_effect = (tiger_font_effect)newval.i_int;
  1006.         UpdateTigerFontEffect( p_dec );
  1007.     }
  1008.     TEST_TIGER_VAR( "kate-tiger-default-font-effect-strength" )
  1009.     {
  1010.         p_sys->f_tiger_default_font_effect_strength = newval.f_float;
  1011.         UpdateTigerFontEffect( p_dec );
  1012.     }
  1013. #undef TEST_TIGER_VAR
  1014.     vlc_mutex_unlock( &p_sys->lock );
  1015.     return VLC_SUCCESS;
  1016. }
  1017. static int TigerConfigurationCallback( vlc_object_t *p_this, const char *psz_var,
  1018.                                        vlc_value_t oldval, vlc_value_t newval,
  1019.                                        void *p_data )
  1020. {
  1021.     size_t i_idx;
  1022.     VLC_UNUSED( p_this );
  1023.     VLC_UNUSED( oldval );
  1024.     VLC_UNUSED( newval );
  1025.     VLC_UNUSED( p_data );
  1026.     vlc_mutex_lock( &kate_decoder_list_mutex );
  1027.     /* Update all existing decoders from the global user prefs */
  1028.     for( i_idx = 0; i_idx < kate_decoder_list_size; i_idx++ )
  1029.     {
  1030.         decoder_t *p_dec = kate_decoder_list[ i_idx ];
  1031.         OnConfigurationChanged( p_dec, psz_var, oldval, newval );
  1032.     }
  1033.     vlc_mutex_unlock( &kate_decoder_list_mutex );
  1034.     return VLC_SUCCESS;
  1035. }
  1036. #endif
  1037. /*****************************************************************************
  1038.  * DecodePacket: decodes a Kate packet.
  1039.  *****************************************************************************/
  1040. static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp, block_t *p_block )
  1041. {
  1042.     decoder_sys_t *p_sys = p_dec->p_sys;
  1043.     const kate_event *ev = NULL;
  1044.     subpicture_t *p_spu = NULL;
  1045.     int i_ret;
  1046.     if( !p_sys->b_ready )
  1047.     {
  1048.         msg_Err( p_dec, "Cannot decode Kate packet, decoder not initialized" );
  1049.         return NULL;
  1050.     }
  1051.     i_ret = kate_decode_packetin( &p_sys->k, p_kp );
  1052.     if( i_ret < 0 )
  1053.     {
  1054.         msg_Err( p_dec, "Kate failed to decode packet: %d", i_ret );
  1055.         return NULL;
  1056.     }
  1057.     i_ret = kate_decode_eventout( &p_sys->k, &ev );
  1058.     if( i_ret < 0 )
  1059.     {
  1060.         msg_Err( p_dec, "Kate failed to retrieve event: %d", i_ret );
  1061.         return NULL;
  1062.     }
  1063.     if( i_ret > 0 )
  1064.     {
  1065.         /* no event to go with this packet, this is normal */
  1066.         return NULL;
  1067.     }
  1068.     /* we have an event */
  1069.     /* Get a new spu */
  1070.     p_spu = decoder_NewSubpicture( p_dec );
  1071.     if( !p_spu )
  1072.     {
  1073.         /* this will happen for lyrics as there is no vout - so no error */
  1074.         /* msg_Err( p_dec, "Failed to allocate spu buffer" ); */
  1075.         return NULL;
  1076.     }
  1077.     p_spu->i_start = p_block->i_pts;
  1078.     p_spu->i_stop = p_block->i_pts + INT64_C(1000000)*ev->duration*p_sys->ki.gps_denominator/p_sys->ki.gps_numerator;
  1079.     p_spu->b_ephemer = false;
  1080.     p_spu->b_absolute = false;
  1081. #ifdef HAVE_TIGER
  1082.     if( p_sys->b_use_tiger)
  1083.     {
  1084.         /* setup the structure to get our decoder struct back */
  1085.         p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
  1086.         if( !p_spu->p_sys )
  1087.         {
  1088.             decoder_DeleteSubpicture( p_dec, p_spu );
  1089.             return NULL;
  1090.         }
  1091.         p_spu->p_sys->p_dec_sys = p_sys;
  1092.         p_spu->p_sys->i_start = p_block->i_pts;
  1093.         DecSysHold( p_sys );
  1094.         p_spu->b_absolute = true;
  1095.         /* add the event to tiger */
  1096.         vlc_mutex_lock( &p_sys->lock );
  1097.         CHECK_TIGER_RET( tiger_renderer_add_event( p_sys->p_tr, ev->ki, ev ) );
  1098.         vlc_mutex_unlock( &p_sys->lock );
  1099.         /* hookup render/update routines */
  1100.         p_spu->pf_pre_render = TigerPreRender;
  1101.         p_spu->pf_update_regions = TigerUpdateRegions;
  1102.         p_spu->pf_destroy = TigerDestroySubpicture;
  1103.     }
  1104.     else
  1105. #endif
  1106.     {
  1107.         p_spu = SetupSimpleKateSPU( p_dec, p_spu, ev );
  1108.     }
  1109.     return p_spu;
  1110. }
  1111. /*****************************************************************************
  1112.  * SetupSimpleKateSPU: creates text/bitmap regions where appropriate
  1113.  *****************************************************************************/
  1114. static subpicture_t *SetupSimpleKateSPU( decoder_t *p_dec, subpicture_t *p_spu,
  1115.                                          const kate_event *ev )
  1116. {
  1117.     decoder_sys_t *p_sys = p_dec->p_sys;
  1118.     video_format_t fmt;
  1119.     subpicture_region_t *p_bitmap_region = NULL;
  1120.     video_palette_t palette;
  1121.     kate_tracker kin;
  1122.     bool b_tracker_valid = false;
  1123.     int i_ret;
  1124.     /* these may be 0 for "not specified" */
  1125.     p_spu->i_original_picture_width = p_sys->ki.original_canvas_width;
  1126.     p_spu->i_original_picture_height = p_sys->ki.original_canvas_height;
  1127.     /* Create a new subpicture region */
  1128.     memset( &fmt, 0, sizeof(video_format_t) );
  1129.     if (p_sys->b_formatted)
  1130.     {
  1131.         i_ret = kate_tracker_init( &kin, &p_sys->ki, ev );
  1132.         if( i_ret < 0)
  1133.         {
  1134.             msg_Err( p_dec, "failed to initialize kate tracker, event will be unformatted: %d", i_ret );
  1135.         }
  1136.         else
  1137.         {
  1138.             int w = 720, h = 576; /* give sensible defaults just in case we fail to get the actual size */
  1139.             GetVideoSize(p_dec, &w, &h);
  1140.             i_ret = kate_tracker_update(&kin, 0, w, h, 0, 0, w, h);
  1141.             if( i_ret < 0)
  1142.             {
  1143.                 kate_tracker_clear(&kin);
  1144.                 msg_Err( p_dec, "failed to update kate tracker, event will be unformatted: %d", i_ret );
  1145.             }
  1146.             else
  1147.             {
  1148.                 // TODO: parse tracker and set style, init fmt
  1149.                 b_tracker_valid = true;
  1150.             }
  1151.         }
  1152.     }
  1153.     if (ev->bitmap && ev->bitmap->type==kate_bitmap_type_paletted && ev->palette) {
  1154.         /* create a separate region for the bitmap */
  1155.         memset( &fmt, 0, sizeof(video_format_t) );
  1156.         fmt.i_chroma = VLC_FOURCC('Y','U','V','P');
  1157.         fmt.i_aspect = 0;
  1158.         fmt.i_width = fmt.i_visible_width = ev->bitmap->width;
  1159.         fmt.i_height = fmt.i_visible_height = ev->bitmap->height;
  1160.         fmt.i_x_offset = fmt.i_y_offset = 0;
  1161.         fmt.p_palette = &palette;
  1162.         CreateKatePalette( fmt.p_palette, ev->palette );
  1163.         p_bitmap_region = subpicture_region_New( &fmt );
  1164.         if( !p_bitmap_region )
  1165.         {
  1166.             msg_Err( p_dec, "cannot allocate SPU region" );
  1167.             decoder_DeleteSubpicture( p_dec, p_spu );
  1168.             return NULL;
  1169.         }
  1170.         /* create the bitmap */
  1171.         CreateKateBitmap( p_bitmap_region->p_picture, ev->bitmap );
  1172.         msg_Dbg(p_dec, "Created bitmap, %zux%zu, %zu colors", ev->bitmap->width, ev->bitmap->height, ev->palette->ncolors);
  1173.     }
  1174.     /* text region */
  1175.     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
  1176.     fmt.i_aspect = 0;
  1177.     fmt.i_width = fmt.i_height = 0;
  1178.     fmt.i_x_offset = fmt.i_y_offset = 0;
  1179.     p_spu->p_region = subpicture_region_New( &fmt );
  1180.     if( !p_spu->p_region )
  1181.     {
  1182.         msg_Err( p_dec, "cannot allocate SPU region" );
  1183.         decoder_DeleteSubpicture( p_dec, p_spu );
  1184.         return NULL;
  1185.     }
  1186.     SetupText( p_dec, p_spu, ev );
  1187.     /* default positioning */
  1188.     p_spu->p_region->i_align = SUBPICTURE_ALIGN_BOTTOM;
  1189.     if (p_bitmap_region)
  1190.     {
  1191.         p_bitmap_region->i_align = SUBPICTURE_ALIGN_BOTTOM;
  1192.     }
  1193.     p_spu->p_region->i_x = 0;
  1194.     p_spu->p_region->i_y = 10;
  1195.     /* override if tracker info present */
  1196.     if (b_tracker_valid)
  1197.     {
  1198.         if (kin.has.region)
  1199.         {
  1200.             p_spu->p_region->i_x = kin.region_x;
  1201.             p_spu->p_region->i_y = kin.region_y;
  1202.             if (p_bitmap_region)
  1203.             {
  1204.                 p_bitmap_region->i_x = kin.region_x;
  1205.                 p_bitmap_region->i_y = kin.region_y;
  1206.             }
  1207.             p_spu->b_absolute = true;
  1208.         }
  1209.         kate_tracker_clear(&kin);
  1210.     }
  1211.     /* if we have a bitmap, chain it before the text */
  1212.     if (p_bitmap_region)
  1213.     {
  1214.         p_bitmap_region->p_next = p_spu->p_region;
  1215.         p_spu->p_region = p_bitmap_region;
  1216.     }
  1217.     return p_spu;
  1218. }
  1219. /*****************************************************************************
  1220.  * ParseKateComments:
  1221.  *****************************************************************************/
  1222. static void ParseKateComments( decoder_t *p_dec )
  1223. {
  1224.     char *psz_name, *psz_value, *psz_comment;
  1225.     int i = 0;
  1226.     while ( i < p_dec->p_sys->kc.comments )
  1227.     {
  1228.         psz_comment = strdup( p_dec->p_sys->kc.user_comments[i] );
  1229.         if( !psz_comment )
  1230.             break;
  1231.         psz_name = psz_comment;
  1232.         psz_value = strchr( psz_comment, '=' );
  1233.         if( psz_value )
  1234.         {
  1235.             *psz_value = '';
  1236.             psz_value++;
  1237.             if( !p_dec->p_description )
  1238.                 p_dec->p_description = vlc_meta_New();
  1239.             if( p_dec->p_description )
  1240.                 vlc_meta_AddExtra( p_dec->p_description, psz_name, psz_value );
  1241.         }
  1242.         free( psz_comment );
  1243.         i++;
  1244.     }
  1245. }
  1246. /*****************************************************************************
  1247.  * CloseDecoder: clean up the decoder
  1248.  *****************************************************************************/
  1249. static void CloseDecoder( vlc_object_t *p_this )
  1250. {
  1251.     decoder_t *p_dec = (decoder_t *)p_this;
  1252.     size_t     i_index;
  1253.     /* remove the decoder from the global list */
  1254.     vlc_mutex_lock( &kate_decoder_list_mutex );
  1255.     for( i_index = 0; i_index < kate_decoder_list_size; i_index++ )
  1256.     {
  1257.         if( kate_decoder_list[ i_index ] == p_dec )
  1258.         {
  1259.             kate_decoder_list[ i_index ] = kate_decoder_list[ --kate_decoder_list_size ];
  1260.             break;
  1261.         }
  1262.     }
  1263.     vlc_mutex_unlock( &kate_decoder_list_mutex );
  1264.     msg_Dbg( p_dec, "Closing Kate decoder" );
  1265.     DecSysRelease( p_dec->p_sys );
  1266. }
  1267. static void DecSysHold( decoder_sys_t *p_sys )
  1268. {
  1269.     vlc_mutex_lock( &p_sys->lock );
  1270.     p_sys->i_refcount++;
  1271.     vlc_mutex_unlock( &p_sys->lock );
  1272. }
  1273. static void DecSysRelease( decoder_sys_t *p_sys )
  1274. {
  1275.     vlc_mutex_lock( &p_sys->lock );
  1276.     p_sys->i_refcount--;
  1277.     if( p_sys->i_refcount > 0)
  1278.     {
  1279.         vlc_mutex_unlock( &p_sys->lock );
  1280.         return;
  1281.     }
  1282.     vlc_mutex_unlock( &p_sys->lock );
  1283.     vlc_mutex_destroy( &p_sys->lock );
  1284. #ifdef HAVE_TIGER
  1285.     if( p_sys->p_tr )
  1286.         tiger_renderer_destroy( p_sys->p_tr );
  1287.     if( p_sys->psz_tiger_default_font_desc )
  1288.         free( p_sys->psz_tiger_default_font_desc );
  1289. #endif
  1290.     if (p_sys->b_ready)
  1291.         kate_clear( &p_sys->k );
  1292.     kate_info_clear( &p_sys->ki );
  1293.     kate_comment_clear( &p_sys->kc );
  1294.     free( p_sys );
  1295. }