Commit 3f74a523 authored by Carlo Calabrò's avatar Carlo Calabrò

String review, round three in advance :)

If you've got spare stuff to review, I'm free.
(FK, are you reviewing the KDE intf or shall I do it?)
parent 9f6cfbe9
......@@ -2,7 +2,7 @@
* copy.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: copy.c,v 1.21 2003/11/27 19:39:53 fenrir Exp $
* $Id: copy.c,v 1.22 2004/01/25 17:41:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
......@@ -38,7 +38,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin();
set_description( _("Copy packetizer") );
set_description( _("Copy Packetizer") );
set_capability( "packetizer", 1 );
set_callbacks( Open, Close );
vlc_module_end();
......@@ -177,7 +177,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l');
break;
default:
msg_Err( p_dec, "unknown raw audio sample size !!" );
msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC;
}
break;
......@@ -198,7 +198,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','b');
break;
default:
msg_Err( p_dec, "unknown raw audio sample size !!" );
msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC;
}
break;
......@@ -219,7 +219,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l');
break;
default:
msg_Err( p_dec, "unknown raw audio sample size !!" );
msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC;
}
break;
......
......@@ -2,7 +2,7 @@
* mpeg4audio.c: parse and packetize an MPEG 4 audio stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4audio.c,v 1.14 2003/12/22 02:24:53 sam Exp $
* $Id: mpeg4audio.c,v 1.15 2004/01/25 17:41:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
......@@ -113,7 +113,7 @@ static int ADTSSyncInfo( decoder_t *, const byte_t * p_buf,
* Module descriptor
*****************************************************************************/
vlc_module_begin();
set_description( _("MPEG4 audio packetizer") );
set_description( _("MPEG4 Audio Packetizer") );
set_capability( "packetizer", 50 );
set_callbacks( OpenPacketizer, ClosePacketizer );
vlc_module_end();
......@@ -151,7 +151,7 @@ static int OpenPacketizer( vlc_object_t *p_this )
/* Set callback */
p_dec->pf_packetize = PacketizeBlock;
msg_Info( p_dec, "Running MPEG4 audio packetizer" );
msg_Info( p_dec, "running MPEG4 audio packetizer" );
if( p_dec->fmt_in.i_extra > 0 )
{
......@@ -188,7 +188,7 @@ static int OpenPacketizer( vlc_object_t *p_this )
}
else
{
msg_Dbg( p_dec, "No decoder specific info, must be an ADTS stream" );
msg_Dbg( p_dec, "no decoder specific info, must be an ADTS stream" );
/* We will try to create a AAC Config from adts */
p_dec->fmt_out.i_extra = 0;
......
......@@ -2,7 +2,7 @@
* mpeg4video.c: mpeg 4 video packetizer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4video.c,v 1.22 2003/12/22 02:24:53 sam Exp $
* $Id: mpeg4video.c,v 1.23 2004/01/25 17:41:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
......@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin();
set_description( _("MPEG4 video packetizer") );
set_description( _("MPEG4 Video Packetizer") );
set_capability( "packetizer", 50 );
set_callbacks( Open, Close );
vlc_module_end();
......
......@@ -2,7 +2,7 @@
* mpegvideo.c: parse and packetize an MPEG1/2 video stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpegvideo.c,v 1.25 2003/12/07 12:11:13 gbazin Exp $
* $Id: mpegvideo.c,v 1.26 2004/01/25 17:41:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
......@@ -55,7 +55,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin();
set_description( _("MPEG-I/II video packetizer") );
set_description( _("MPEG-I/II Video Packetizer") );
set_capability( "packetizer", 50 );
set_callbacks( Open, Close );
vlc_module_end();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment