]> git.sesse.net Git - vlc/commitdiff
String review, round three in advance :)
authorCarlo Calabrò <murray@videolan.org>
Sun, 25 Jan 2004 17:41:30 +0000 (17:41 +0000)
committerCarlo Calabrò <murray@videolan.org>
Sun, 25 Jan 2004 17:41:30 +0000 (17:41 +0000)
If you've got spare stuff to review, I'm free.
(FK, are you reviewing the KDE intf or shall I do it?)

modules/packetizer/copy.c
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4video.c
modules/packetizer/mpegvideo.c

index 057e970c79e22b7554a525e63036d966fccc8d14..c1c8670351880591adb745fb61877037a26bd806 100644 (file)
@@ -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;
index 10928dffa49225ec998d12b491a4abe44ea6452e..c01785cde9a9db6a8b45d4c484d382630e3a4b38 100644 (file)
@@ -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;
index 73aa6052be026552b46deb4af31bdbee41ca2fbd..f5304dfde7bdc235a7a0bed06fafc736f5882ee7 100644 (file)
@@ -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();
index 0999f96a6a79a87ee9e41dac89262c9e38d716af..8dd35d6d6dc1409e686620eaee5b3dc30b19ceb6 100644 (file)
@@ -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();