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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * parse.c: SPU parser
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2001, 2005, 2006 the VideoLAN team
  5.  * $Id: b2ea3a177c1f18ae7365a7e3e377ebba60ccb689 $
  6.  *
  7.  * Authors: Sam Hocevar <sam@zoy.org>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  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_codec.h>
  34. #include <vlc_input.h>
  35. #include "spudec.h"
  36. /*****************************************************************************
  37.  * Local prototypes.
  38.  *****************************************************************************/
  39. typedef struct
  40. {
  41.     int i_width;
  42.     int i_height;
  43.     int i_x;
  44.     int i_y;
  45. } spu_properties_t;
  46. typedef struct
  47. {
  48.     int   pi_offset[2];                              /* byte offsets to data */
  49.     uint16_t *p_data;
  50.     /* Color information */
  51.     bool b_palette;
  52.     uint8_t    pi_alpha[4];
  53.     uint8_t    pi_yuv[4][3];
  54.     /* Auto crop fullscreen subtitles */
  55.     bool b_auto_crop;
  56.     int i_y_top_offset;
  57.     int i_y_bottom_offset;
  58. } subpicture_data_t;
  59. static int  ParseControlSeq( decoder_t *, subpicture_t *, subpicture_data_t *,
  60.                              spu_properties_t *, mtime_t i_pts );
  61. static int  ParseRLE       ( decoder_t *, subpicture_data_t *,
  62.                              const spu_properties_t * );
  63. static void Render         ( decoder_t *, subpicture_t *, subpicture_data_t *,
  64.                              const spu_properties_t * );
  65. /*****************************************************************************
  66.  * AddNibble: read a nibble from a source packet and add it to our integer.
  67.  *****************************************************************************/
  68. static inline unsigned int AddNibble( unsigned int i_code,
  69.                                       const uint8_t *p_src, unsigned int *pi_index )
  70. {
  71.     if( *pi_index & 0x1 )
  72.     {
  73.         return( i_code << 4 | ( p_src[(*pi_index)++ >> 1] & 0xf ) );
  74.     }
  75.     else
  76.     {
  77.         return( i_code << 4 | p_src[(*pi_index)++ >> 1] >> 4 );
  78.     }
  79. }
  80. /*****************************************************************************
  81.  * ParsePacket: parse an SPU packet and send it to the video output
  82.  *****************************************************************************
  83.  * This function parses the SPU packet and, if valid, sends it to the
  84.  * video output.
  85.  *****************************************************************************/
  86. subpicture_t * ParsePacket( decoder_t *p_dec )
  87. {
  88.     decoder_sys_t *p_sys = p_dec->p_sys;
  89.     subpicture_t *p_spu;
  90.     subpicture_data_t spu_data;
  91.     spu_properties_t spu_properties;
  92.     /* Allocate the subpicture internal data. */
  93.     p_spu = decoder_NewSubpicture( p_dec );
  94.     if( !p_spu ) return NULL;
  95.     p_spu->i_original_picture_width =
  96.         p_dec->fmt_in.subs.spu.i_original_frame_width;
  97.     p_spu->i_original_picture_height =
  98.         p_dec->fmt_in.subs.spu.i_original_frame_height;
  99.     /* Getting the control part */
  100.     if( ParseControlSeq( p_dec, p_spu, &spu_data, &spu_properties, p_sys->i_pts ) )
  101.     {
  102.         /* There was a parse error, delete the subpicture */
  103.         decoder_DeleteSubpicture( p_dec, p_spu );
  104.         return NULL;
  105.     }
  106.     /* we are going to expand the RLE stuff so that we won't need to read
  107.      * nibbles later on. This will speed things up a lot. Plus, we'll only
  108.      * need to do this stupid interlacing stuff once.
  109.      *
  110.      * Rationale for the "p_spudec->i_rle_size * 4*sizeof(*spu_data.p_data)":
  111.      *  one byte gaves two nibbles and may be used twice (once per field)
  112.      * generating 4 codes.
  113.      */
  114.     spu_data.p_data = malloc( sizeof(*spu_data.p_data) * 2 * 2 * p_sys->i_rle_size );
  115.     /* We try to display it */
  116.     if( ParseRLE( p_dec, &spu_data, &spu_properties ) )
  117.     {
  118.         /* There was a parse error, delete the subpicture */
  119.         decoder_DeleteSubpicture( p_dec, p_spu );
  120.         free( spu_data.p_data );
  121.         return NULL;
  122.     }
  123. #ifdef DEBUG_SPUDEC
  124.     msg_Dbg( p_dec, "total size: 0x%x, RLE offsets: 0x%x 0x%x",
  125.              p_sys->i_spu_size,
  126.              spu_data.pi_offset[0], spu_data.pi_offset[1] );
  127. #endif
  128.     Render( p_dec, p_spu, &spu_data, &spu_properties );
  129.     free( spu_data.p_data );
  130.     return p_spu;
  131. }
  132. /*****************************************************************************
  133.  * ParseControlSeq: parse all SPU control sequences
  134.  *****************************************************************************
  135.  * This is the most important part in SPU decoding. We get dates, palette
  136.  * information, coordinates, and so on. For more information on the
  137.  * subtitles format, see http://sam.zoy.org/doc/dvd/subtitles/index.html
  138.  *****************************************************************************/
  139. static int ParseControlSeq( decoder_t *p_dec, subpicture_t *p_spu,
  140.                             subpicture_data_t *p_spu_data, spu_properties_t *p_spu_properties, mtime_t i_pts )
  141. {
  142.     decoder_sys_t *p_sys = p_dec->p_sys;
  143.     /* Our current index in the SPU packet */
  144.     unsigned int i_index = p_sys->i_rle_size + 4;
  145.     /* The next start-of-control-sequence index and the previous one */
  146.     unsigned int i_next_seq = 0, i_cur_seq = 0;
  147.     /* Command and date */
  148.     uint8_t i_command = SPU_CMD_END;
  149.     mtime_t date = 0;
  150.     bool b_cmd_offset = false;
  151.     bool b_cmd_alpha = false;
  152.     subpicture_data_t spu_data_cmd;
  153.     if( !p_spu || !p_spu_data )
  154.         return VLC_EGENERIC;
  155.     /* Create working space for spu data */
  156.     memset( &spu_data_cmd, 0, sizeof(spu_data_cmd) );
  157.     spu_data_cmd.pi_offset[0] = -1;
  158.     spu_data_cmd.pi_offset[1] = -1;
  159.     spu_data_cmd.p_data = NULL;
  160.     spu_data_cmd.b_palette = false;
  161.     spu_data_cmd.b_auto_crop = false;
  162.     spu_data_cmd.i_y_top_offset = 0;
  163.     spu_data_cmd.i_y_bottom_offset = 0;
  164.     spu_data_cmd.pi_alpha[0] = 0x00;
  165.     spu_data_cmd.pi_alpha[1] = 0x0f;
  166.     spu_data_cmd.pi_alpha[2] = 0x0f;
  167.     spu_data_cmd.pi_alpha[3] = 0x0f;
  168.     /* Initialize the structure */
  169.     p_spu->i_start = p_spu->i_stop = 0;
  170.     p_spu->b_ephemer = false;
  171.     memset( p_spu_properties, 0, sizeof(*p_spu_properties) );
  172.     /* */
  173.     *p_spu_data = spu_data_cmd;
  174.     for( i_index = 4 + p_sys->i_rle_size; i_index < p_sys->i_spu_size ; )
  175.     {
  176.         /* If we just read a command sequence, read the next one;
  177.          * otherwise, go on with the commands of the current sequence. */
  178.         if( i_command == SPU_CMD_END )
  179.         {
  180.             if( i_index + 4 > p_sys->i_spu_size )
  181.             {
  182.                 msg_Err( p_dec, "overflow in SPU command sequence" );
  183.                 return VLC_EGENERIC;
  184.             }
  185.             /* */
  186.             b_cmd_offset = false;
  187.             b_cmd_alpha = false;
  188.             /* Get the control sequence date */
  189.             date = (mtime_t)GetWBE( &p_sys->buffer[i_index] ) * 11000;
  190.             /* Next offset */
  191.             i_cur_seq = i_index;
  192.             i_next_seq = GetWBE( &p_sys->buffer[i_index+2] );
  193.             if( i_next_seq > p_sys->i_spu_size )
  194.             {
  195.                 msg_Err( p_dec, "overflow in SPU next command sequence" );
  196.                 return VLC_EGENERIC;
  197.             }
  198.             /* Skip what we just read */
  199.             i_index += 4;
  200.         }
  201.         i_command = p_sys->buffer[i_index];
  202.         switch( i_command )
  203.         {
  204.         case SPU_CMD_FORCE_DISPLAY: /* 00 (force displaying) */
  205.             p_spu->i_start = i_pts + date;
  206.             p_spu->b_ephemer = true;
  207.             i_index += 1;
  208.             break;
  209.         /* Convert the dates in seconds to PTS values */
  210.         case SPU_CMD_START_DISPLAY: /* 01 (start displaying) */
  211.             p_spu->i_start = i_pts + date;
  212.             i_index += 1;
  213.             break;
  214.         case SPU_CMD_STOP_DISPLAY: /* 02 (stop displaying) */
  215.             p_spu->i_stop = i_pts + date;
  216.             i_index += 1;
  217.             break;
  218.         case SPU_CMD_SET_PALETTE:
  219.             /* 03xxxx (palette) */
  220.             if( i_index + 3 > p_sys->i_spu_size )
  221.             {
  222.                 msg_Err( p_dec, "overflow in SPU command" );
  223.                 return VLC_EGENERIC;
  224.             }
  225.             if( p_dec->fmt_in.subs.spu.palette[0] == 0xBeeF )
  226.             {
  227.                 unsigned int idx[4];
  228.                 int i;
  229.                 spu_data_cmd.b_palette = true;
  230.                 idx[0] = (p_sys->buffer[i_index+1]>>4)&0x0f;
  231.                 idx[1] = (p_sys->buffer[i_index+1])&0x0f;
  232.                 idx[2] = (p_sys->buffer[i_index+2]>>4)&0x0f;
  233.                 idx[3] = (p_sys->buffer[i_index+2])&0x0f;
  234.                 for( i = 0; i < 4 ; i++ )
  235.                 {
  236.                     uint32_t i_color = p_dec->fmt_in.subs.spu.palette[1+idx[i]];
  237.                     /* FIXME: this job should be done sooner */
  238.                     spu_data_cmd.pi_yuv[3-i][0] = (i_color>>16) & 0xff;
  239.                     spu_data_cmd.pi_yuv[3-i][1] = (i_color>>0) & 0xff;
  240.                     spu_data_cmd.pi_yuv[3-i][2] = (i_color>>8) & 0xff;
  241.                 }
  242.             }
  243.             i_index += 3;
  244.             break;
  245.         case SPU_CMD_SET_ALPHACHANNEL: /* 04xxxx (alpha channel) */
  246.             if( i_index + 3 > p_sys->i_spu_size )
  247.             {
  248.                 msg_Err( p_dec, "overflow in SPU command" );
  249.                 return VLC_EGENERIC;
  250.             }
  251.             b_cmd_alpha = true;
  252.             spu_data_cmd.pi_alpha[3] = (p_sys->buffer[i_index+1]>>4)&0x0f;
  253.             spu_data_cmd.pi_alpha[2] = (p_sys->buffer[i_index+1])&0x0f;
  254.             spu_data_cmd.pi_alpha[1] = (p_sys->buffer[i_index+2]>>4)&0x0f;
  255.             spu_data_cmd.pi_alpha[0] = (p_sys->buffer[i_index+2])&0x0f;
  256.             i_index += 3;
  257.             break;
  258.         case SPU_CMD_SET_COORDINATES: /* 05xxxyyyxxxyyy (coordinates) */
  259.             if( i_index + 7 > p_sys->i_spu_size )
  260.             {
  261.                 msg_Err( p_dec, "overflow in SPU command" );
  262.                 return VLC_EGENERIC;
  263.             }
  264.             p_spu_properties->i_x = (p_sys->buffer[i_index+1]<<4)|
  265.                          ((p_sys->buffer[i_index+2]>>4)&0x0f);
  266.             p_spu_properties->i_width = (((p_sys->buffer[i_index+2]&0x0f)<<8)|
  267.                               p_sys->buffer[i_index+3]) - p_spu_properties->i_x + 1;
  268.             p_spu_properties->i_y = (p_sys->buffer[i_index+4]<<4)|
  269.                          ((p_sys->buffer[i_index+5]>>4)&0x0f);
  270.             p_spu_properties->i_height = (((p_sys->buffer[i_index+5]&0x0f)<<8)|
  271.                               p_sys->buffer[i_index+6]) - p_spu_properties->i_y + 1;
  272.             /* Auto crop fullscreen subtitles */
  273.             if( p_spu_properties->i_height > 250 )
  274.                 p_spu_data->b_auto_crop = true;
  275.             i_index += 7;
  276.             break;
  277.         case SPU_CMD_SET_OFFSETS: /* 06xxxxyyyy (byte offsets) */
  278.             if( i_index + 5 > p_sys->i_spu_size )
  279.             {
  280.                 msg_Err( p_dec, "overflow in SPU command" );
  281.                 return VLC_EGENERIC;
  282.             }
  283.             b_cmd_offset = true;
  284.             p_spu_data->pi_offset[0] = GetWBE(&p_sys->buffer[i_index+1]) - 4;
  285.             p_spu_data->pi_offset[1] = GetWBE(&p_sys->buffer[i_index+3]) - 4;
  286.             i_index += 5;
  287.             break;
  288.         case SPU_CMD_END: /* ff (end) */
  289.             if( b_cmd_offset )
  290.             {
  291.                 /* It seems that palette and alpha from the block having
  292.                  * the cmd offset have to be used
  293.                  * XXX is it all ? */
  294.                 p_spu_data->b_palette = spu_data_cmd.b_palette;
  295.                 if( spu_data_cmd.b_palette )
  296.                     memcpy( p_spu_data->pi_yuv, spu_data_cmd.pi_yuv, sizeof(spu_data_cmd.pi_yuv) );
  297.                 if( b_cmd_alpha )
  298.                     memcpy( p_spu_data->pi_alpha, spu_data_cmd.pi_alpha, sizeof(spu_data_cmd.pi_alpha) );
  299.             }
  300.             i_index += 1;
  301.             break;
  302.         default: /* xx (unknown command) */
  303.             msg_Warn( p_dec, "unknown SPU command 0x%.2x", i_command );
  304.             if( i_index + 1 < i_next_seq )
  305.             {
  306.                  /* There is at least one other command sequence */
  307.                  if( p_sys->buffer[i_next_seq - 1] == SPU_CMD_END )
  308.                  {
  309.                      /* This is consistent. Skip to that command sequence. */
  310.                      i_index = i_next_seq;
  311.                  }
  312.                  else
  313.                  {
  314.                      /* There were other commands. */
  315.                      msg_Warn( p_dec, "cannot recover, dropping subtitle" );
  316.                      return VLC_EGENERIC;
  317.                  }
  318.             }
  319.             else
  320.             {
  321.                 /* We were in the last command sequence. Stop parsing by
  322.                  * pretending we met an SPU_CMD_END command. */
  323.                 i_command = SPU_CMD_END;
  324.                 i_index++;
  325.             }
  326.         }
  327.         /* */
  328.         if( i_command == SPU_CMD_END && i_index != i_next_seq )
  329.             break;
  330.     }
  331.     /* Check that the next sequence index matches the current one */
  332.     if( i_next_seq != i_cur_seq )
  333.     {
  334.         msg_Err( p_dec, "index mismatch (0x%.4x != 0x%.4x)",
  335.                  i_next_seq, i_cur_seq );
  336.         return VLC_EGENERIC;
  337.     }
  338.     if( i_index > p_sys->i_spu_size )
  339.     {
  340.         msg_Err( p_dec, "uh-oh, we went too far (0x%.4x > 0x%.4x)",
  341.                  i_index, p_sys->i_spu_size );
  342.         return VLC_EGENERIC;
  343.     }
  344.     const int i_spu_size = p_sys->i_spu - 4;
  345.     if( p_spu_data->pi_offset[0] < 0 || p_spu_data->pi_offset[0] >= i_spu_size ||
  346.         p_spu_data->pi_offset[1] < 0 || p_spu_data->pi_offset[1] >= i_spu_size )
  347.     {
  348.         msg_Err( p_dec, "invalid offset values" );
  349.         return VLC_EGENERIC;
  350.     }
  351.     if( !p_spu->i_start )
  352.     {
  353.         msg_Err( p_dec, "no `start display' command" );
  354.         return VLC_EGENERIC;
  355.     }
  356.     if( p_spu->i_stop <= p_spu->i_start && !p_spu->b_ephemer )
  357.     {
  358.         /* This subtitle will live for 5 seconds or until the next subtitle */
  359.         p_spu->i_stop = p_spu->i_start + (mtime_t)500 * 11000;
  360.         p_spu->b_ephemer = true;
  361.     }
  362.     /* Get rid of padding bytes */
  363.     if( p_sys->i_spu_size > i_index + 1 )
  364.     {
  365.         /* Zero or one padding byte are quite usual
  366.          * More than one padding byte - this is very strange, but
  367.          * we can ignore them. */
  368.         msg_Warn( p_dec, "%i padding bytes, we usually get 0 or 1 of them",
  369.                   p_sys->i_spu_size - i_index );
  370.     }
  371.     /* Successfully parsed ! */
  372.     return VLC_SUCCESS;
  373. }
  374. /*****************************************************************************
  375.  * ParseRLE: parse the RLE part of the subtitle
  376.  *****************************************************************************
  377.  * This part parses the subtitle graphical data and stores it in a more
  378.  * convenient structure for later decoding. For more information on the
  379.  * subtitles format, see http://sam.zoy.org/doc/dvd/subtitles/index.html
  380.  *****************************************************************************/
  381. static int ParseRLE( decoder_t *p_dec,
  382.                      subpicture_data_t *p_spu_data,
  383.                      const spu_properties_t *p_spu_properties )
  384. {
  385.     decoder_sys_t *p_sys = p_dec->p_sys;
  386.     const unsigned int i_width = p_spu_properties->i_width;
  387.     const unsigned int i_height = p_spu_properties->i_height;
  388.     unsigned int i_x, i_y;
  389.     uint16_t *p_dest = p_spu_data->p_data;
  390.     /* The subtitles are interlaced, we need two offsets */
  391.     unsigned int  i_id = 0;                   /* Start on the even SPU layer */
  392.     unsigned int  pi_table[ 2 ];
  393.     unsigned int *pi_offset;
  394.     /* Cropping */
  395.     bool b_empty_top = true;
  396.     unsigned int i_skipped_top = 0, i_skipped_bottom = 0;
  397.     unsigned int i_transparent_code = 0;
  398.  
  399.     /* Colormap statistics */
  400.     int i_border = -1;
  401.     int stats[4]; stats[0] = stats[1] = stats[2] = stats[3] = 0;
  402.     pi_table[ 0 ] = p_spu_data->pi_offset[ 0 ] << 1;
  403.     pi_table[ 1 ] = p_spu_data->pi_offset[ 1 ] << 1;
  404.     for( i_y = 0 ; i_y < i_height ; i_y++ )
  405.     {
  406.         unsigned int i_code;
  407.         pi_offset = pi_table + i_id;
  408.         for( i_x = 0 ; i_x < i_width ; i_x += i_code >> 2 )
  409.         {
  410.             i_code = 0;
  411.             for( unsigned int i_min = 1; i_min <= 0x40 && i_code < i_min; i_min <<= 2 )
  412.             {
  413.                 if( (*pi_offset >> 1) >= p_sys->i_spu_size )
  414.                 {
  415.                     msg_Err( p_dec, "out of bounds while reading rle" );
  416.                     return VLC_EGENERIC;
  417.                 }
  418.                 i_code = AddNibble( i_code, &p_sys->buffer[4], pi_offset );
  419.             }
  420.             if( i_code < 0x0004 )
  421.             {
  422.                 /* If the 14 first bits are set to 0, then it's a
  423.                  * new line. We emulate it. */
  424.                 i_code |= ( i_width - i_x ) << 2;
  425.             }
  426.             if( ( (i_code >> 2) + i_x + i_y * i_width ) > i_height * i_width )
  427.             {
  428.                 msg_Err( p_dec, "out of bounds, %i at (%i,%i) is out of %ix%i",
  429.                          i_code >> 2, i_x, i_y, i_width, i_height );
  430.                 return VLC_EGENERIC;
  431.             }
  432.             /* Try to find the border color */
  433.             if( p_spu_data->pi_alpha[ i_code & 0x3 ] != 0x00 )
  434.             {
  435.                 i_border = i_code & 0x3;
  436.                 stats[i_border] += i_code >> 2;
  437.             }
  438.             /* Auto crop subtitles (a lot more optimized) */
  439.             if( p_spu_data->b_auto_crop )
  440.             {
  441.                 if( !i_y )
  442.                 {
  443.                     /* We assume that if the first line is transparent, then
  444.                      * it is using the palette index for the
  445.                      * (background) transparent color */
  446.                     if( (i_code >> 2) == i_width &&
  447.                         p_spu_data->pi_alpha[ i_code & 0x3 ] == 0x00 )
  448.                     {
  449.                         i_transparent_code = i_code;
  450.                     }
  451.                     else
  452.                     {
  453.                         p_spu_data->b_auto_crop = false;
  454.                     }
  455.                 }
  456.                 if( i_code == i_transparent_code )
  457.                 {
  458.                     if( b_empty_top )
  459.                     {
  460.                         /* This is a blank top line, we skip it */
  461.                       i_skipped_top++;
  462.                     }
  463.                     else
  464.                     {
  465.                         /* We can't be sure the current lines will be skipped,
  466.                          * so we store the code just in case. */
  467.                       *p_dest++ = i_code;
  468.                       i_skipped_bottom++;
  469.                     }
  470.                 }
  471.                 else
  472.                 {
  473.                     /* We got a valid code, store it */
  474.                     *p_dest++ = i_code;
  475.                     /* Valid code means no blank line */
  476.                     b_empty_top = false;
  477.                     i_skipped_bottom = 0;
  478.                 }
  479.             }
  480.             else
  481.             {
  482.                 *p_dest++ = i_code;
  483.             }
  484.         }
  485.         /* Check that we didn't go too far */
  486.         if( i_x > i_width )
  487.         {
  488.             msg_Err( p_dec, "i_x overflowed, %i > %i", i_x, i_width );
  489.             return VLC_EGENERIC;
  490.         }
  491.         /* Byte-align the stream */
  492.         if( *pi_offset & 0x1 )
  493.         {
  494.             (*pi_offset)++;
  495.         }
  496.         /* Swap fields */
  497.         i_id = ~i_id & 0x1;
  498.     }
  499.     /* We shouldn't get any padding bytes */
  500.     if( i_y < i_height )
  501.     {
  502.         msg_Err( p_dec, "padding bytes found in RLE sequence" );
  503.         msg_Err( p_dec, "send mail to <sam@zoy.org> if you "
  504.                         "want to help debugging this" );
  505.         /* Skip them just in case */
  506.         while( i_y < i_height )
  507.         {
  508.             *p_dest++ = i_width << 2;
  509.             i_y++;
  510.         }
  511.         return VLC_EGENERIC;
  512.     }
  513. #ifdef DEBUG_SPUDEC
  514.     msg_Dbg( p_dec, "valid subtitle, size: %ix%i, position: %i,%i",
  515.              p_spu->i_width, p_spu->i_height, p_spu->i_x, p_spu->i_y );
  516. #endif
  517.     /* Crop if necessary */
  518.     if( i_skipped_top || i_skipped_bottom )
  519.     {
  520. #ifdef DEBUG_SPUDEC
  521.         int i_y = p_spu->i_y + i_skipped_top;
  522.         int i_height = p_spu->i_height - (i_skipped_top + i_skipped_bottom);
  523. #endif
  524.         p_spu_data->i_y_top_offset = i_skipped_top;
  525.         p_spu_data->i_y_bottom_offset = i_skipped_bottom;
  526. #ifdef DEBUG_SPUDEC
  527.         msg_Dbg( p_dec, "cropped to: %ix%i, position: %i,%i",
  528.                  p_spu->i_width, i_height, p_spu->i_x, i_y );
  529. #endif
  530.     }
  531.  
  532.     /* Handle color if no palette was found */
  533.     if( !p_spu_data->b_palette )
  534.     {
  535.         int i, i_inner = -1, i_shade = -1;
  536.         /* Set the border color */
  537.         p_spu_data->pi_yuv[i_border][0] = 0x00;
  538.         p_spu_data->pi_yuv[i_border][1] = 0x80;
  539.         p_spu_data->pi_yuv[i_border][2] = 0x80;
  540.         stats[i_border] = 0;
  541.         /* Find the inner colors */
  542.         for( i = 0 ; i < 4 && i_inner == -1 ; i++ )
  543.         {
  544.             if( stats[i] )
  545.             {
  546.                 i_inner = i;
  547.             }
  548.         }
  549.         for(       ; i < 4 && i_shade == -1 ; i++ )
  550.         {
  551.             if( stats[i] )
  552.             {
  553.                 if( stats[i] > stats[i_inner] )
  554.                 {
  555.                     i_shade = i_inner;
  556.                     i_inner = i;
  557.                 }
  558.                 else
  559.                 {
  560.                     i_shade = i;
  561.                 }
  562.             }
  563.         }
  564.         /* Set the inner color */
  565.         if( i_inner != -1 )
  566.         {
  567.             p_spu_data->pi_yuv[i_inner][0] = 0xff;
  568.             p_spu_data->pi_yuv[i_inner][1] = 0x80;
  569.             p_spu_data->pi_yuv[i_inner][2] = 0x80;
  570.         }
  571.         /* Set the anti-aliasing color */
  572.         if( i_shade != -1 )
  573.         {
  574.             p_spu_data->pi_yuv[i_shade][0] = 0x80;
  575.             p_spu_data->pi_yuv[i_shade][1] = 0x80;
  576.             p_spu_data->pi_yuv[i_shade][2] = 0x80;
  577.         }
  578. #ifdef DEBUG_SPUDEC
  579.         msg_Dbg( p_dec, "using custom palette (border %i, inner %i, shade %i)",
  580.                  i_border, i_inner, i_shade );
  581. #endif
  582.     }
  583.     return VLC_SUCCESS;
  584. }
  585. static void Render( decoder_t *p_dec, subpicture_t *p_spu,
  586.                     subpicture_data_t *p_spu_data,
  587.                     const spu_properties_t *p_spu_properties )
  588. {
  589.     uint8_t *p_p;
  590.     int i_x, i_y, i_len, i_color, i_pitch;
  591.     const uint16_t *p_source = p_spu_data->p_data;
  592.     video_format_t fmt;
  593.     video_palette_t palette;
  594.     /* Create a new subpicture region */
  595.     memset( &fmt, 0, sizeof(video_format_t) );
  596.     fmt.i_chroma = VLC_FOURCC('Y','U','V','P');
  597.     fmt.i_aspect = 0; /* 0 means use aspect ratio of background video */
  598.     fmt.i_width = fmt.i_visible_width = p_spu_properties->i_width;
  599.     fmt.i_height = fmt.i_visible_height = p_spu_properties->i_height -
  600.         p_spu_data->i_y_top_offset - p_spu_data->i_y_bottom_offset;
  601.     fmt.i_x_offset = fmt.i_y_offset = 0;
  602.     fmt.p_palette = &palette;
  603.     fmt.p_palette->i_entries = 4;
  604.     for( i_x = 0; i_x < fmt.p_palette->i_entries; i_x++ )
  605.     {
  606.         fmt.p_palette->palette[i_x][0] = p_spu_data->pi_yuv[i_x][0];
  607.         fmt.p_palette->palette[i_x][1] = p_spu_data->pi_yuv[i_x][1];
  608.         fmt.p_palette->palette[i_x][2] = p_spu_data->pi_yuv[i_x][2];
  609.         fmt.p_palette->palette[i_x][3] =
  610.             p_spu_data->pi_alpha[i_x] == 0xf ? 0xff :
  611.             p_spu_data->pi_alpha[i_x] << 4;
  612.     }
  613.     p_spu->p_region = subpicture_region_New( &fmt );
  614.     if( !p_spu->p_region )
  615.     {
  616.         msg_Err( p_dec, "cannot allocate SPU region" );
  617.         return;
  618.     }
  619.     p_spu->p_region->i_x = p_spu_properties->i_x;
  620.     p_spu->p_region->i_y = p_spu_properties->i_y + p_spu_data->i_y_top_offset;
  621.     p_p = p_spu->p_region->p_picture->p->p_pixels;
  622.     i_pitch = p_spu->p_region->p_picture->p->i_pitch;
  623.     /* Draw until we reach the bottom of the subtitle */
  624.     for( i_y = 0; i_y < (int)fmt.i_height * i_pitch; i_y += i_pitch )
  625.     {
  626.         /* Draw until we reach the end of the line */
  627.         for( i_x = 0 ; i_x < (int)fmt.i_width; i_x += i_len )
  628.         {
  629.             /* Get the RLE part, then draw the line */
  630.             i_color = *p_source & 0x3;
  631.             i_len = *p_source++ >> 2;
  632.             memset( p_p + i_x + i_y, i_color, i_len );
  633.         }
  634.     }
  635. }