spudec.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:8k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * spudec.c : SPU decoder thread
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2001 VideoLAN
  5.  * $Id: spudec.c 9089 2004-10-31 15:51:24Z jpsaman $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <vlc/vlc.h>
  28. #include <vlc/decoder.h>
  29. #include "spudec.h"
  30. /*****************************************************************************
  31.  * Module descriptor.
  32.  *****************************************************************************/
  33. static int  DecoderOpen   ( vlc_object_t * );
  34. static int  PacketizerOpen( vlc_object_t * );
  35. static void Close         ( vlc_object_t * );
  36. vlc_module_begin();
  37.     set_description( _("DVD subtitles decoder") );
  38.     set_capability( "decoder", 50 );
  39.     set_callbacks( DecoderOpen, Close );
  40.     add_submodule();
  41.     set_description( _("DVD subtitles packetizer") );
  42.     set_capability( "packetizer", 50 );
  43.     set_callbacks( PacketizerOpen, Close );
  44. vlc_module_end();
  45. /*****************************************************************************
  46.  * Local prototypes
  47.  *****************************************************************************/
  48. static block_t *      Reassemble( decoder_t *, block_t ** );
  49. static subpicture_t * Decode    ( decoder_t *, block_t ** );
  50. static block_t *      Packetize ( decoder_t *, block_t ** );
  51. /*****************************************************************************
  52.  * DecoderOpen
  53.  *****************************************************************************
  54.  * Tries to launch a decoder and return score so that the interface is able
  55.  * to chose.
  56.  *****************************************************************************/
  57. static int DecoderOpen( vlc_object_t *p_this )
  58. {
  59.     decoder_t     *p_dec = (decoder_t*)p_this;
  60.     decoder_sys_t *p_sys;
  61.     if( p_dec->fmt_in.i_codec != VLC_FOURCC( 's','p','u',' ' ) &&
  62.         p_dec->fmt_in.i_codec != VLC_FOURCC( 's','p','u','b' ) )
  63.     {
  64.         return VLC_EGENERIC;
  65.     }
  66.     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
  67.     p_sys->b_packetizer = VLC_FALSE;
  68.     p_sys->i_spu_size = 0;
  69.     p_sys->i_spu      = 0;
  70.     p_sys->p_block    = NULL;
  71.     es_format_Init( &p_dec->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) );
  72.     p_dec->pf_decode_sub = Decode;
  73.     p_dec->pf_packetize  = NULL;
  74.     return VLC_SUCCESS;
  75. }
  76. /*****************************************************************************
  77.  * PacketizerOpen
  78.  *****************************************************************************
  79.  * Tries to launch a decoder and return score so that the interface is able
  80.  * to chose.
  81.  *****************************************************************************/
  82. static int PacketizerOpen( vlc_object_t *p_this )
  83. {
  84.     decoder_t *p_dec = (decoder_t*)p_this;
  85.     if( DecoderOpen( p_this ) )
  86.     {
  87.         return VLC_EGENERIC;
  88.     }
  89.     p_dec->pf_packetize  = Packetize;
  90.     p_dec->p_sys->b_packetizer = VLC_TRUE;
  91.     es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in );
  92.     p_dec->fmt_out.i_codec = VLC_FOURCC( 's','p','u',' ' );
  93.     return VLC_SUCCESS;
  94. }
  95. /*****************************************************************************
  96.  * Close:
  97.  *****************************************************************************/
  98. static void Close( vlc_object_t *p_this )
  99. {
  100.     decoder_t     *p_dec = (decoder_t*)p_this;
  101.     decoder_sys_t *p_sys = p_dec->p_sys;
  102.     if( p_sys->p_block ) block_ChainRelease( p_sys->p_block );
  103.     free( p_sys );
  104. }
  105. /*****************************************************************************
  106.  * Decode:
  107.  *****************************************************************************/
  108. static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
  109. {
  110.     decoder_sys_t *p_sys = p_dec->p_sys;
  111.     block_t       *p_spu_block;
  112.     if( (p_spu_block = Reassemble( p_dec, pp_block )) )
  113.     {
  114.         subpicture_t *p_spu;
  115.         p_sys->i_spu = block_ChainExtract( p_spu_block, p_sys->buffer, 65536 );
  116.         p_sys->i_pts = p_spu_block->i_pts;
  117.         block_ChainRelease( p_spu_block );
  118.         /* Parse and decode */
  119.         p_spu = E_(ParsePacket)( p_dec );
  120.         /* reinit context */
  121.         p_sys->i_spu_size = 0;
  122.         p_sys->i_rle_size = 0;
  123.         p_sys->i_spu      = 0;
  124.         p_sys->p_block    = NULL;
  125.         return p_spu;
  126.     }
  127.     return NULL;
  128. }
  129. /*****************************************************************************
  130.  * Packetize:
  131.  *****************************************************************************/
  132. static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
  133. {
  134.     decoder_sys_t *p_sys = p_dec->p_sys;
  135.     block_t       *p_spu = Reassemble( p_dec, pp_block );
  136.     if( p_spu )
  137.     {
  138.         p_spu->i_dts = p_spu->i_pts;
  139.         p_spu->i_length = 0;
  140.         /* reinit context */
  141.         p_sys->i_spu_size = 0;
  142.         p_sys->i_rle_size = 0;
  143.         p_sys->i_spu      = 0;
  144.         p_sys->p_block    = NULL;
  145.         return block_ChainGather( p_spu );
  146.     }
  147.     return NULL;
  148. }
  149. /*****************************************************************************
  150.  * Reassemble:
  151.  *****************************************************************************/
  152. static block_t *Reassemble( decoder_t *p_dec, block_t **pp_block )
  153. {
  154.     decoder_sys_t *p_sys = p_dec->p_sys;
  155.     block_t *p_block;
  156.     if( pp_block == NULL || *pp_block == NULL ) return NULL;
  157.     p_block = *pp_block;
  158.     *pp_block = NULL;
  159.     if( p_sys->i_spu_size <= 0 &&
  160.         ( p_block->i_pts <= 0 || p_block->i_buffer < 4 ) )
  161.     {
  162.         msg_Dbg( p_dec, "invalid starting packet (size < 4 or pts <=0)" );
  163.         msg_Dbg( p_dec, "spu size: %d, i_pts: "I64Fd" i_buffer: %d",
  164.                  p_sys->i_spu_size, p_block->i_pts, p_block->i_buffer );
  165.         block_Release( p_block );
  166.         return NULL;
  167.     }
  168.     block_ChainAppend( &p_sys->p_block, p_block );
  169.     p_sys->i_spu += p_block->i_buffer;
  170.     if( p_sys->i_spu_size <= 0 )
  171.     {
  172.         p_sys->i_spu_size = ( p_block->p_buffer[0] << 8 )|
  173.             p_block->p_buffer[1];
  174.         p_sys->i_rle_size = ( ( p_block->p_buffer[2] << 8 )|
  175.             p_block->p_buffer[3] ) - 4;
  176.         /* msg_Dbg( p_dec, "i_spu_size=%d i_rle=%d",
  177.                     p_sys->i_spu_size, p_sys->i_rle_size ); */
  178.         if( p_sys->i_spu_size <= 0 || p_sys->i_rle_size >= p_sys->i_spu_size )
  179.         {
  180.             p_sys->i_spu_size = 0;
  181.             p_sys->i_rle_size = 0;
  182.             p_sys->i_spu      = 0;
  183.             p_sys->p_block    = NULL;
  184.             block_Release( p_block );
  185.             return NULL;
  186.         }
  187.     }
  188.     if( p_sys->i_spu >= p_sys->i_spu_size )
  189.     {
  190.         /* We have a complete sub */
  191.         msg_Dbg( p_dec, "SPU packets size=%d should be %d",
  192.                  p_sys->i_spu, p_sys->i_spu_size );
  193.         return p_sys->p_block;
  194.     }
  195.     return NULL;
  196. }