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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * xa.c : xa file demux module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 Rémi Denis-Courmont
  5.  * $Id: 65a3f2eca904e3fb666047b939aa95a0524359e9 $
  6.  *
  7.  * Authors: Rémi Denis-Courmont <rem # videolan.org>
  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_("XA demuxer") )
  40.     set_category( CAT_INPUT )
  41.     set_subcategory( SUBCAT_INPUT_DEMUX )
  42.     set_capability( "demux", 10 )
  43.     set_callbacks( Open, Close )
  44. vlc_module_end ()
  45. /*****************************************************************************
  46.  * Local prototypes
  47.  *****************************************************************************/
  48. static int Demux  ( demux_t * );
  49. static int Control( demux_t *, int i_query, va_list args );
  50. struct demux_sys_t
  51. {
  52.     es_format_t     fmt;
  53.     es_out_id_t     *p_es;
  54.     int64_t         i_data_offset;
  55.     unsigned int    i_data_size;
  56.     date_t          pts;
  57. };
  58. typedef struct xa_header_t
  59. {
  60.     char     xa_id[4];
  61.     uint32_t iSize;
  62.     uint16_t wFormatTag;
  63.     uint16_t nChannels;
  64.     uint32_t nSamplesPerSec;
  65.     uint32_t nAvgBytesPerSec;
  66.     uint16_t nBlockAlign;
  67.     uint16_t wBitsPerSample;
  68. } xa_header_t;
  69. /*****************************************************************************
  70.  * Open: check file and initializes structures
  71.  *****************************************************************************/
  72. static int Open( vlc_object_t * p_this )
  73. {
  74.     demux_t     *p_demux = (demux_t*)p_this;
  75.     demux_sys_t *p_sys;
  76.     xa_header_t p_xa;
  77.     const uint8_t *p_buf;
  78.     /* XA file heuristic */
  79.     if( stream_Peek( p_demux->s, &p_buf, sizeof( p_xa ) )
  80.             < (signed)sizeof( p_xa ) )
  81.         return VLC_EGENERIC;
  82.     memcpy( &p_xa, p_buf, sizeof( p_xa ) );
  83.     if( ( strncmp( p_xa.xa_id, "XAI", 4 )
  84.        && strncmp( p_xa.xa_id, "XAJ", 4 ) )
  85.      || ( GetWLE( &p_xa.wFormatTag  ) != 0x0001)
  86.      || ( GetWLE( &p_xa.wBitsPerSample ) != 16) )
  87.         return VLC_EGENERIC;
  88.     p_demux->pf_demux   = Demux;
  89.     p_demux->pf_control = Control;
  90.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  91.     p_sys->p_es         = NULL;
  92.     /* skip XA header -- cannot fail */
  93.     stream_Read( p_demux->s, NULL, sizeof( p_xa ) );
  94.     es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC('X','A','J',0) );
  95.     msg_Dbg( p_demux, "assuming EA ADPCM audio codec" );
  96.     p_sys->fmt.audio.i_rate = GetDWLE( &p_xa.nSamplesPerSec );
  97.     p_sys->fmt.audio.i_bytes_per_frame = 15 * GetWLE( &p_xa.nChannels );
  98.     p_sys->fmt.audio.i_frame_length = 28; /* 28 samples of 4 bits each */
  99.     p_sys->fmt.audio.i_channels = GetWLE ( &p_xa.nChannels );
  100.     p_sys->fmt.audio.i_blockalign = p_sys->fmt.audio.i_bytes_per_frame;
  101.     p_sys->fmt.audio.i_bitspersample = 16;
  102.     p_sys->fmt.i_bitrate = (p_sys->fmt.audio.i_rate
  103.                             * p_sys->fmt.audio.i_bytes_per_frame * 8)
  104.                             / p_sys->fmt.audio.i_frame_length;
  105.     p_sys->fmt.i_extra = 0;
  106.     p_sys->fmt.p_extra = NULL;
  107.     p_sys->i_data_offset = stream_Tell( p_demux->s );
  108.     /* FIXME: better computation */
  109.     p_sys->i_data_size = p_xa.iSize * 15 / 56;
  110.     msg_Dbg( p_demux, "fourcc: %4.4s, channels: %d, "
  111.              "freq: %d Hz, bitrate: %dKo/s, blockalign: %d",
  112.              (char *)&p_sys->fmt.i_codec, p_sys->fmt.audio.i_channels,
  113.              p_sys->fmt.audio.i_rate, p_sys->fmt.i_bitrate / 8192,
  114.              p_sys->fmt.audio.i_blockalign );
  115.     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
  116.     date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
  117.     date_Set( &p_sys->pts, 1 );
  118.     return VLC_SUCCESS;
  119. }
  120. /*****************************************************************************
  121.  * Demux: read packet and send them to decoders
  122.  *****************************************************************************
  123.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  124.  *****************************************************************************/
  125. static int Demux( demux_t *p_demux )
  126. {
  127.     demux_sys_t *p_sys = p_demux->p_sys;
  128.     block_t     *p_block;
  129.     int64_t     i_offset;
  130.     i_offset = stream_Tell( p_demux->s );
  131.     if( p_sys->i_data_size > 0 &&
  132.         i_offset >= p_sys->i_data_offset + p_sys->i_data_size )
  133.     {
  134.         /* EOF */
  135.         return 0;
  136.     }
  137.     p_block = stream_Block( p_demux->s, p_sys->fmt.audio.i_bytes_per_frame );
  138.     if( p_block == NULL )
  139.     {
  140.         msg_Warn( p_demux, "cannot read data" );
  141.         return 0;
  142.     }
  143.     p_block->i_dts = p_block->i_pts =
  144.         date_Increment( &p_sys->pts, p_sys->fmt.audio.i_frame_length );
  145.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  146.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  147.     return 1;
  148. }
  149. /*****************************************************************************
  150.  * Close: frees unused data
  151.  *****************************************************************************/
  152. static void Close ( vlc_object_t * p_this )
  153. {
  154.     demux_sys_t *p_sys  = ((demux_t *)p_this)->p_sys;
  155.     free( p_sys );
  156. }
  157. /*****************************************************************************
  158.  * Control:
  159.  *****************************************************************************/
  160. static int Control( demux_t *p_demux, int i_query, va_list args )
  161. {
  162.     demux_sys_t *p_sys  = p_demux->p_sys;
  163.     return demux_vaControlHelper( p_demux->s, p_sys->i_data_offset,
  164.                                    p_sys->i_data_size ? p_sys->i_data_offset
  165.                                    + p_sys->i_data_size : -1,
  166.                                    p_sys->fmt.i_bitrate,
  167.                                    p_sys->fmt.audio.i_blockalign,
  168.                                    i_query, args );
  169. }