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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ogt.c : Overlay Graphics Text (SVCD subtitles) decoder thread
  3.  *****************************************************************************
  4.  * Copyright (C) 2003, 2004 VideoLAN
  5.  * $Id: ogt.c 8709 2004-09-15 15:50:54Z gbazin $
  6.  *
  7.  * Author: Rocky Bernstein
  8.  *   based on code from:
  9.  *       Julio Sanchez Fernandez (http://subhandler.sourceforge.net)
  10.  *       Samuel Hocevar <sam@zoy.org>
  11.  *       Laurent Aimar <fenrir@via.ecp.fr>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  26.  *****************************************************************************/
  27. /*****************************************************************************
  28.  * Preamble
  29.  *****************************************************************************/
  30. #include <vlc/vlc.h>
  31. #include <vlc/vout.h>
  32. #include <vlc/decoder.h>
  33. #include "subtitle.h"
  34. #include "ogt.h"
  35. #include "common.h"
  36. /*****************************************************************************
  37.  * Module descriptor.
  38.  *****************************************************************************/
  39. static int  VCDSubOpen   ( vlc_object_t * );
  40. static int  PacketizerOpen( vlc_object_t * );
  41. vlc_module_begin();
  42.     set_description( _("Philips OGT (SVCD subtitle) decoder") );
  43.     set_capability( "decoder", 50 );
  44.     set_callbacks( VCDSubOpen, VCDSubClose );
  45.     add_integer ( MODULE_STRING "-debug", 0, NULL,
  46.                   DEBUG_TEXT, DEBUG_LONGTEXT, VLC_TRUE );
  47.     add_integer ( MODULE_STRING "-horizontal-correct", 0, NULL,
  48.                   HORIZONTAL_CORRECT, HORIZONTAL_CORRECT_LONGTEXT, VLC_FALSE );
  49.     add_integer ( MODULE_STRING "-vertical-correct", 0, NULL,
  50.                   VERTICAL_CORRECT, VERTICAL_CORRECT_LONGTEXT, VLC_FALSE );
  51.     add_string( MODULE_STRING "-aspect-ratio", "", NULL,
  52.                 SUB_ASPECT_RATIO_TEXT, SUB_ASPECT_RATIO_LONGTEXT, VLC_TRUE );
  53.     add_integer( MODULE_STRING "-duration-scaling", 9, NULL,
  54.                  DURATION_SCALE_TEXT, DURATION_SCALE_LONGTEXT, VLC_TRUE );
  55.     add_submodule();
  56.     set_description( _("Philips OGT (SVCD subtitle) packetizer") );
  57.     set_capability( "packetizer", 50 );
  58.     set_callbacks( PacketizerOpen, VCDSubClose );
  59. vlc_module_end();
  60. /*****************************************************************************
  61.  * Local prototypes
  62.  *****************************************************************************/
  63. static block_t *Reassemble ( decoder_t *, block_t ** );
  64. static subpicture_t *Decode( decoder_t *, block_t ** );
  65. static block_t *Packetize  ( decoder_t *, block_t ** );
  66. /*****************************************************************************
  67.  * VCDSubOpen
  68.  *****************************************************************************
  69.  * Tries to launch a decoder and return score so that the interface is able
  70.  * to chose.
  71.  *****************************************************************************/
  72. static int
  73. VCDSubOpen( vlc_object_t *p_this )
  74. {
  75.     decoder_t     *p_dec = (decoder_t*)p_this;
  76.     decoder_sys_t *p_sys;
  77.     if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'o','g','t',' ' ) )
  78.     {
  79.         return VLC_EGENERIC;
  80.     }
  81.     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
  82.     p_sys->i_debug       = config_GetInt( p_this, MODULE_STRING "-debug" );
  83.     p_sys->b_packetizer  = VLC_FALSE;
  84.     p_sys->p_vout        = NULL;
  85.     p_sys->i_image       = -1;
  86.     p_sys->subtitle_data = NULL;
  87.     VCDSubInitSubtitleBlock( p_sys );
  88.     es_format_Init( &p_dec->fmt_out, SPU_ES, VLC_FOURCC( 'o','g','t',' ' ) );
  89.     p_dec->pf_decode_sub = Decode;
  90.     p_dec->pf_packetize  = Packetize;
  91.     dbg_print( (DECODE_DBG_CALL|DECODE_DBG_EXT) , "");
  92.     return VLC_SUCCESS;
  93. }
  94. /*****************************************************************************
  95.  * PacketizerOpen
  96.  *****************************************************************************
  97.  * Tries to launch a decoder and return score so that the interface is able
  98.  * to chose.
  99.  *****************************************************************************/
  100. static int PacketizerOpen( vlc_object_t *p_this )
  101. {
  102.     decoder_t *p_dec = (decoder_t*)p_this;
  103.     if( VCDSubOpen( p_this ) )
  104.     {
  105.         return VLC_EGENERIC;
  106.     }
  107.     p_dec->p_sys->b_packetizer = VLC_TRUE;
  108.     return VLC_SUCCESS;
  109. }
  110. /*****************************************************************************
  111.  * Decode:
  112.  *****************************************************************************/
  113. static subpicture_t *
  114. Decode ( decoder_t *p_dec, block_t **pp_block )
  115. {
  116.     decoder_sys_t *p_sys = p_dec->p_sys;
  117.     block_t       *p_spu = Reassemble( p_dec, pp_block );
  118.     vout_thread_t *p_last_vout = p_dec->p_sys->p_vout;
  119.     dbg_print( (DECODE_DBG_CALL) , "");
  120.     if( p_spu )
  121.     {
  122.         p_sys->i_spu = block_ChainExtract( p_spu, p_sys->buffer, 65536 );
  123.         p_sys->i_pts = p_spu->i_pts;
  124.         block_ChainRelease( p_spu );
  125.         if( ( p_sys->p_vout = VCDSubFindVout( p_dec ) ) )
  126.         {
  127.             if( p_last_vout != p_sys->p_vout )
  128.             {
  129.                 spu_Control( p_sys->p_vout->p_spu, SPU_CHANNEL_REGISTER,
  130.                              &p_sys->i_subpic_channel );
  131.             }
  132.             /* Parse and decode */
  133.             E_(ParsePacket)( p_dec );
  134.             vlc_object_release( p_sys->p_vout );
  135.         }
  136.         VCDSubInitSubtitleBlock ( p_sys );
  137.     }
  138.     return NULL;
  139. }
  140. /*****************************************************************************
  141.  * Packetize:
  142.  *****************************************************************************/
  143. static block_t *
  144. Packetize( decoder_t *p_dec, block_t **pp_block )
  145. {
  146.     decoder_sys_t *p_sys = p_dec->p_sys;
  147.     block_t       *p_spu = Reassemble( p_dec, pp_block );
  148.     if( p_spu )
  149.     {
  150.         p_spu->i_dts = p_spu->i_pts;
  151.         p_spu->i_length = 0;
  152.         VCDSubInitSubtitleBlock( p_sys );
  153.         return block_ChainGather( p_spu );
  154.     }
  155.     return NULL;
  156. }
  157. #define SPU_HEADER_LEN 5
  158. /*****************************************************************************
  159.  Reassemble:
  160.  The data for single screen subtitle may come in one of many
  161.  non-contiguous packets of a stream. This routine is called when the
  162.  next packet in the stream comes in. The job of this routine is to
  163.  parse the header, if this is the beginning, and combine the packets
  164.  into one complete subtitle unit.
  165.  If everything is complete, we will return a block. Otherwise return
  166.  NULL.
  167.  The format of the beginning of the subtitle packet that is used here.
  168.    size    description
  169.    -------------------------------------------
  170.    byte    subtitle channel (0..7) in bits 0-3
  171.    byte    subtitle packet number of this subtitle image 0-N,
  172.            if the subtitle packet is complete, the top bit of the byte is 1.
  173.    uint16  subtitle image number
  174.  *****************************************************************************/
  175. static block_t *
  176. Reassemble( decoder_t *p_dec, block_t **pp_block )
  177. {
  178.     decoder_sys_t *p_sys = p_dec->p_sys;
  179.     block_t *p_block;
  180.     uint8_t *p_buffer;
  181.     uint16_t i_expected_image;
  182.     uint8_t  i_packet, i_expected_packet;
  183.     if( pp_block == NULL || *pp_block == NULL )
  184.     {
  185.         return NULL;
  186.     }
  187.     p_block = *pp_block;
  188.     *pp_block = NULL;
  189.     if( p_block->i_buffer < SPU_HEADER_LEN )
  190.     {
  191.       msg_Dbg( p_dec, "invalid packet header (size %d < %d)" ,
  192.                p_block->i_buffer, SPU_HEADER_LEN );
  193.       block_Release( p_block );
  194.       return NULL;
  195.     }
  196.     p_buffer = p_block->p_buffer;
  197.     dbg_print( (DECODE_DBG_CALL|DECODE_DBG_PACKET),
  198.                "header: 0x%02x 0x%02x 0x%02x 0x%02x, size: %i",
  199.                p_buffer[1], p_buffer[2], p_buffer[3], p_buffer[4],
  200.                p_block->i_buffer);
  201.     /* Attach to our input thread and see if subtitle is selected. */
  202.     {
  203.         vlc_object_t * p_input;
  204.         vlc_value_t val;
  205.         p_input = vlc_object_find( p_dec, VLC_OBJECT_INPUT, FIND_PARENT );
  206.         if( !p_input ) return NULL;
  207.         if( var_Get( p_input, "spu-channel", &val ) )
  208.         {
  209.             vlc_object_release( p_input );
  210.           return NULL;
  211.         }
  212.         vlc_object_release( p_input );
  213.         dbg_print( (DECODE_DBG_PACKET),
  214.                    "val.i_int %x p_buffer[i] %x", val.i_int, p_buffer[1]);
  215.         /* The dummy ES that the menu selection uses has an 0x70 at
  216.            the head which we need to strip off. */
  217.         if( val.i_int == -1 || (val.i_int & 0x03) != p_buffer[1] )
  218.         {
  219.             dbg_print( DECODE_DBG_PACKET, "subtitle not for us.n");
  220.             return NULL;
  221.         }
  222.     }
  223.     if ( p_sys->state == SUBTITLE_BLOCK_EMPTY ) {
  224.       i_expected_image  = p_sys->i_image+1;
  225.       i_expected_packet = 0;
  226.     } else {
  227.       i_expected_image  = p_sys->i_image;
  228.       i_expected_packet = p_sys->i_packet+1;
  229.     }
  230.     p_buffer += 2;
  231.     if ( *p_buffer & 0x80 ) {
  232.       p_sys->state = SUBTITLE_BLOCK_COMPLETE;
  233.       i_packet     = ( *p_buffer++ & 0x7F );
  234.     } else {
  235.       p_sys->state = SUBTITLE_BLOCK_PARTIAL;
  236.       i_packet     = *p_buffer++;
  237.     }
  238.     p_sys->i_image = GETINT16(p_buffer);
  239.     if ( p_sys->i_image != i_expected_image ) {
  240.       msg_Warn( p_dec, "expecting subtitle image %u but found %u",
  241.                 i_expected_image, p_sys->i_image );
  242.     }
  243.     if ( i_packet != i_expected_packet ) {
  244.       msg_Warn( p_dec, "expecting subtitle image packet %u but found %u",
  245.                 i_expected_packet, i_packet);
  246.     }
  247.     p_sys->i_packet = i_packet;
  248.     if ( p_sys->i_packet == 0 ) {
  249.       /* First packet in the subtitle block */
  250.       E_(ParseHeader)( p_dec, p_buffer, p_block );
  251.       VCDSubInitSubtitleData(p_sys);
  252.     }
  253.     /* FIXME - remove append_data and use chainappend */
  254.     VCDSubAppendData( p_dec, p_buffer, p_block->i_buffer - SPU_HEADER_LEN );
  255.     block_ChainAppend( &p_sys->p_block, p_block );
  256.     p_sys->i_spu += p_block->i_buffer - SPU_HEADER_LEN;
  257.     if (p_sys->state == SUBTITLE_BLOCK_COMPLETE)
  258.     {
  259.       if( p_sys->i_spu != p_sys->i_spu_size )
  260.         {
  261.           msg_Warn( p_dec, "SPU packets size=%d should be %d",
  262.                    p_sys->i_spu, p_sys->i_spu_size );
  263.         }
  264.       dbg_print( (DECODE_DBG_PACKET),
  265.                  "subtitle packet complete, size=%d", p_sys->i_spu );
  266.       return p_sys->p_block;
  267.     }
  268.     return NULL;
  269. }
  270. /*
  271.  * Local variables:
  272.  *  c-file-style: "gnu"
  273.  *  tab-width: 8
  274.  *  indent-tabs-mode: nil
  275.  * End:
  276.  */