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 @@ ...@@ -2,7 +2,7 @@
* copy.c * copy.c
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * 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> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org> * Eric Petit <titer@videolan.org>
...@@ -38,7 +38,7 @@ static int Open ( vlc_object_t * ); ...@@ -38,7 +38,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
vlc_module_begin(); vlc_module_begin();
set_description( _("Copy packetizer") ); set_description( _("Copy Packetizer") );
set_capability( "packetizer", 1 ); set_capability( "packetizer", 1 );
set_callbacks( Open, Close ); set_callbacks( Open, Close );
vlc_module_end(); vlc_module_end();
...@@ -177,7 +177,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -177,7 +177,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l'); p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l');
break; break;
default: default:
msg_Err( p_dec, "unknown raw audio sample size !!" ); msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
break; break;
...@@ -198,7 +198,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -198,7 +198,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','b'); p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','b');
break; break;
default: default:
msg_Err( p_dec, "unknown raw audio sample size !!" ); msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
break; break;
...@@ -219,7 +219,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -219,7 +219,7 @@ static int Open( vlc_object_t *p_this )
p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l'); p_dec->fmt_out.i_codec = VLC_FOURCC('s','3','2','l');
break; break;
default: default:
msg_Err( p_dec, "unknown raw audio sample size !!" ); msg_Err( p_dec, "unknown raw audio sample size" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
break; break;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpeg4audio.c: parse and packetize an MPEG 4 audio stream * mpeg4audio.c: parse and packetize an MPEG 4 audio stream
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * 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> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com> * Gildas Bazin <gbazin@netcourrier.com>
...@@ -113,7 +113,7 @@ static int ADTSSyncInfo( decoder_t *, const byte_t * p_buf, ...@@ -113,7 +113,7 @@ static int ADTSSyncInfo( decoder_t *, const byte_t * p_buf,
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
vlc_module_begin(); vlc_module_begin();
set_description( _("MPEG4 audio packetizer") ); set_description( _("MPEG4 Audio Packetizer") );
set_capability( "packetizer", 50 ); set_capability( "packetizer", 50 );
set_callbacks( OpenPacketizer, ClosePacketizer ); set_callbacks( OpenPacketizer, ClosePacketizer );
vlc_module_end(); vlc_module_end();
...@@ -151,7 +151,7 @@ static int OpenPacketizer( vlc_object_t *p_this ) ...@@ -151,7 +151,7 @@ static int OpenPacketizer( vlc_object_t *p_this )
/* Set callback */ /* Set callback */
p_dec->pf_packetize = PacketizeBlock; 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 ) if( p_dec->fmt_in.i_extra > 0 )
{ {
...@@ -188,7 +188,7 @@ static int OpenPacketizer( vlc_object_t *p_this ) ...@@ -188,7 +188,7 @@ static int OpenPacketizer( vlc_object_t *p_this )
} }
else 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 */ /* We will try to create a AAC Config from adts */
p_dec->fmt_out.i_extra = 0; p_dec->fmt_out.i_extra = 0;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpeg4video.c: mpeg 4 video packetizer * mpeg4video.c: mpeg 4 video packetizer
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * 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> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org> * Eric Petit <titer@videolan.org>
...@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * ); ...@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
vlc_module_begin(); vlc_module_begin();
set_description( _("MPEG4 video packetizer") ); set_description( _("MPEG4 Video Packetizer") );
set_capability( "packetizer", 50 ); set_capability( "packetizer", 50 );
set_callbacks( Open, Close ); set_callbacks( Open, Close );
vlc_module_end(); vlc_module_end();
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpegvideo.c: parse and packetize an MPEG1/2 video stream * mpegvideo.c: parse and packetize an MPEG1/2 video stream
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * 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> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org> * Eric Petit <titer@videolan.org>
...@@ -55,7 +55,7 @@ static int Open ( vlc_object_t * ); ...@@ -55,7 +55,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
vlc_module_begin(); vlc_module_begin();
set_description( _("MPEG-I/II video packetizer") ); set_description( _("MPEG-I/II Video Packetizer") );
set_capability( "packetizer", 50 ); set_capability( "packetizer", 50 );
set_callbacks( Open, Close ); set_callbacks( Open, Close );
vlc_module_end(); 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