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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * rawaud.c : raw audio input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2009 the VideoLAN team
  5.  * $Id: c3ff27bc71c987865535e745f0b05e81afe36f91 $
  6.  *
  7.  * Authors: Jarmo Torvinen <jarmo.torvinen@jutel.fi>
  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. /*****************************************************************************
  33.  * Module descriptor
  34.  *****************************************************************************/
  35. static int  Open ( vlc_object_t * );
  36. static void Close( vlc_object_t * );
  37. #define SAMPLERATE_TEXT N_("Audio samplerate (Hz)")
  38. #define SAMPLERATE_LONGTEXT N_("Audio sample rate in Hertz. Default is 48000 Hz.")
  39. #define CHANNELS_TEXT N_("Audio channels")
  40. #define CHANNELS_LONGTEXT N_("Audio channels in input stream. Numeric value >0. Default is 2.")
  41. #define FOURCC_TEXT N_("FOURCC code of raw input format")
  42. #define FOURCC_LONGTEXT N_( 
  43.     "FOURCC code of the raw input format. This is a four character string." )
  44. #define LANG_TEXT N_("Forces the audio language.")
  45. #define LANG_LONGTEXT N_("Forces the audio language for the output mux. Three letter ISO639 code. Default is 'eng'. ")
  46. #ifdef WORDS_BIGENDIAN
  47. # define FOURCC_DEFAULT "s16b"
  48. #else
  49. # define FOURCC_DEFAULT "s16l"
  50. #endif
  51. vlc_module_begin();
  52.     set_shortname( "Raw Audio" );
  53.     set_description( N_("Raw audio demuxer") );
  54.     set_capability( "demux", 0 );
  55.     set_category( CAT_INPUT );
  56.     set_subcategory( SUBCAT_INPUT_DEMUX );
  57.     set_callbacks( Open, Close );
  58.     add_shortcut( "rawaud" );
  59.     add_integer( "rawaud-channels", 2, 0, CHANNELS_TEXT, CHANNELS_LONGTEXT, false );
  60.     add_integer( "rawaud-samplerate", 48000, 0, SAMPLERATE_TEXT, SAMPLERATE_LONGTEXT, false );
  61.     add_string( "rawaud-fourcc", FOURCC_DEFAULT, NULL,
  62.                 FOURCC_TEXT, FOURCC_LONGTEXT, false );
  63.     add_string( "rawaud-lang", "eng", NULL, LANG_TEXT, LANG_LONGTEXT, false);
  64. vlc_module_end();
  65. /*****************************************************************************
  66.  * Definitions of structures used by this plugin
  67.  *****************************************************************************/
  68. struct demux_sys_t
  69. {
  70.     es_out_id_t *p_es;
  71.     es_format_t  fmt;
  72.     unsigned int i_frame_size;
  73.     unsigned int i_frame_samples;
  74.     unsigned int i_seek_step;
  75.     date_t       pts;
  76. };
  77. /*****************************************************************************
  78.  * Local prototypes
  79.  *****************************************************************************/
  80. static int Demux( demux_t * );
  81. static int Control( demux_t *, int i_query, va_list args );
  82. /*****************************************************************************
  83.  * Open: initializes raw audio demuxer
  84.  *****************************************************************************/
  85. static int Open( vlc_object_t * p_this )
  86. {
  87.     demux_t     *p_demux = (demux_t*)p_this;
  88.     demux_sys_t *p_sys;
  89.     /* Set p_input field */
  90.     p_demux->pf_demux   = Demux;
  91.     p_demux->pf_control = Control;
  92.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  93.     if( !p_sys )
  94.         return VLC_ENOMEM;
  95.     es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
  96.     char *psz_fourcc = var_CreateGetString( p_demux, "rawaud-fourcc" );
  97.     if( ( psz_fourcc == NULL ?  0 : strlen( psz_fourcc ) ) != 4  )
  98.     {
  99.         msg_Err( p_demux, "rawaud-fourcc must be a 4 character string");
  100.         free( psz_fourcc );
  101.         es_format_Clean( &p_sys->fmt );
  102.         free( p_sys );
  103.         return VLC_EGENERIC;
  104.     }
  105.     p_sys->fmt.i_codec = VLC_FOURCC( psz_fourcc[0], psz_fourcc[1],
  106.                                      psz_fourcc[2], psz_fourcc[3] );
  107.     free( psz_fourcc );
  108.     // get the bits per sample ratio based on codec
  109.     switch( p_sys->fmt.i_codec )
  110.     {
  111.         case VLC_FOURCC( 'f', 'l', '6', '4' ):
  112.             p_sys->fmt.audio.i_bitspersample = 64;
  113.             break;
  114.         case VLC_FOURCC( 'f', 'l', '3', '2' ):
  115.         case VLC_FOURCC( 's', '3', '2', 'l' ):
  116.         case VLC_FOURCC( 's', '3', '2', 'b' ):
  117.         case VLC_FOURCC( 'i', 'n', '3', '2' ):
  118.             p_sys->fmt.audio.i_bitspersample = 32;
  119.             break;
  120.         case VLC_FOURCC( 's', '2', '4', 'l' ):
  121.         case VLC_FOURCC( 's', '2', '4', 'b' ):
  122.         case VLC_FOURCC( 'i', 'n', '2', '4' ):
  123.         case VLC_FOURCC( '4', '2', 'n', 'i' ):
  124.             p_sys->fmt.audio.i_bitspersample = 24;
  125.             break;
  126.         case VLC_FOURCC( 's', '1', '6', 'l' ):
  127.         case VLC_FOURCC( 's', '1', '6', 'b' ):
  128.             p_sys->fmt.audio.i_bitspersample = 16;
  129.             break;
  130.         case VLC_FOURCC( 's', '8', ' ', ' ' ):
  131.         case VLC_FOURCC( 'u', '8', ' ', ' ' ):
  132.             p_sys->fmt.audio.i_bitspersample = 8;
  133.             break;
  134.         default:
  135.             msg_Err( p_demux, "unknown fourcc format %4.4s",
  136.                      (char *)&p_sys->fmt.i_codec);
  137.             es_format_Clean( &p_sys->fmt );
  138.             free( p_sys );
  139.             return VLC_EGENERIC;
  140.     }
  141.     p_sys->fmt.psz_language = var_CreateGetString( p_demux, "rawaud-lang" );
  142.     p_sys->fmt.audio.i_channels = var_CreateGetInteger( p_demux, "rawaud-channels" );
  143.     p_sys->fmt.audio.i_rate = var_CreateGetInteger( p_demux, "rawaud-samplerate" );
  144.     if( p_sys->fmt.audio.i_rate <= 0 )
  145.     {
  146.       msg_Err( p_demux, "invalid sample rate");
  147.       es_format_Clean( &p_sys->fmt );
  148.       free( p_sys );
  149.       return VLC_EGENERIC;
  150.     }
  151.     if( p_sys->fmt.audio.i_channels <= 0 )
  152.     {
  153.       msg_Err( p_demux, "invalid number of channels");
  154.       es_format_Clean( &p_sys->fmt );
  155.       free( p_sys );
  156.       return VLC_EGENERIC;
  157.     }
  158.     p_sys->fmt.i_bitrate = p_sys->fmt.audio.i_rate *
  159.                            p_sys->fmt.audio.i_channels *
  160.                            p_sys->fmt.audio.i_bitspersample;
  161.     msg_Dbg( p_demux,
  162.      "format initialized: channels=%d , samplerate=%d Hz, fourcc=%4.4s, bits per sample = %d, bitrate = %d bit/s",
  163.      p_sys->fmt.audio.i_channels,
  164.      p_sys->fmt.audio.i_rate,
  165.      (char*)&p_sys->fmt.i_codec,
  166.      p_sys->fmt.audio.i_bitspersample,
  167.      p_sys->fmt.i_bitrate);
  168.     /* add the es */
  169.     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
  170.     msg_Dbg( p_demux, "elementary stream added");
  171.     /* initialize timing */
  172.     date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
  173.     date_Set( &p_sys->pts, 1 );
  174.     /* calculate 50ms frame size/time */
  175.     p_sys->i_frame_samples = __MAX( p_sys->fmt.audio.i_rate / 20, 1 );
  176.     p_sys->i_seek_step = p_sys->fmt.audio.i_channels *
  177.                           ( (p_sys->fmt.audio.i_bitspersample + 7) / 8 );
  178.     p_sys->i_frame_size = p_sys->i_frame_samples * p_sys->i_seek_step;
  179.     msg_Dbg( p_demux, "frame size is %d bytes ", p_sys->i_frame_size);
  180.     return VLC_SUCCESS;
  181. }
  182. /*****************************************************************************
  183.  * Close: frees unused data
  184.  *****************************************************************************/
  185. static void Close( vlc_object_t *p_this )
  186. {
  187.     demux_t     *p_demux = (demux_t*)p_this;
  188.     demux_sys_t *p_sys  = p_demux->p_sys;
  189.     es_format_Clean( &p_sys->fmt );
  190.     free( p_sys );
  191. }
  192. /*****************************************************************************
  193.  * Demux: reads and demuxes data packets
  194.  *****************************************************************************
  195.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  196.  *****************************************************************************/
  197. static int Demux( demux_t *p_demux )
  198. {
  199.     demux_sys_t *p_sys  = p_demux->p_sys;
  200.     block_t     *p_block;
  201.     if( ( p_block = stream_Block( p_demux->s, p_sys->i_frame_size ) ) == NULL )
  202.     {
  203.         /* EOF */
  204.         return 0;
  205.     }
  206.     p_block->i_dts =
  207.     p_block->i_pts = date_Increment( &p_sys->pts, p_sys->i_frame_samples );
  208.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  209.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  210.     return 1;
  211. }
  212. /*****************************************************************************
  213.  * Control:
  214.  *****************************************************************************/
  215. static int Control( demux_t *p_demux, int i_query, va_list args )
  216. {
  217.     demux_sys_t *p_sys  = p_demux->p_sys;
  218.     return demux_vaControlHelper( p_demux->s, 0, -1,
  219.                                    p_sys->fmt.i_bitrate, p_sys->i_seek_step, i_query, args );
  220. }