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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * text_renderer.h: common text renderer code
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: d8835b053f579b268875c54a7adca5eafc3278b8 $
  6.  *
  7.  * Authors: Bernie Purcell <bitmap@videolan.org>
  8.  *          Laurent Aimar < fenrir AT videolan DOT org >
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. typedef struct font_stack_t font_stack_t;
  25. struct font_stack_t
  26. {
  27.     char          *psz_name;
  28.     int            i_size;
  29.     uint32_t       i_color;            /* ARGB */
  30.     uint32_t       i_karaoke_bg_color; /* ARGB */
  31.     font_stack_t  *p_next;
  32. };
  33. static void SetupLine( filter_t *p_filter, const char *psz_text_in,
  34.                        UCHAR **psz_text_out, uint32_t *pi_runs,
  35.                        uint32_t **ppi_run_lengths, TR_FONT_STYLE_PTR **ppp_styles,
  36.                        TR_FONT_STYLE_PTR p_style );
  37. static TR_FONT_STYLE_PTR GetStyleFromFontStack( filter_sys_t *p_sys,
  38.                                           font_stack_t **p_fonts, bool b_bold, bool b_italic,
  39.                                           bool b_uline );
  40. static int PushFont( font_stack_t **p_font, const char *psz_name, int i_size,
  41.                      uint32_t i_color, uint32_t i_karaoke_bg_color )
  42. {
  43.     font_stack_t *p_new;
  44.     if( !p_font )
  45.         return VLC_EGENERIC;
  46.     p_new = malloc( sizeof( font_stack_t ) );
  47.     if( ! p_new )
  48.         return VLC_ENOMEM;
  49.     p_new->p_next = NULL;
  50.     if( psz_name )
  51.         p_new->psz_name = strdup( psz_name );
  52.     else
  53.         p_new->psz_name = NULL;
  54.     p_new->i_size              = i_size;
  55.     p_new->i_color             = i_color;
  56.     p_new->i_karaoke_bg_color  = i_karaoke_bg_color;
  57.     if( !*p_font )
  58.     {
  59.         *p_font = p_new;
  60.     }
  61.     else
  62.     {
  63.         font_stack_t *p_last;
  64.         for( p_last = *p_font;
  65.              p_last->p_next;
  66.              p_last = p_last->p_next )
  67.         ;
  68.         p_last->p_next = p_new;
  69.     }
  70.     return VLC_SUCCESS;
  71. }
  72. static int PopFont( font_stack_t **p_font )
  73. {
  74.     font_stack_t *p_last, *p_next_to_last;
  75.     if( !p_font || !*p_font )
  76.         return VLC_EGENERIC;
  77.     p_next_to_last = NULL;
  78.     for( p_last = *p_font;
  79.          p_last->p_next;
  80.          p_last = p_last->p_next )
  81.     {
  82.         p_next_to_last = p_last;
  83.     }
  84.     if( p_next_to_last )
  85.         p_next_to_last->p_next = NULL;
  86.     else
  87.         *p_font = NULL;
  88.     free( p_last->psz_name );
  89.     free( p_last );
  90.     return VLC_SUCCESS;
  91. }
  92. static int PeekFont( font_stack_t **p_font, char **psz_name, int *i_size,
  93.                      uint32_t *i_color, uint32_t *i_karaoke_bg_color )
  94. {
  95.     font_stack_t *p_last;
  96.     if( !p_font || !*p_font )
  97.         return VLC_EGENERIC;
  98.     for( p_last=*p_font;
  99.          p_last->p_next;
  100.          p_last=p_last->p_next )
  101.     ;
  102.     *psz_name            = p_last->psz_name;
  103.     *i_size              = p_last->i_size;
  104.     *i_color             = p_last->i_color;
  105.     *i_karaoke_bg_color  = p_last->i_karaoke_bg_color;
  106.     return VLC_SUCCESS;
  107. }
  108. static const struct {
  109.     const char *psz_name;
  110.     uint32_t   i_value;
  111. } p_html_colors[] = {
  112.     /* Official html colors */
  113.     { "Aqua",    0x00FFFF },
  114.     { "Black",   0x000000 },
  115.     { "Blue",    0x0000FF },
  116.     { "Fuchsia", 0xFF00FF },
  117.     { "Gray",    0x808080 },
  118.     { "Green",   0x008000 },
  119.     { "Lime",    0x00FF00 },
  120.     { "Maroon",  0x800000 },
  121.     { "Navy",    0x000080 },
  122.     { "Olive",   0x808000 },
  123.     { "Purple",  0x800080 },
  124.     { "Red",     0xFF0000 },
  125.     { "Silver",  0xC0C0C0 },
  126.     { "Teal",    0x008080 },
  127.     { "White",   0xFFFFFF },
  128.     { "Yellow",  0xFFFF00 },
  129.     /* Common ones */
  130.     { "AliceBlue", 0xF0F8FF },
  131.     { "AntiqueWhite", 0xFAEBD7 },
  132.     { "Aqua", 0x00FFFF },
  133.     { "Aquamarine", 0x7FFFD4 },
  134.     { "Azure", 0xF0FFFF },
  135.     { "Beige", 0xF5F5DC },
  136.     { "Bisque", 0xFFE4C4 },
  137.     { "Black", 0x000000 },
  138.     { "BlanchedAlmond", 0xFFEBCD },
  139.     { "Blue", 0x0000FF },
  140.     { "BlueViolet", 0x8A2BE2 },
  141.     { "Brown", 0xA52A2A },
  142.     { "BurlyWood", 0xDEB887 },
  143.     { "CadetBlue", 0x5F9EA0 },
  144.     { "Chartreuse", 0x7FFF00 },
  145.     { "Chocolate", 0xD2691E },
  146.     { "Coral", 0xFF7F50 },
  147.     { "CornflowerBlue", 0x6495ED },
  148.     { "Cornsilk", 0xFFF8DC },
  149.     { "Crimson", 0xDC143C },
  150.     { "Cyan", 0x00FFFF },
  151.     { "DarkBlue", 0x00008B },
  152.     { "DarkCyan", 0x008B8B },
  153.     { "DarkGoldenRod", 0xB8860B },
  154.     { "DarkGray", 0xA9A9A9 },
  155.     { "DarkGrey", 0xA9A9A9 },
  156.     { "DarkGreen", 0x006400 },
  157.     { "DarkKhaki", 0xBDB76B },
  158.     { "DarkMagenta", 0x8B008B },
  159.     { "DarkOliveGreen", 0x556B2F },
  160.     { "Darkorange", 0xFF8C00 },
  161.     { "DarkOrchid", 0x9932CC },
  162.     { "DarkRed", 0x8B0000 },
  163.     { "DarkSalmon", 0xE9967A },
  164.     { "DarkSeaGreen", 0x8FBC8F },
  165.     { "DarkSlateBlue", 0x483D8B },
  166.     { "DarkSlateGray", 0x2F4F4F },
  167.     { "DarkSlateGrey", 0x2F4F4F },
  168.     { "DarkTurquoise", 0x00CED1 },
  169.     { "DarkViolet", 0x9400D3 },
  170.     { "DeepPink", 0xFF1493 },
  171.     { "DeepSkyBlue", 0x00BFFF },
  172.     { "DimGray", 0x696969 },
  173.     { "DimGrey", 0x696969 },
  174.     { "DodgerBlue", 0x1E90FF },
  175.     { "FireBrick", 0xB22222 },
  176.     { "FloralWhite", 0xFFFAF0 },
  177.     { "ForestGreen", 0x228B22 },
  178.     { "Fuchsia", 0xFF00FF },
  179.     { "Gainsboro", 0xDCDCDC },
  180.     { "GhostWhite", 0xF8F8FF },
  181.     { "Gold", 0xFFD700 },
  182.     { "GoldenRod", 0xDAA520 },
  183.     { "Gray", 0x808080 },
  184.     { "Grey", 0x808080 },
  185.     { "Green", 0x008000 },
  186.     { "GreenYellow", 0xADFF2F },
  187.     { "HoneyDew", 0xF0FFF0 },
  188.     { "HotPink", 0xFF69B4 },
  189.     { "IndianRed", 0xCD5C5C },
  190.     { "Indigo", 0x4B0082 },
  191.     { "Ivory", 0xFFFFF0 },
  192.     { "Khaki", 0xF0E68C },
  193.     { "Lavender", 0xE6E6FA },
  194.     { "LavenderBlush", 0xFFF0F5 },
  195.     { "LawnGreen", 0x7CFC00 },
  196.     { "LemonChiffon", 0xFFFACD },
  197.     { "LightBlue", 0xADD8E6 },
  198.     { "LightCoral", 0xF08080 },
  199.     { "LightCyan", 0xE0FFFF },
  200.     { "LightGoldenRodYellow", 0xFAFAD2 },
  201.     { "LightGray", 0xD3D3D3 },
  202.     { "LightGrey", 0xD3D3D3 },
  203.     { "LightGreen", 0x90EE90 },
  204.     { "LightPink", 0xFFB6C1 },
  205.     { "LightSalmon", 0xFFA07A },
  206.     { "LightSeaGreen", 0x20B2AA },
  207.     { "LightSkyBlue", 0x87CEFA },
  208.     { "LightSlateGray", 0x778899 },
  209.     { "LightSlateGrey", 0x778899 },
  210.     { "LightSteelBlue", 0xB0C4DE },
  211.     { "LightYellow", 0xFFFFE0 },
  212.     { "Lime", 0x00FF00 },
  213.     { "LimeGreen", 0x32CD32 },
  214.     { "Linen", 0xFAF0E6 },
  215.     { "Magenta", 0xFF00FF },
  216.     { "Maroon", 0x800000 },
  217.     { "MediumAquaMarine", 0x66CDAA },
  218.     { "MediumBlue", 0x0000CD },
  219.     { "MediumOrchid", 0xBA55D3 },
  220.     { "MediumPurple", 0x9370D8 },
  221.     { "MediumSeaGreen", 0x3CB371 },
  222.     { "MediumSlateBlue", 0x7B68EE },
  223.     { "MediumSpringGreen", 0x00FA9A },
  224.     { "MediumTurquoise", 0x48D1CC },
  225.     { "MediumVioletRed", 0xC71585 },
  226.     { "MidnightBlue", 0x191970 },
  227.     { "MintCream", 0xF5FFFA },
  228.     { "MistyRose", 0xFFE4E1 },
  229.     { "Moccasin", 0xFFE4B5 },
  230.     { "NavajoWhite", 0xFFDEAD },
  231.     { "Navy", 0x000080 },
  232.     { "OldLace", 0xFDF5E6 },
  233.     { "Olive", 0x808000 },
  234.     { "OliveDrab", 0x6B8E23 },
  235.     { "Orange", 0xFFA500 },
  236.     { "OrangeRed", 0xFF4500 },
  237.     { "Orchid", 0xDA70D6 },
  238.     { "PaleGoldenRod", 0xEEE8AA },
  239.     { "PaleGreen", 0x98FB98 },
  240.     { "PaleTurquoise", 0xAFEEEE },
  241.     { "PaleVioletRed", 0xD87093 },
  242.     { "PapayaWhip", 0xFFEFD5 },
  243.     { "PeachPuff", 0xFFDAB9 },
  244.     { "Peru", 0xCD853F },
  245.     { "Pink", 0xFFC0CB },
  246.     { "Plum", 0xDDA0DD },
  247.     { "PowderBlue", 0xB0E0E6 },
  248.     { "Purple", 0x800080 },
  249.     { "Red", 0xFF0000 },
  250.     { "RosyBrown", 0xBC8F8F },
  251.     { "RoyalBlue", 0x4169E1 },
  252.     { "SaddleBrown", 0x8B4513 },
  253.     { "Salmon", 0xFA8072 },
  254.     { "SandyBrown", 0xF4A460 },
  255.     { "SeaGreen", 0x2E8B57 },
  256.     { "SeaShell", 0xFFF5EE },
  257.     { "Sienna", 0xA0522D },
  258.     { "Silver", 0xC0C0C0 },
  259.     { "SkyBlue", 0x87CEEB },
  260.     { "SlateBlue", 0x6A5ACD },
  261.     { "SlateGray", 0x708090 },
  262.     { "SlateGrey", 0x708090 },
  263.     { "Snow", 0xFFFAFA },
  264.     { "SpringGreen", 0x00FF7F },
  265.     { "SteelBlue", 0x4682B4 },
  266.     { "Tan", 0xD2B48C },
  267.     { "Teal", 0x008080 },
  268.     { "Thistle", 0xD8BFD8 },
  269.     { "Tomato", 0xFF6347 },
  270.     { "Turquoise", 0x40E0D0 },
  271.     { "Violet", 0xEE82EE },
  272.     { "Wheat", 0xF5DEB3 },
  273.     { "White", 0xFFFFFF },
  274.     { "WhiteSmoke", 0xF5F5F5 },
  275.     { "Yellow", 0xFFFF00 },
  276.     { "YellowGreen", 0x9ACD32 },
  277.     { NULL, 0 }
  278. };
  279. static int HandleFontAttributes( xml_reader_t *p_xml_reader,
  280.                                   font_stack_t **p_fonts, int i_scale )
  281. {
  282.     int        rv;
  283.     char      *psz_fontname = NULL;
  284.     uint32_t   i_font_color = 0xffffff;
  285.     int        i_font_alpha = 0;
  286.     uint32_t   i_karaoke_bg_color = 0x00ffffff;
  287.     int        i_font_size  = 24;
  288.     /* Default all attributes to the top font in the stack -- in case not
  289.      * all attributes are specified in the sub-font
  290.      */
  291.     if( VLC_SUCCESS == PeekFont( p_fonts,
  292.                                  &psz_fontname,
  293.                                  &i_font_size,
  294.                                  &i_font_color,
  295.                                  &i_karaoke_bg_color ))
  296.     {
  297.         psz_fontname = strdup( psz_fontname );
  298.         i_font_size = i_font_size * 1000 / i_scale;
  299.     }
  300.     i_font_alpha = (i_font_color >> 24) & 0xff;
  301.     i_font_color &= 0x00ffffff;
  302.     while ( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
  303.     {
  304.         char *psz_name = xml_ReaderName( p_xml_reader );
  305.         char *psz_value = xml_ReaderValue( p_xml_reader );
  306.         if( psz_name && psz_value )
  307.         {
  308.             if( !strcasecmp( "face", psz_name ) )
  309.             {
  310.                 free( psz_fontname );
  311.                 psz_fontname = strdup( psz_value );
  312.             }
  313.             else if( !strcasecmp( "size", psz_name ) )
  314.             {
  315.                 if( ( *psz_value == '+' ) || ( *psz_value == '-' ) )
  316.                 {
  317.                     int i_value = atoi( psz_value );
  318.                     if( ( i_value >= -5 ) && ( i_value <= 5 ) )
  319.                         i_font_size += ( i_value * i_font_size ) / 10;
  320.                     else if( i_value < -5 )
  321.                         i_font_size = - i_value;
  322.                     else if( i_value > 5 )
  323.                         i_font_size = i_value;
  324.                 }
  325.                 else
  326.                     i_font_size = atoi( psz_value );
  327.             }
  328.             else if( !strcasecmp( "color", psz_name ) )
  329.             {
  330.                 if( psz_value[0] == '#' )
  331.                 {
  332.                     i_font_color = strtol( psz_value + 1, NULL, 16 );
  333.                     i_font_color &= 0x00ffffff;
  334.                 }
  335.                 else
  336.                 {
  337.                     for( int i = 0; p_html_colors[i].psz_name != NULL; i++ )
  338.                     {
  339.                         if( !strncasecmp( psz_value, p_html_colors[i].psz_name, strlen(p_html_colors[i].psz_name) ) )
  340.                         {
  341.                             i_font_color = p_html_colors[i].i_value;
  342.                             break;
  343.                         }
  344.                     }
  345.                 }
  346.             }
  347.             else if( !strcasecmp( "alpha", psz_name ) &&
  348.                      ( psz_value[0] == '#' ) )
  349.             {
  350.                 i_font_alpha = strtol( psz_value + 1, NULL, 16 );
  351.                 i_font_alpha &= 0xff;
  352.             }
  353.         }
  354.         free( psz_name );
  355.         free( psz_value );
  356.     }
  357.     rv = PushFont( p_fonts,
  358.                    psz_fontname,
  359.                    i_font_size * i_scale / 1000,
  360.                    (i_font_color & 0xffffff) | ((i_font_alpha & 0xff) << 24),
  361.                    i_karaoke_bg_color );
  362.     free( psz_fontname );
  363.     return rv;
  364. }
  365. static void SetKaraokeLen( uint32_t i_runs, uint32_t *pi_run_lengths,
  366.                            uint32_t i_k_runs, uint32_t *pi_k_run_lengths )
  367. {
  368.     /* Karaoke tags _PRECEDE_ the text they specify a duration
  369.      * for, therefore we are working out the length for the
  370.      * previous tag, and first time through we have nothing
  371.      */
  372.     if( pi_k_run_lengths )
  373.     {
  374.         int i_chars = 0;
  375.         uint32_t i;
  376.         /* Work out how many characters are presently in the string
  377.          */
  378.         for( i = 0; i < i_runs; i++ )
  379.             i_chars += pi_run_lengths[ i ];
  380.         /* Subtract away those we've already allocated to other
  381.          * karaoke tags
  382.          */
  383.         for( i = 0; i < i_k_runs; i++ )
  384.             i_chars -= pi_k_run_lengths[ i ];
  385.         pi_k_run_lengths[ i_k_runs - 1 ] = i_chars;
  386.     }
  387. }
  388. static void SetupKaraoke( xml_reader_t *p_xml_reader, uint32_t *pi_k_runs,
  389.                           uint32_t **ppi_k_run_lengths,
  390.                           uint32_t **ppi_k_durations )
  391. {
  392.     while ( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
  393.     {
  394.         char *psz_name = xml_ReaderName( p_xml_reader );
  395.         char *psz_value = xml_ReaderValue( p_xml_reader );
  396.         if( psz_name && psz_value &&
  397.             !strcasecmp( "t", psz_name ) )
  398.         {
  399.             if( ppi_k_durations && ppi_k_run_lengths )
  400.             {
  401.                 (*pi_k_runs)++;
  402.                 if( *ppi_k_durations )
  403.                 {
  404.                     *ppi_k_durations = (uint32_t *)
  405.                         realloc( *ppi_k_durations,
  406.                                  *pi_k_runs * sizeof( uint32_t ) );
  407.                 }
  408.                 else if( *pi_k_runs == 1 )
  409.                 {
  410.                     *ppi_k_durations = (uint32_t *)
  411.                         malloc( *pi_k_runs * sizeof( uint32_t ) );
  412.                 }
  413.                 if( *ppi_k_run_lengths )
  414.                 {
  415.                     *ppi_k_run_lengths = (uint32_t *)
  416.                         realloc( *ppi_k_run_lengths,
  417.                                  *pi_k_runs * sizeof( uint32_t ) );
  418.                 }
  419.                 else if( *pi_k_runs == 1 )
  420.                 {
  421.                     *ppi_k_run_lengths = (uint32_t *)
  422.                         malloc( *pi_k_runs * sizeof( uint32_t ) );
  423.                 }
  424.                 if( *ppi_k_durations )
  425.                     (*ppi_k_durations)[ *pi_k_runs - 1 ] = atoi( psz_value );
  426.                 if( *ppi_k_run_lengths )
  427.                     (*ppi_k_run_lengths)[ *pi_k_runs - 1 ] = 0;
  428.             }
  429.         }
  430.         free( psz_name );
  431.         free( psz_value );
  432.     }
  433. }
  434. /* Turn any multiple-whitespaces into single spaces */
  435. static void HandleWhiteSpace( char *psz_node )
  436. {
  437.     char *s = strpbrk( psz_node, "trn " );
  438.     while( s )
  439.     {
  440.         int i_whitespace = strspn( s, "trn " );
  441.         if( i_whitespace > 1 )
  442.             memmove( &s[1],
  443.                      &s[i_whitespace],
  444.                      strlen( s ) - i_whitespace + 1 );
  445.         *s++ = ' ';
  446.         s = strpbrk( s, "trn " );
  447.     }
  448. }
  449. /* */
  450. static int ProcessNodes( filter_t *p_filter,
  451.                          xml_reader_t *p_xml_reader,
  452.                          text_style_t *p_font_style,
  453.                          UCHAR *psz_text,
  454.                          int *pi_len,
  455.                          uint32_t *pi_runs,
  456.                          uint32_t **ppi_run_lengths,
  457.                          TR_FONT_STYLE_PTR **ppp_styles,
  458.                          bool b_karaoke,
  459.                          uint32_t *pi_k_runs,
  460.                          uint32_t **ppi_k_run_lengths,
  461.                          uint32_t **ppi_k_durations )
  462. {
  463.     int           rv             = VLC_SUCCESS;
  464.     filter_sys_t *p_sys          = p_filter->p_sys;
  465.     UCHAR        *psz_text_orig  = psz_text;
  466.     font_stack_t *p_fonts        = NULL;
  467.     vlc_value_t   val;
  468.     int           i_scale        = 1000;
  469.     char *psz_node  = NULL;
  470.     bool b_italic = false;
  471.     bool b_bold   = false;
  472.     bool b_uline  = false;
  473.     if( VLC_SUCCESS == var_Get( p_filter, "scale", &val ))
  474.         i_scale = val.i_int;
  475.     if( p_font_style )
  476.     {
  477.         rv = PushFont( &p_fonts,
  478.                p_font_style->psz_fontname,
  479.                p_font_style->i_font_size * i_scale / 1000,
  480.                (p_font_style->i_font_color & 0xffffff) |
  481.                    ((p_font_style->i_font_alpha & 0xff) << 24),
  482.                (p_font_style->i_karaoke_background_color & 0xffffff) |
  483.                    ((p_font_style->i_karaoke_background_alpha & 0xff) << 24));
  484.         if( p_font_style->i_style_flags & STYLE_BOLD )
  485.             b_bold = true;
  486.         if( p_font_style->i_style_flags & STYLE_ITALIC )
  487.             b_italic = true;
  488.         if( p_font_style->i_style_flags & STYLE_UNDERLINE )
  489.             b_uline = true;
  490.     }
  491.     else
  492.     {
  493.         rv = PushFont( &p_fonts,
  494.                        TR_DEFAULT_FONT,
  495.                        p_sys->i_font_size,
  496.                        (p_sys->i_font_color & 0xffffff) |
  497.                           (((255-p_sys->i_font_opacity) & 0xff) << 24),
  498.                        0x00ffffff );
  499.     }
  500.     if( rv != VLC_SUCCESS )
  501.         return rv;
  502.     while ( ( xml_ReaderRead( p_xml_reader ) == 1 ) )
  503.     {
  504.         switch ( xml_ReaderNodeType( p_xml_reader ) )
  505.         {
  506.             case XML_READER_NONE:
  507.                 break;
  508.             case XML_READER_ENDELEM:
  509.                 psz_node = xml_ReaderName( p_xml_reader );
  510.                 if( psz_node )
  511.                 {
  512.                     if( !strcasecmp( "font", psz_node ) )
  513.                         PopFont( &p_fonts );
  514.                     else if( !strcasecmp( "b", psz_node ) )
  515.                         b_bold   = false;
  516.                     else if( !strcasecmp( "i", psz_node ) )
  517.                         b_italic = false;
  518.                     else if( !strcasecmp( "u", psz_node ) )
  519.                         b_uline  = false;
  520.                     free( psz_node );
  521.                 }
  522.                 break;
  523.             case XML_READER_STARTELEM:
  524.                 psz_node = xml_ReaderName( p_xml_reader );
  525.                 if( psz_node )
  526.                 {
  527.                     if( !strcasecmp( "font", psz_node ) )
  528.                         rv = HandleFontAttributes( p_xml_reader, &p_fonts, i_scale );
  529.                     else if( !strcasecmp( "b", psz_node ) )
  530.                         b_bold = true;
  531.                     else if( !strcasecmp( "i", psz_node ) )
  532.                         b_italic = true;
  533.                     else if( !strcasecmp( "u", psz_node ) )
  534.                         b_uline = true;
  535.                     else if( !strcasecmp( "br", psz_node ) )
  536.                     {
  537.                         SetupLine( p_filter, "n", &psz_text,
  538.                                    pi_runs, ppi_run_lengths, ppp_styles,
  539.                                    GetStyleFromFontStack( p_sys,
  540.                                                           &p_fonts,
  541.                                                           b_bold,
  542.                                                           b_italic,
  543.                                                           b_uline ) );
  544.                     }
  545.                     else if( !strcasecmp( "k", psz_node ) )
  546.                     {
  547.                         /* Only valid in karaoke */
  548.                         if( b_karaoke )
  549.                         {
  550.                             if( *pi_k_runs > 0 )
  551.                             {
  552.                                 SetKaraokeLen( *pi_runs, *ppi_run_lengths,
  553.                                                *pi_k_runs, *ppi_k_run_lengths );
  554.                             }
  555.                             SetupKaraoke( p_xml_reader, pi_k_runs,
  556.                                           ppi_k_run_lengths, ppi_k_durations );
  557.                         }
  558.                     }
  559.                     free( psz_node );
  560.                 }
  561.                 break;
  562.             case XML_READER_TEXT:
  563.                 psz_node = xml_ReaderValue( p_xml_reader );
  564.                 if( psz_node )
  565.                 {
  566.                     /* */
  567.                     HandleWhiteSpace( psz_node );
  568.                     resolve_xml_special_chars( psz_node );
  569.                     SetupLine( p_filter, psz_node, &psz_text,
  570.                                pi_runs, ppi_run_lengths, ppp_styles,
  571.                                GetStyleFromFontStack( p_sys,
  572.                                                       &p_fonts,
  573.                                                       b_bold,
  574.                                                       b_italic,
  575.                                                       b_uline ) );
  576.                     free( psz_node );
  577.                 }
  578.                 break;
  579.         }
  580.         if( rv != VLC_SUCCESS )
  581.         {
  582.             psz_text = psz_text_orig;
  583.             break;
  584.         }
  585.     }
  586.     if( b_karaoke )
  587.     {
  588.         SetKaraokeLen( *pi_runs, *ppi_run_lengths,
  589.                        *pi_k_runs, *ppi_k_run_lengths );
  590.     }
  591.     *pi_len = psz_text - psz_text_orig;
  592.     while( VLC_SUCCESS == PopFont( &p_fonts ) );
  593.     return rv;
  594. }