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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cvd.c : CVD Subtitle decoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2003, 2004 the VideoLAN team
  5.  * $Id: dbd59164dc718ef19ce7bc339ed0386a40b5ebb4 $
  6.  *
  7.  * Authors: Rocky Bernstein
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *          Julio Sanchez Fernandez (http://subhandler.sourceforge.net)
  10.  *          Laurent Aimar <fenrir@via.ecp.fr>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_common.h>
  33. #include <vlc_plugin.h>
  34. #include <vlc_vout.h>
  35. #include <vlc_codec.h>
  36. #include "vlc_bits.h"
  37. #define DEBUG_CVDSUB 1
  38. /*****************************************************************************
  39.  * Module descriptor.
  40.  *****************************************************************************/
  41. static int  DecoderOpen   ( vlc_object_t * );
  42. static int  PacketizerOpen( vlc_object_t * );
  43. static void DecoderClose  ( vlc_object_t * );
  44. vlc_module_begin ()
  45.     set_description( N_("CVD subtitle decoder") )
  46.     set_capability( "decoder", 50 )
  47.     set_callbacks( DecoderOpen, DecoderClose )
  48.     add_submodule ()
  49.     set_description( N_("Chaoji VCD subtitle packetizer") )
  50.     set_capability( "packetizer", 50 )
  51.     set_callbacks( PacketizerOpen, DecoderClose )
  52. vlc_module_end ()
  53. /*****************************************************************************
  54.  * Local prototypes
  55.  *****************************************************************************/
  56. static subpicture_t *Decode( decoder_t *, block_t ** );
  57. static block_t *Packetize  ( decoder_t *, block_t ** );
  58. static block_t *Reassemble ( decoder_t *, block_t * );
  59. static void ParseMetaInfo  ( decoder_t *, block_t * );
  60. static void ParseHeader    ( decoder_t *, block_t * );
  61. static subpicture_t *DecodePacket( decoder_t *, block_t * );
  62. static void RenderImage( decoder_t *, block_t *, subpicture_region_t * );
  63. #define SUBTITLE_BLOCK_EMPTY 0
  64. #define SUBTITLE_BLOCK_PARTIAL 1
  65. #define SUBTITLE_BLOCK_COMPLETE 2
  66. struct decoder_sys_t
  67. {
  68.   int      b_packetizer;
  69.   int      i_state;    /* data-gathering state for this subtitle */
  70.   block_t  *p_spu;   /* Bytes of the packet. */
  71.   size_t   i_spu_size;     /* goal for subtitle_data_pos while gathering,
  72.                              size of used subtitle_data later */
  73.   uint16_t i_image_offset;      /* offset from subtitle_data to compressed
  74.                                    image data */
  75.   size_t i_image_length;           /* size of the compressed image data */
  76.   size_t first_field_offset;       /* offset of even raster lines */
  77.   size_t second_field_offset;      /* offset of odd raster lines */
  78.   size_t metadata_offset;          /* offset to data describing the image */
  79.   size_t metadata_length;          /* length of metadata */
  80.   mtime_t i_duration;   /* how long to display the image, 0 stands
  81.                            for "until next subtitle" */
  82.   uint16_t i_x_start, i_y_start; /* position of top leftmost pixel of
  83.                                     image when displayed */
  84.   uint16_t i_width, i_height;    /* dimensions in pixels of image */
  85.   uint8_t p_palette[4][4];       /* Palette of colors used in subtitle */
  86.   uint8_t p_palette_highlight[4][4];
  87. };
  88. /*****************************************************************************
  89.  * DecoderOpen: open/initialize the cvdsub decoder.
  90.  *****************************************************************************/
  91. static int DecoderOpen( vlc_object_t *p_this )
  92. {
  93.     decoder_t     *p_dec = (decoder_t*)p_this;
  94.     decoder_sys_t *p_sys;
  95.     if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'c','v','d',' ' ) )
  96.     {
  97.         return VLC_EGENERIC;
  98.     }
  99.     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
  100.     if( !p_sys )
  101.         return VLC_ENOMEM;
  102.     p_sys->b_packetizer  = false;
  103.     p_sys->i_state = SUBTITLE_BLOCK_EMPTY;
  104.     p_sys->p_spu   = NULL;
  105.     p_dec->pf_decode_sub = Decode;
  106.     p_dec->pf_packetize  = Packetize;
  107.     p_dec->fmt_out.i_cat = SPU_ES;
  108.     p_dec->fmt_out.i_codec = VLC_FOURCC('Y','U','V','P');
  109.     return VLC_SUCCESS;
  110. }
  111. /*****************************************************************************
  112.  * PacketizerOpen: open/initialize the cvdsub packetizer.
  113.  *****************************************************************************/
  114. static int PacketizerOpen( vlc_object_t *p_this )
  115. {
  116.     decoder_t *p_dec = (decoder_t*)p_this;
  117.     if( DecoderOpen( p_this ) != VLC_SUCCESS ) return VLC_EGENERIC;
  118.     p_dec->p_sys->b_packetizer = true;
  119.     return VLC_SUCCESS;
  120. }
  121. /*****************************************************************************
  122.  * DecoderClose: closes the cvdsub decoder/packetizer.
  123.  *****************************************************************************/
  124. void DecoderClose( vlc_object_t *p_this )
  125. {
  126.     decoder_t     *p_dec = (decoder_t*)p_this;
  127.     decoder_sys_t *p_sys = p_dec->p_sys;
  128.     if( p_sys->p_spu ) block_ChainRelease( p_sys->p_spu );
  129.     free( p_sys );
  130. }
  131. /*****************************************************************************
  132.  * Decode:
  133.  *****************************************************************************/
  134. static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
  135. {
  136.     block_t *p_block, *p_spu;
  137.     if( pp_block == NULL || *pp_block == NULL ) return NULL;
  138.     p_block = *pp_block;
  139.     *pp_block = NULL;
  140.     if( !(p_spu = Reassemble( p_dec, p_block )) ) return NULL;
  141.     /* Parse and decode */
  142.     return DecodePacket( p_dec, p_spu );
  143. }
  144. /*****************************************************************************
  145.  * Packetize:
  146.  *****************************************************************************/
  147. static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
  148. {
  149.     block_t *p_block, *p_spu;
  150.     if( pp_block == NULL || *pp_block == NULL ) return NULL;
  151.     p_block = *pp_block;
  152.     *pp_block = NULL;
  153.     if( !(p_spu = Reassemble( p_dec, p_block )) ) return NULL;
  154.     p_spu->i_dts = p_spu->i_pts;
  155.     p_spu->i_length = 0;
  156.     return p_spu;
  157. }
  158. /*****************************************************************************
  159.  Reassemble:
  160.  Data for single screen subtitle may come in several non-contiguous
  161.  packets of a stream. This routine is called when the next packet in
  162.  the stream comes in. The job of this routine is to parse the header,
  163.  if this is the beginning, and combine the packets into one complete
  164.  subtitle unit.
  165.  If everything is complete, we will return a block. Otherwise return
  166.  NULL.
  167.  *****************************************************************************/
  168. #define SPU_HEADER_LEN 1
  169. static block_t *Reassemble( decoder_t *p_dec, block_t *p_block )
  170. {
  171.     decoder_sys_t *p_sys = p_dec->p_sys;
  172.     uint8_t *p_buffer;
  173.     if( p_block->i_buffer < SPU_HEADER_LEN )
  174.     {
  175.         msg_Dbg( p_dec, "invalid packet header (size %zu < %u)" ,
  176.                  p_block->i_buffer, SPU_HEADER_LEN );
  177.         block_Release( p_block );
  178.         return NULL;
  179.     }
  180.     p_buffer = p_block->p_buffer;
  181.     /* From the scant data on the format, there is only only way known
  182.      * to detect the first packet in a subtitle.  The first packet
  183.      * seems to have a valid PTS while later packets for the same
  184.      * image don't. */
  185.     if( p_sys->i_state == SUBTITLE_BLOCK_EMPTY && p_block->i_pts == 0 )
  186.     {
  187.         msg_Warn( p_dec, "first packet expected but no PTS present");
  188.         return NULL;
  189.     }
  190.     p_block->p_buffer += SPU_HEADER_LEN;
  191.     p_block->i_buffer -= SPU_HEADER_LEN;
  192.     /* First packet in the subtitle block */
  193.     if( p_sys->i_state == SUBTITLE_BLOCK_EMPTY ) ParseHeader( p_dec, p_block );
  194.     block_ChainAppend( &p_sys->p_spu, p_block );
  195.     p_sys->p_spu = block_ChainGather( p_sys->p_spu );
  196.     if( p_sys->p_spu->i_buffer >= p_sys->i_spu_size )
  197.     {
  198.         block_t *p_spu = p_sys->p_spu;
  199.         if( p_spu->i_buffer != p_sys->i_spu_size )
  200.         {
  201.             msg_Warn( p_dec, "SPU packets size=%zu should be %zu",
  202.                       p_spu->i_buffer, p_sys->i_spu_size );
  203.         }
  204.         msg_Dbg( p_dec, "subtitle packet complete, size=%zuu", p_spu->i_buffer);
  205.         ParseMetaInfo( p_dec, p_spu );
  206.         p_sys->i_state = SUBTITLE_BLOCK_EMPTY;
  207.         p_sys->p_spu = 0;
  208.         return p_spu;
  209.     }
  210.     else
  211.     {
  212.         /* Not last block in subtitle, so wait for another. */
  213.         p_sys->i_state = SUBTITLE_BLOCK_PARTIAL;
  214.     }
  215.     return NULL;
  216. }
  217. /*
  218.   We do not have information on the subtitle format used on CVD's
  219.   except the submux sample code and a couple of samples of dubious
  220.   origin. Thus, this is the result of reading some code whose
  221.   correctness is not known and some experimentation.
  222.   CVD subtitles are different in several ways from SVCD OGT subtitles.
  223.   Image comes first and metadata is at the end.  So that the metadata
  224.   can be found easily, the subtitle packet starts with two bytes
  225.   (everything is big-endian again) that give the total size of the
  226.   subtitle data and the offset to the metadata - i.e. size of the
  227.   image data plus the four bytes at the beginning.
  228.   Image data comes interlaced is run-length encoded.  Each field is a
  229.   four-bit nibble. Each nibble contains a two-bit repeat count and a
  230.   two-bit color number so that up to three pixels can be described in
  231.   four bits.  The function of a 0 repeat count is unknown; it might be
  232.   used for RLE extension.  However when the full nibble is zero, the
  233.   rest of the line is filled with the color value in the next nibble.
  234.   It is unknown what happens if the color value is greater than three.
  235.   The rest seems to use a 4-entries palette.  It is not impossible
  236.   that the fill-line complete case above is not as described and the
  237.   zero repeat count means fill line.  The sample code never produces
  238.   this, so it may be untested.
  239. */
  240. static void ParseHeader( decoder_t *p_dec, block_t *p_block )
  241. {
  242.     decoder_sys_t *p_sys = p_dec->p_sys;
  243.     uint8_t *p = p_block->p_buffer;
  244.     p_sys->i_spu_size = (p[0] << 8) + p[1] + 4; p += 2;
  245.     /* FIXME: check data sanity */
  246.     p_sys->metadata_offset = (p[0] <<  8) +   p[1]; p +=2;
  247.     p_sys->metadata_length = p_sys->i_spu_size - p_sys->metadata_offset;
  248.     p_sys->i_image_offset = 4;
  249.     p_sys->i_image_length = p_sys->metadata_offset - p_sys->i_image_offset;
  250. #ifdef DEBUG_CVDSUB
  251.     msg_Dbg( p_dec, "total size: %zu  image size: %zu",
  252.              p_sys->i_spu_size, p_sys->i_image_length );
  253. #endif
  254. }
  255. /*
  256.   We parse the metadata information here.
  257.   Although metadata information does not have to come in a fixed field
  258.   order, every metadata field consists of a tag byte followed by
  259.   parameters. In all cases known, the size including tag byte is
  260.   exactly four bytes in length.
  261. */
  262. #define ExtractXY(x, y) x = ((p[1]&0x0f)<<6) + (p[2]>>2); 
  263.                         y = ((p[2]&0x03)<<8) + p[3];
  264. static void ParseMetaInfo( decoder_t *p_dec, block_t *p_spu  )
  265. {
  266.     /* Last packet in subtitle block. */
  267.     decoder_sys_t *p_sys = p_dec->p_sys;
  268.     uint8_t       *p     = p_spu->p_buffer + p_sys->metadata_offset;
  269.     uint8_t       *p_end = p + p_sys->metadata_length;
  270.     for( ; p < p_end; p += 4 )
  271.     {
  272.         switch( p[0] )
  273.         {
  274.         case 0x04: /* subtitle duration in 1/90000ths of a second */
  275.             p_sys->i_duration = (p[1]<<16) + (p[2]<<8) + p[3];
  276. #ifdef DEBUG_CVDSUB
  277.             msg_Dbg( p_dec, "subtitle display duration %lu secs",
  278.                      (long unsigned int)(p_sys->i_duration / 90000) );
  279. #endif
  280.             p_sys->i_duration *= 100 / 9;
  281.             break;
  282.         case 0x0c: /* unknown */
  283. #ifdef DEBUG_CVDSUB
  284.             msg_Dbg( p_dec, "subtitle command unknown 0x%0x 0x%0x 0x%0x 0x%0x",
  285.                      (int)p[0], (int)p[1], (int)p[2], (int)p[3] );
  286. #endif
  287.             break;
  288.         case 0x17: /* coordinates of subtitle upper left x, y position */
  289.             ExtractXY(p_sys->i_x_start, p_sys->i_y_start);
  290. #ifdef DEBUG_CVDSUB
  291.             msg_Dbg( p_dec, "start position (%d,%d)",
  292.                      p_sys->i_x_start, p_sys->i_y_start );
  293. #endif
  294.             break;
  295.         case 0x1f: /* coordinates of subtitle bottom right x, y position */
  296.         {
  297.             int lastx;
  298.             int lasty;
  299.             ExtractXY(lastx, lasty);
  300.             p_sys->i_width  = lastx - p_sys->i_x_start + 1;
  301.             p_sys->i_height = lasty - p_sys->i_y_start + 1;
  302. #ifdef DEBUG_CVDSUB
  303.             msg_Dbg( p_dec, "end position (%d,%d), w x h: %dx%d",
  304.                      lastx, lasty, p_sys->i_width, p_sys->i_height );
  305. #endif
  306.             break;
  307.         }
  308.         case 0x24:
  309.         case 0x25:
  310.         case 0x26:
  311.         case 0x27:
  312.         {
  313.             uint8_t v = p[0] - 0x24;
  314. #ifdef DEBUG_CVDSUB
  315.             /* Primary Palette */
  316.             msg_Dbg( p_dec, "primary palette %d (y,u,v): (0x%0x,0x%0x,0x%0x)",
  317.                      (int)v, (int)p[1], (int)p[2], (int)p[3] );
  318. #endif
  319.             p_sys->p_palette[v][0] = p[1]; /* Y */
  320.             p_sys->p_palette[v][1] = p[3]; /* Cr / V */
  321.             p_sys->p_palette[v][2] = p[2]; /* Cb / U */
  322.             break;
  323.         }
  324.         case 0x2c:
  325.         case 0x2d:
  326.         case 0x2e:
  327.         case 0x2f:
  328.         {
  329.             uint8_t v = p[0] - 0x2c;
  330. #ifdef DEBUG_CVDSUB
  331.             msg_Dbg( p_dec,"highlight palette %d (y,u,v): (0x%0x,0x%0x,0x%0x)",
  332.                      (int)v, (int)p[1], (int)p[2], (int)p[3] );
  333. #endif
  334.             /* Highlight Palette */
  335.             p_sys->p_palette_highlight[v][0] = p[1]; /* Y */
  336.             p_sys->p_palette_highlight[v][1] = p[3]; /* Cr / V */
  337.             p_sys->p_palette_highlight[v][2] = p[2]; /* Cb / U */
  338.             break;
  339.         }
  340.         case 0x37:
  341.             /* transparency for primary palette */
  342.             p_sys->p_palette[0][3] = (p[3] & 0x0f) << 4;
  343.             p_sys->p_palette[1][3] = (p[3] >> 4) << 4;
  344.             p_sys->p_palette[2][3] = (p[2] & 0x0f) << 4;
  345.             p_sys->p_palette[3][3] = (p[2] >> 4) << 4;
  346. #ifdef DEBUG_CVDSUB
  347.             msg_Dbg( p_dec, "transparency for primary palette 0..3: "
  348.                      "0x%0x 0x%0x 0x%0x 0x%0x",
  349.                      (int)p_sys->p_palette[0][3], (int)p_sys->p_palette[1][3],
  350.                      (int)p_sys->p_palette[2][3], (int)p_sys->p_palette[3][3]);
  351. #endif
  352.             break;
  353.         case 0x3f:
  354.             /* transparency for highlight palette */
  355.             p_sys->p_palette_highlight[0][3] = (p[2] & 0x0f) << 4;
  356.             p_sys->p_palette_highlight[1][3] = (p[2] >> 4) << 4;
  357.             p_sys->p_palette_highlight[2][3] = (p[1] & 0x0f) << 4;
  358.             p_sys->p_palette_highlight[3][3] = (p[1] >> 4) << 4;
  359. #ifdef DEBUG_CVDSUB
  360.             msg_Dbg( p_dec, "transparency for highlight palette 0..3: "
  361.                      "0x%0x 0x%0x 0x%0x 0x%0x",
  362.                      (int)p_sys->p_palette_highlight[0][3],
  363.                      (int)p_sys->p_palette_highlight[1][3],
  364.                      (int)p_sys->p_palette_highlight[2][3],
  365.                      (int)p_sys->p_palette_highlight[3][3] );
  366. #endif
  367.             break;
  368.         case 0x47:
  369.             /* offset to start of even rows of interlaced image, we correct
  370.              * to make it relative to i_image_offset (usually 4) */
  371.             p_sys->first_field_offset =
  372.                 (p[2] << 8) + p[3] - p_sys->i_image_offset;
  373. #ifdef DEBUG_CVDSUB
  374.             msg_Dbg( p_dec, "1st_field_offset %zu",
  375.                      p_sys->first_field_offset );
  376. #endif
  377.             break;
  378.         case 0x4f:
  379.             /* offset to start of odd rows of interlaced image, we correct
  380.              * to make it relative to i_image_offset (usually 4) */
  381.             p_sys->second_field_offset =
  382.                 (p[2] << 8) + p[3] - p_sys->i_image_offset;
  383. #ifdef DEBUG_CVDSUB
  384.             msg_Dbg( p_dec, "2nd_field_offset %zu",
  385.                      p_sys->second_field_offset);
  386. #endif
  387.             break;
  388.         default:
  389. #ifdef DEBUG_CVDSUB
  390.             msg_Warn( p_dec, "unknown sequence in control header "
  391.                       "0x%0x 0x%0x 0x%0x 0x%0x", p[0], p[1], p[2], p[3]);
  392. #endif
  393.         }
  394.     }
  395. }
  396. /*****************************************************************************
  397.  * DecodePacket: parse and decode an SPU packet
  398.  *****************************************************************************
  399.  * This function parses and decodes an SPU packet and, if valid, returns a
  400.  * subpicture.
  401.  *****************************************************************************/
  402. static subpicture_t *DecodePacket( decoder_t *p_dec, block_t *p_data )
  403. {
  404.     decoder_sys_t *p_sys = p_dec->p_sys;
  405.     subpicture_t  *p_spu;
  406.     subpicture_region_t *p_region;
  407.     video_format_t fmt;
  408.     video_palette_t palette;
  409.     int i;
  410.     /* Allocate the subpicture internal data. */
  411.     p_spu = decoder_NewSubpicture( p_dec );
  412.     if( !p_spu ) return NULL;
  413.     p_spu->i_start = p_data->i_pts;
  414.     p_spu->i_stop  = p_data->i_pts + p_sys->i_duration;
  415.     p_spu->b_ephemer = true;
  416.     /* Create new SPU region */
  417.     memset( &fmt, 0, sizeof(video_format_t) );
  418.     fmt.i_chroma = VLC_FOURCC('Y','U','V','P');
  419.     fmt.i_aspect = VOUT_ASPECT_FACTOR;
  420.     fmt.i_width = fmt.i_visible_width = p_sys->i_width;
  421.     fmt.i_height = fmt.i_visible_height = p_sys->i_height;
  422.     fmt.i_x_offset = fmt.i_y_offset = 0;
  423.     fmt.p_palette = &palette;
  424.     fmt.p_palette->i_entries = 4;
  425.     for( i = 0; i < fmt.p_palette->i_entries; i++ )
  426.     {
  427.         fmt.p_palette->palette[i][0] = p_sys->p_palette[i][0];
  428.         fmt.p_palette->palette[i][1] = p_sys->p_palette[i][1];
  429.         fmt.p_palette->palette[i][2] = p_sys->p_palette[i][2];
  430.         fmt.p_palette->palette[i][3] = p_sys->p_palette[i][3];
  431.     }
  432.     p_region = subpicture_region_New( &fmt );
  433.     if( !p_region )
  434.     {
  435.         msg_Err( p_dec, "cannot allocate SPU region" );
  436.         decoder_DeleteSubpicture( p_dec, p_spu );
  437.         return NULL;
  438.     }
  439.     p_spu->p_region = p_region;
  440.     p_region->i_x = p_sys->i_x_start;
  441.     p_region->i_x = p_region->i_x * 3 / 4; /* FIXME: use aspect ratio for x? */
  442.     p_region->i_y = p_sys->i_y_start;
  443.     RenderImage( p_dec, p_data, p_region );
  444.     return p_spu;
  445. }
  446. /*****************************************************************************
  447.  * ParseImage: parse and render the image part of the subtitle
  448.  *****************************************************************************
  449.  This part parses the subtitle graphical data and renders it.
  450.  Image data comes interlaced and is run-length encoded (RLE). Each
  451.  field is a four-bit nibbles that is further subdivided in a two-bit
  452.  repeat count and a two-bit color number - up to three pixels can be
  453.  described in four bits.  What a 0 repeat count means is unknown.  It
  454.  might be used for RLE extension.  There is a special case of a 0
  455.  repeat count though.  When the full nibble is zero, the rest of the
  456.  line is filled with the color value in the next nibble.  It is
  457.  unknown what happens if the color value is greater than three.  The
  458.  rest seems to use a 4-entries palette.  It is not impossible that the
  459.  fill-line complete case above is not as described and the zero repeat
  460.  count means fill line.  The sample code never produces this, so it
  461.  may be untested.
  462.  However we'll transform this so that that the RLE is expanded and
  463.  interlacing will also be removed. On output each pixel entry will by
  464.  a 4-bit alpha (filling 8 bits), and 8-bit y, u, and v entry.
  465.  *****************************************************************************/
  466. static void RenderImage( decoder_t *p_dec, block_t *p_data,
  467.                          subpicture_region_t *p_region )
  468. {
  469.     decoder_sys_t *p_sys = p_dec->p_sys;
  470.     uint8_t *p_dest = p_region->p_picture->Y_PIXELS;
  471.     int i_field;            /* The subtitles are interlaced */
  472.     int i_row, i_column;    /* scanline row/column number */
  473.     uint8_t i_color, i_count;
  474.     bs_t bs;
  475.     bs_init( &bs, p_data->p_buffer + p_sys->i_image_offset,
  476.              p_data->i_buffer - p_sys->i_image_offset );
  477.     for( i_field = 0; i_field < 2; i_field++ )
  478.     {
  479.         for( i_row = i_field; i_row < p_sys->i_height; i_row += 2 )
  480.         {
  481.             for( i_column = 0; i_column < p_sys->i_width; i_column++ )
  482.             {
  483.                 uint8_t i_val = bs_read( &bs, 4 );
  484.                 if( i_val == 0 )
  485.                 {
  486.                     /* Fill the rest of the line with next color */
  487.                     i_color = bs_read( &bs, 4 );
  488.                     memset( &p_dest[i_row * p_region->p_picture->Y_PITCH +
  489.                                     i_column], i_color,
  490.                             p_sys->i_width - i_column );
  491.                     i_column = p_sys->i_width;
  492.                     continue;
  493.                 }
  494.                 else
  495.                 {
  496.                     /* Normal case: get color and repeat count */
  497.                     i_count = (i_val >> 2);
  498.                     i_color = i_val & 0x3;
  499.                     i_count = __MIN( i_count, p_sys->i_width - i_column );
  500.                     memset( &p_dest[i_row * p_region->p_picture->Y_PITCH +
  501.                                     i_column], i_color, i_count );
  502.                     i_column += i_count - 1;
  503.                     continue;
  504.                 }
  505.             }
  506.             bs_align( &bs );
  507.         }
  508.     }
  509. }