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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * subtitle_asa.c: Demux for subtitle text files using the asa engine.
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2007 the VideoLAN team
  5.  * $Id: 7a654f302a40d0d776bb6e26a1d90d730c73b768 $
  6.  *
  7.  * Authors: David Lamparter <equinox at videolan dot org>
  8.  *
  9.  * Originated from subtitle.c
  10.  *
  11.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  12.  *          Derk-Jan Hartman <hartman at videolan dot org>
  13.  *
  14.  * This program is free software; you can redistribute it and/or modify
  15.  * it under the terms of the GNU General Public License as published by
  16.  * the Free Software Foundation; either version 2 of the License, or
  17.  * (at your option) any later version.
  18.  *
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  *
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  27.  *****************************************************************************/
  28. /*****************************************************************************
  29.  * Preamble
  30.  *****************************************************************************/
  31. #include "config.h"
  32. #include <vlc_common.h>
  33. #include <vlc_plugin.h>
  34. #include <vlc_input.h>
  35. #include <errno.h>
  36. #ifdef HAVE_SYS_TYPES_H
  37. #   include <sys/types.h>
  38. #endif
  39. #include <ctype.h>
  40. #include <vlc_demux.h>
  41. #include <vlc_charset.h>
  42. #include "asademux.h"
  43. /*****************************************************************************
  44.  * Module descriptor
  45.  *****************************************************************************/
  46. static int  Open ( vlc_object_t *p_this );
  47. static void Close( vlc_object_t *p_this );
  48. #define SUB_DELAY_LONGTEXT 
  49.     N_("Apply a delay to all subtitles (in 1/10s, eg 100 means 10s).")
  50. #define SUB_FPS_LONGTEXT 
  51.     N_("Override the normal frames per second settings. " 
  52.     "This will only affect frame-based subtitle formats without a fixed value.")
  53. #define SUB_TYPE_LONGTEXT 
  54.     N_("Force the subtiles format. Use "auto", the set of supported values varies.")
  55. vlc_module_begin ()
  56.     set_shortname( N_("Subtitles (asa demuxer)"))
  57.     set_description( N_("Text subtitles parser") )
  58.     set_capability( "demux", 50 )
  59.     set_category( CAT_INPUT )
  60.     set_subcategory( SUBCAT_INPUT_DEMUX )
  61.     add_float( "sub-fps", 0.0, NULL,
  62.                N_("Frames per second"),
  63.                SUB_FPS_LONGTEXT, true )
  64.     add_integer( "sub-delay", 0, NULL,
  65.                N_("Subtitles delay"),
  66.                SUB_DELAY_LONGTEXT, true )
  67.     add_string( "sub-type", "auto", NULL, N_("Subtitles format"),
  68.                 SUB_TYPE_LONGTEXT, true )
  69.     set_callbacks( Open, Close )
  70.     add_shortcut( "asademux" )
  71. vlc_module_end ()
  72. /*****************************************************************************
  73.  * Prototypes:
  74.  *****************************************************************************/
  75. typedef struct
  76. {
  77.     int64_t i_start;
  78.     int64_t i_stop;
  79.     char    *psz_text;
  80. } subtitle_t;
  81. struct demux_sys_t
  82. {
  83.     int         i_type;
  84.     es_out_id_t *es;
  85.     int64_t     i_next_demux_date;
  86.     int64_t     i_microsecperframe;
  87.     char        *psz_header;
  88.     int         i_subtitle;
  89.     int         i_subtitles;
  90.     int         i_subs_alloc;
  91.     subtitle_t  *subtitle;
  92.     int64_t     i_length;
  93. };
  94. static int Demux( demux_t * );
  95. static int Control( demux_t *, int, va_list );
  96. static void Fix( demux_t * );
  97. static int ProcessLine( demux_t *, void *, int64_t, int64_t,
  98.                          const char *, size_t );
  99. /*****************************************************************************
  100.  * Module initializer
  101.  *****************************************************************************/
  102. static int Open ( vlc_object_t *p_this )
  103. {
  104.     demux_t        *p_demux = (demux_t*)p_this;
  105.     demux_sys_t    *p_sys;
  106.     es_format_t    fmt;
  107.     input_thread_t *p_input;
  108.     float          f_fps;
  109.     char           *psz_type;
  110.     int64_t        i_ssize;
  111.     void           *p_data;
  112.     struct asa_import_detect *p_detect = NULL;
  113.     if( strcmp( p_demux->psz_demux, "asademux" ) )
  114.     {
  115.         return VLC_EGENERIC;
  116.     }
  117.     p_demux->pf_demux = Demux;
  118.     p_demux->pf_control = Control;
  119.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  120.     if( !p_sys  )
  121.         return VLC_ENOMEM;
  122.     p_sys->psz_header         = NULL;
  123.     p_sys->i_subtitle         = 0;
  124.     p_sys->i_subtitles        = 0;
  125.     p_sys->i_subs_alloc       = 0;
  126.     p_sys->subtitle           = NULL;
  127.     p_sys->i_microsecperframe = 40000;
  128.     /* Get the FPS */
  129.     p_input = (input_thread_t *)vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
  130.     if( p_input )
  131.     {
  132.         f_fps = var_GetFloat( p_input, "sub-original-fps" );
  133.         if( f_fps >= 1.0 )
  134.             p_sys->i_microsecperframe = (int64_t)( (float)1000000 / f_fps );
  135.         msg_Dbg( p_demux, "Movie fps: %f", f_fps );
  136.         vlc_object_release( p_input );
  137.     }
  138.     /* Check for override of the fps */
  139.     f_fps = var_CreateGetFloat( p_demux, "sub-fps" );
  140.     if( f_fps >= 1.0 )
  141.     {
  142.         p_sys->i_microsecperframe = (int64_t)( (float)1000000 / f_fps );
  143.         msg_Dbg( p_demux, "Override subtitle fps %f", f_fps );
  144.     }
  145.     /* Get or probe the type */
  146.     psz_type = var_CreateGetString( p_demux, "sub-type" );
  147.     if( *psz_type )
  148.     {
  149.         for( p_detect = asa_det_first; p_detect; p_detect = p_detect->next )
  150.         {
  151.             if( !strcmp( p_detect->name, psz_type ) )
  152.             {
  153.                 break;
  154.             }
  155.         }
  156.         if( !p_detect )
  157.         {
  158.             msg_Warn( p_demux, "unknown sub-type "%s"", psz_type );
  159.         }
  160.     }
  161.     free( psz_type );
  162.     /* Probe if unknown type */
  163.     if( !p_detect )
  164.     {
  165.         int i_size;
  166.         const uint8_t *p;
  167.         msg_Dbg( p_demux, "autodetecting subtitle format" );
  168.         i_size = stream_Peek( p_demux->s, &p, 4096 );
  169.         if( i_size <= 0)
  170.         {
  171.             msg_Warn( p_demux, "cannot process subtitles (no data?)" );
  172.             return VLC_EGENERIC;
  173.         }
  174.         p_detect = asa_imports_detect( p, i_size );
  175.     }
  176.     if( !p_detect )
  177.     {
  178.         msg_Err( p_demux, "failed to recognize subtitle type" );
  179.         free( p_sys );
  180.         return VLC_EGENERIC;
  181.     }
  182.     if( !p_detect->fmt )
  183.     {
  184.         msg_Err( p_demux, "detected %s subtitle format, no asa support", p_detect->name );
  185.         free( p_sys );
  186.         return VLC_EGENERIC;
  187.     }
  188.     msg_Dbg( p_demux, "detected %s subtitle format", p_detect->name );
  189.     stream_Control( p_demux->s, STREAM_GET_SIZE, &i_ssize );
  190.     p_data = malloc( i_ssize );
  191.     if( !p_data )
  192.     {
  193.         free( p_sys );
  194.         return VLC_ENOMEM;
  195.     }
  196.     if( stream_Read( p_demux->s, &p_data, i_ssize ) != i_ssize )
  197.     {
  198.         msg_Err( p_demux, "subtitle stream read error" );
  199.         free( p_data );
  200.         free( p_sys );
  201.         return VLC_EGENERIC;
  202.     }
  203.     asa_import( p_demux, p_data, i_ssize, p_sys->i_microsecperframe, p_detect,
  204.                 ProcessLine, NULL );
  205.     free( p_data );
  206.     msg_Dbg(p_demux, "loaded %d subtitles", p_sys->i_subtitles );
  207.     /* Fix subtitle (order and time) *** */
  208.     Fix( p_demux );
  209.     p_sys->i_subtitle = 0;
  210.     p_sys->i_length = 0;
  211.     if( p_sys->i_subtitles > 0 )
  212.     {
  213.         p_sys->i_length = p_sys->subtitle[p_sys->i_subtitles-1].i_stop;
  214.         /* +1 to avoid 0 */
  215.         if( p_sys->i_length <= 0 )
  216.             p_sys->i_length = p_sys->subtitle[p_sys->i_subtitles-1].i_start+1;
  217.     }
  218.     /* *** add subtitle ES *** */
  219.     if( p_detect->fmt->target == ASAI_TARGET_SSA )
  220.     {
  221.         es_format_Init( &fmt, SPU_ES, VLC_FOURCC( 's','s','a',' ' ) );
  222.     }
  223.     else
  224.     {
  225.         es_format_Init( &fmt, SPU_ES, VLC_FOURCC( 's','u','b','t' ) );
  226.     }
  227.     p_sys->es = es_out_Add( p_demux->out, &fmt );
  228.     return VLC_SUCCESS;
  229. }
  230. /*****************************************************************************
  231.  * ProcessLine: Callback for asa_import, fed one line
  232.  * (note: return values are not kept. nonzero signals abort to asa_import)
  233.  *****************************************************************************/
  234. static int ProcessLine( demux_t *p_demux, void *p_arg,
  235.                          int64_t i_start, int64_t i_stop,
  236.                          const char *p_buffer, size_t i_buffer_length )
  237. {
  238.     demux_sys_t *p_sys = p_demux->p_sys;
  239.     subtitle_t *p_subtitle;
  240.     char *psz_text;
  241.     VLC_UNUSED(p_arg);
  242.     if( p_sys->i_subtitles >= p_sys->i_subs_alloc )
  243.     {
  244.         p_sys->i_subs_alloc += 500;
  245.         if( !( p_sys->subtitle = realloc( p_sys->subtitle, sizeof(subtitle_t)
  246.                                           * p_sys->i_subs_alloc ) ) )
  247.         {
  248.             return VLC_ENOMEM;
  249.         }
  250.     }
  251.     p_subtitle = &p_sys->subtitle[p_sys->i_subtitles];
  252.     psz_text = malloc( i_buffer_length + 1 );
  253.     if( !psz_text )
  254.         return VLC_ENOMEM;
  255.     memcpy( psz_text, p_buffer, i_buffer_length );
  256.     psz_text[i_buffer_length] = '';
  257.     p_subtitle->i_start = i_start;
  258.     p_subtitle->i_stop  = i_stop;
  259.     p_subtitle->psz_text = psz_text;
  260.     p_sys->i_subtitles++;
  261.     return VLC_SUCCESS;
  262. }
  263. /*****************************************************************************
  264.  * Close: Close subtitle demux
  265.  *****************************************************************************/
  266. static void Close( vlc_object_t *p_this )
  267. {
  268.     demux_t *p_demux = (demux_t*)p_this;
  269.     demux_sys_t *p_sys = p_demux->p_sys;
  270.     int i;
  271.     for( i = 0; i < p_sys->i_subtitles; i++ )
  272.         free( p_sys->subtitle[i].psz_text );
  273.     free( p_sys->subtitle );
  274.     free( p_sys );
  275. }
  276. /*****************************************************************************
  277.  * Control:
  278.  *****************************************************************************/
  279. static int Control( demux_t *p_demux, int i_query, va_list args )
  280. {
  281.     demux_sys_t *p_sys = p_demux->p_sys;
  282.     int64_t *pi64, i64;
  283.     double *pf, f;
  284.     switch( i_query )
  285.     {
  286.         case DEMUX_GET_LENGTH:
  287.             pi64 = (int64_t*)va_arg( args, int64_t * );
  288.             *pi64 = p_sys->i_length;
  289.             return VLC_SUCCESS;
  290.         case DEMUX_GET_TIME:
  291.             pi64 = (int64_t*)va_arg( args, int64_t * );
  292.             if( p_sys->i_subtitle < p_sys->i_subtitles )
  293.             {
  294.                 *pi64 = p_sys->subtitle[p_sys->i_subtitle].i_start;
  295.                 return VLC_SUCCESS;
  296.             }
  297.             return VLC_EGENERIC;
  298.         case DEMUX_SET_TIME:
  299.             i64 = (int64_t)va_arg( args, int64_t );
  300.             p_sys->i_subtitle = 0;
  301.             while( p_sys->i_subtitle < p_sys->i_subtitles &&
  302.                    p_sys->subtitle[p_sys->i_subtitle].i_start < i64 )
  303.             {
  304.                 p_sys->i_subtitle++;
  305.             }
  306.             if( p_sys->i_subtitle >= p_sys->i_subtitles )
  307.                 return VLC_EGENERIC;
  308.             return VLC_SUCCESS;
  309.         case DEMUX_GET_POSITION:
  310.             pf = (double*)va_arg( args, double * );
  311.             if( p_sys->i_subtitle >= p_sys->i_subtitles )
  312.             {
  313.                 *pf = 1.0;
  314.             }
  315.             else if( p_sys->i_subtitles > 0 )
  316.             {
  317.                 *pf = (double)p_sys->subtitle[p_sys->i_subtitle].i_start /
  318.                       (double)p_sys->i_length;
  319.             }
  320.             else
  321.             {
  322.                 *pf = 0.0;
  323.             }
  324.             return VLC_SUCCESS;
  325.         case DEMUX_SET_POSITION:
  326.             f = (double)va_arg( args, double );
  327.             i64 = f * p_sys->i_length;
  328.             p_sys->i_subtitle = 0;
  329.             while( p_sys->i_subtitle < p_sys->i_subtitles &&
  330.                    p_sys->subtitle[p_sys->i_subtitle].i_start < i64 )
  331.             {
  332.                 p_sys->i_subtitle++;
  333.             }
  334.             if( p_sys->i_subtitle >= p_sys->i_subtitles )
  335.                 return VLC_EGENERIC;
  336.             return VLC_SUCCESS;
  337.         case DEMUX_SET_NEXT_DEMUX_TIME:
  338.             p_sys->i_next_demux_date = (int64_t)va_arg( args, int64_t );
  339.             return VLC_SUCCESS;
  340.         case DEMUX_GET_FPS:
  341.         case DEMUX_GET_META:
  342.         case DEMUX_GET_ATTACHMENTS:
  343.         case DEMUX_GET_TITLE_INFO:
  344.             return VLC_EGENERIC;
  345.         default:
  346.             msg_Err( p_demux, "unknown query in subtitle control" );
  347.             return VLC_EGENERIC;
  348.     }
  349. }
  350. /*****************************************************************************
  351.  * Demux: Send subtitle to decoder
  352.  *****************************************************************************/
  353. static int Demux( demux_t *p_demux )
  354. {
  355.     demux_sys_t *p_sys = p_demux->p_sys;
  356.     int64_t i_maxdate;
  357.     if( p_sys->i_subtitle >= p_sys->i_subtitles )
  358.         return 0;
  359.     i_maxdate = p_sys->i_next_demux_date - var_GetTime( p_demux->p_parent, "spu-delay" );;
  360.     if( i_maxdate <= 0 && p_sys->i_subtitle < p_sys->i_subtitles )
  361.     {
  362.         /* Should not happen */
  363.         i_maxdate = p_sys->subtitle[p_sys->i_subtitle].i_start + 1;
  364.     }
  365.     while( p_sys->i_subtitle < p_sys->i_subtitles &&
  366.            p_sys->subtitle[p_sys->i_subtitle].i_start < i_maxdate )
  367.     {
  368.         block_t *p_block;
  369.         int i_len = strlen( p_sys->subtitle[p_sys->i_subtitle].psz_text ) + 1;
  370.         if( i_len <= 1 )
  371.         {
  372.             /* empty subtitle */
  373.             p_sys->i_subtitle++;
  374.             continue;
  375.         }
  376.         if( ( p_block = block_New( p_demux, i_len ) ) == NULL )
  377.         {
  378.             p_sys->i_subtitle++;
  379.             continue;
  380.         }
  381.         if( p_sys->subtitle[p_sys->i_subtitle].i_start < 0 )
  382.         {
  383.             p_sys->i_subtitle++;
  384.             continue;
  385.         }
  386.         p_block->i_pts = p_sys->subtitle[p_sys->i_subtitle].i_start;
  387.         p_block->i_dts = p_block->i_pts;
  388.         if( p_sys->subtitle[p_sys->i_subtitle].i_stop > 0 )
  389.         {
  390.             p_block->i_length =
  391.                 p_sys->subtitle[p_sys->i_subtitle].i_stop - p_block->i_pts;
  392.         }
  393.         memcpy( p_block->p_buffer,
  394.                 p_sys->subtitle[p_sys->i_subtitle].psz_text, i_len );
  395.         if( p_block->i_pts > 0 )
  396.         {
  397.             es_out_Send( p_demux->out, p_sys->es, p_block );
  398.         }
  399.         else
  400.         {
  401.             block_Release( p_block );
  402.         }
  403.         p_sys->i_subtitle++;
  404.     }
  405.     /* */
  406.     p_sys->i_next_demux_date = 0;
  407.     return 1;
  408. }
  409. /*****************************************************************************
  410.  * Fix: fix time stamp and order of subtitle
  411.  *****************************************************************************/
  412. static void Fix( demux_t *p_demux )
  413. {
  414.     demux_sys_t *p_sys = p_demux->p_sys;
  415.     bool b_done;
  416.     int     i_index;
  417.     /* *** fix order (to be sure...) *** */
  418.     /* We suppose that there are near in order and this durty bubble sort
  419.      * wont take too much time
  420.      */
  421.     do
  422.     {
  423.         b_done = true;
  424.         for( i_index = 1; i_index < p_sys->i_subtitles; i_index++ )
  425.         {
  426.             if( p_sys->subtitle[i_index].i_start <
  427.                     p_sys->subtitle[i_index - 1].i_start )
  428.             {
  429.                 subtitle_t sub_xch;
  430.                 memcpy( &sub_xch,
  431.                         p_sys->subtitle + i_index - 1,
  432.                         sizeof( subtitle_t ) );
  433.                 memcpy( p_sys->subtitle + i_index - 1,
  434.                         p_sys->subtitle + i_index,
  435.                         sizeof( subtitle_t ) );
  436.                 memcpy( p_sys->subtitle + i_index,
  437.                         &sub_xch,
  438.                         sizeof( subtitle_t ) );
  439.                 b_done = false;
  440.             }
  441.         }
  442.     } while( !b_done );
  443. }