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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cdg.c : cdg file demux module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 Laurent Aimar
  5.  * $Id: d9102884bc680ef0e3e2ac190daf5a51ddd05b26 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir # via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_demux.h>
  32. #include <vlc_codecs.h>
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. static int  Open ( vlc_object_t * );
  37. static void Close( vlc_object_t * );
  38. vlc_module_begin ()
  39.     set_description( N_("CDG demuxer") )
  40.     set_category( CAT_INPUT )
  41.     set_subcategory( SUBCAT_INPUT_DEMUX )
  42.     set_capability( "demux", 3 )
  43.     set_callbacks( Open, Close )
  44.     add_shortcut( "cdg" )
  45.     add_shortcut( "subtitle" )
  46. vlc_module_end ()
  47. /*****************************************************************************
  48.  * Local prototypes
  49.  *****************************************************************************/
  50. static int Demux  ( demux_t * );
  51. static int Control( demux_t *, int i_query, va_list args );
  52. struct demux_sys_t
  53. {
  54.     es_format_t     fmt;
  55.     es_out_id_t     *p_es;
  56.     date_t          pts;
  57. };
  58. #define CDG_FRAME_SIZE (96)
  59. #define CDG_FRAME_RATE (75)
  60. /*****************************************************************************
  61.  * Open: check file and initializes structures
  62.  *****************************************************************************/
  63. static int Open( vlc_object_t * p_this )
  64. {
  65.     demux_t     *p_demux = (demux_t*)p_this;
  66.     demux_sys_t *p_sys;
  67.     /* Identify cdg file by extension, as there is no simple way to
  68.      * detect it */
  69.     if( !demux_IsPathExtension( p_demux, ".cdg" ) && !demux_IsForced( p_demux, "cdg" ) )
  70.         return VLC_EGENERIC;
  71.     /* CDG file size has to be multiple of CDG_FRAME_SIZE (it works even
  72.      * if size is unknown ie 0) */
  73. //    if( (stream_Size( p_demux->s ) % CDG_FRAME_SIZE) != 0 )
  74. //    {
  75. //        msg_Err( p_demux, "Reject CDG file based on its size" );
  76. //        return VLC_EGENERIC;
  77. //    }
  78.     p_demux->pf_demux   = Demux;
  79.     p_demux->pf_control = Control;
  80.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  81.     /* */
  82.     es_format_Init( &p_sys->fmt, VIDEO_ES, VLC_FOURCC('C','D','G', ' ' ) );
  83.     p_sys->fmt.video.i_width  = 300-2*6;
  84.     p_sys->fmt.video.i_height = 216-2*12 ;
  85.     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
  86.     /* There is CDG_FRAME_RATE frames per second */
  87.     date_Init( &p_sys->pts, CDG_FRAME_RATE, 1 );
  88.     date_Set( &p_sys->pts, 1 );
  89.     return VLC_SUCCESS;
  90. }
  91. /*****************************************************************************
  92.  * Demux: read packet and send them to decoders
  93.  *****************************************************************************
  94.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  95.  *****************************************************************************/
  96. static int Demux( demux_t *p_demux )
  97. {
  98.     demux_sys_t *p_sys = p_demux->p_sys;
  99.     block_t     *p_block;
  100.     p_block = stream_Block( p_demux->s, CDG_FRAME_SIZE );
  101.     if( p_block == NULL )
  102.     {
  103.         msg_Dbg( p_demux, "cannot read data, eof" );
  104.         return 0;
  105.     }
  106.     p_block->i_dts =
  107.     p_block->i_pts = date_Increment( &p_sys->pts, 1 );
  108.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  109.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  110.     return 1;
  111. }
  112. /*****************************************************************************
  113.  * Close: frees unused data
  114.  *****************************************************************************/
  115. static void Close ( vlc_object_t * p_this )
  116. {
  117.     demux_t *p_demux = (demux_t *)p_this;
  118.     demux_sys_t *p_sys = p_demux->p_sys;
  119.     free( p_sys );
  120. }
  121. /*****************************************************************************
  122.  * Control:
  123.  *****************************************************************************/
  124. static int Control( demux_t *p_demux, int i_query, va_list args )
  125. {
  126.     int i_ret = demux_vaControlHelper( p_demux->s, 0, -1,
  127.                                        8*CDG_FRAME_SIZE*CDG_FRAME_RATE, CDG_FRAME_SIZE,
  128.                                        i_query, args );
  129.     if( !i_ret && ( i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME ) )
  130.         date_Set( &p_demux->p_sys->pts,
  131.                   stream_Tell( p_demux->s ) / CDG_FRAME_SIZE *
  132.                     INT64_C(1000000) / CDG_FRAME_RATE );
  133.     return i_ret;
  134. }