X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Frawaud.c;h=9dd6da644b8f0cc0c8670b799b8aaa6ecfbc3cb2;hb=bc53b5d44c9283b95000e711d861f1b983a24b01;hp=a9473a0606d41ee561fbef9a76684f94b901f20c;hpb=174f75debc6ff4b0b3a7037bc21e7b77bfe2a9d8;p=vlc diff --git a/modules/demux/rawaud.c b/modules/demux/rawaud.c index a9473a0606..9dd6da644b 100644 --- a/modules/demux/rawaud.c +++ b/modules/demux/rawaud.c @@ -1,24 +1,24 @@ /***************************************************************************** * rawaud.c : raw audio input module for vlc ***************************************************************************** - * Copyright (C) 2009 the VideoLAN team + * Copyright (C) 2009 VLC authors and VideoLAN * $Id$ * * Authors: Jarmo Torvinen * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -48,11 +48,17 @@ static void Close( vlc_object_t * ); #define FOURCC_TEXT N_("FOURCC code of raw input format") #define FOURCC_LONGTEXT N_( \ - "FOURCC code of the raw input format. This is a four character string. Default is s16l." ) + "FOURCC code of the raw input format. This is a four character string." ) -#define LANG_TEXT N_("Forces the audio language.") +#define LANG_TEXT N_("Forces the audio language") #define LANG_LONGTEXT N_("Forces the audio language for the output mux. Three letter ISO639 code. Default is 'eng'. ") +#ifdef WORDS_BIGENDIAN +# define FOURCC_DEFAULT "s16b" +#else +# define FOURCC_DEFAULT "s16l" +#endif + vlc_module_begin(); set_shortname( "Raw Audio" ); set_description( N_("Raw audio demuxer") ); @@ -61,10 +67,11 @@ vlc_module_begin(); set_subcategory( SUBCAT_INPUT_DEMUX ); set_callbacks( Open, Close ); add_shortcut( "rawaud" ); - add_integer( "rawaud-channels", 2, 0, CHANNELS_TEXT, CHANNELS_LONGTEXT, false ); - add_integer( "rawaud-samplerate", 48000, 0, SAMPLERATE_TEXT, SAMPLERATE_LONGTEXT, false ); - add_string( "rawaud-fourcc", "s16l", NULL, FOURCC_TEXT, FOURCC_LONGTEXT, false ); - add_string( "rawaud-lang", "eng", NULL, LANG_TEXT, LANG_LONGTEXT, false); + add_integer( "rawaud-channels", 2, CHANNELS_TEXT, CHANNELS_LONGTEXT, false ); + add_integer( "rawaud-samplerate", 48000, SAMPLERATE_TEXT, SAMPLERATE_LONGTEXT, false ); + add_string( "rawaud-fourcc", FOURCC_DEFAULT, + FOURCC_TEXT, FOURCC_LONGTEXT, false ); + add_string( "rawaud-lang", "eng", LANG_TEXT, LANG_LONGTEXT, false); vlc_module_end(); /***************************************************************************** @@ -96,9 +103,6 @@ static int Open( vlc_object_t * p_this ) demux_t *p_demux = (demux_t*)p_this; demux_sys_t *p_sys; - /* Set p_input field */ - p_demux->pf_demux = Demux; - p_demux->pf_control = Control; p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) ); if( !p_sys ) return VLC_ENOMEM; @@ -194,7 +198,7 @@ static int Open( vlc_object_t * p_this ) /* initialize timing */ date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 ); - date_Set( &p_sys->pts, 1 ); + date_Set( &p_sys->pts, 0 ); /* calculate 50ms frame size/time */ p_sys->i_frame_samples = __MAX( p_sys->fmt.audio.i_rate / 20, 1 ); @@ -203,6 +207,8 @@ static int Open( vlc_object_t * p_this ) p_sys->i_frame_size = p_sys->i_frame_samples * p_sys->i_seek_step; msg_Dbg( p_demux, "frame size is %d bytes ", p_sys->i_frame_size); + p_demux->pf_demux = Demux; + p_demux->pf_control = Control; return VLC_SUCCESS; } @@ -235,10 +241,13 @@ static int Demux( demux_t *p_demux ) } p_block->i_dts = - p_block->i_pts = date_Increment( &p_sys->pts, p_sys->i_frame_samples ); + p_block->i_pts = VLC_TS_0 + date_Get( &p_sys->pts ); es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts ); es_out_Send( p_demux->out, p_sys->p_es, p_block ); + + date_Increment( &p_sys->pts, p_sys->i_frame_samples ); + return 1; }