]> git.sesse.net Git - vlc/commitdiff
* modules/*: sanitization of the modules description strings.
authorGildas Bazin <gbazin@videolan.org>
Sun, 30 Mar 2003 18:14:39 +0000 (18:14 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 30 Mar 2003 18:14:39 +0000 (18:14 +0000)
97 files changed:
modules/access/directory.c
modules/access/dvd/dvd.c
modules/access/dvdplay/dvd.c
modules/access/dvdread/dvdread.c
modules/access/file.c
modules/access/ftp.c
modules/access/http.c
modules/access/mms/mms.c
modules/access/satellite/satellite.c
modules/access/slp.c
modules/access/udp.c
modules/access/v4l/v4l.c
modules/access/vcd/vcd.c
modules/audio_filter/converter/a52tofloat32.c
modules/audio_filter/converter/mpgatofixed32.c
modules/audio_mixer/float32.c
modules/audio_mixer/spdif.c
modules/audio_mixer/trivial.c
modules/audio_output/alsa.c
modules/audio_output/arts.c
modules/audio_output/directx.c
modules/audio_output/esd.c
modules/audio_output/file.c
modules/audio_output/oss.c
modules/audio_output/sdl.c
modules/audio_output/waveout.c
modules/codec/faad/decoder.c
modules/codec/ffmpeg/postprocessing/postprocessing.c
modules/codec/flacdec.c
modules/codec/libmpeg2.c
modules/codec/mpeg_video/idct/idct.c
modules/codec/mpeg_video/idct/idctaltivec.c
modules/codec/mpeg_video/idct/idctclassic.c
modules/codec/mpeg_video/idct/idctmmx.c
modules/codec/mpeg_video/idct/idctmmxext.c
modules/codec/mpeg_video/motion/motion.c
modules/codec/mpeg_video/motion/motion3dnow.c
modules/codec/mpeg_video/motion/motionaltivec.c
modules/codec/mpeg_video/motion/motionmmx.c
modules/codec/mpeg_video/motion/motionmmxext.c
modules/codec/mpeg_video/parser.c
modules/codec/spudec/spudec.c
modules/codec/theora.c
modules/codec/vorbis.c
modules/control/gestures.c
modules/control/lirc/lirc.c
modules/control/rc/rc.c
modules/demux/aac/demux.c
modules/demux/avi/avi.c
modules/demux/demuxdump.c
modules/demux/mpeg/audio.c
modules/demux/mpeg/m4v.c
modules/demux/ogg.c
modules/demux/rawdv.c
modules/gui/beos/BeOS.cpp
modules/gui/familiar/familiar.c
modules/gui/gtk/gnome.c
modules/gui/gtk/gtk.c
modules/gui/gtk2/gnome2.c
modules/gui/gtk2/gtk2.c
modules/gui/kde/kde.cpp
modules/gui/macosx/macosx.m
modules/gui/ncurses/ncurses.c
modules/gui/qnx/qnx.c
modules/gui/qt/qt.cpp
modules/gui/skins/src/skin_main.cpp
modules/gui/win32/win32.cpp
modules/misc/dummy/dummy.c
modules/misc/gtk_main.c
modules/misc/logger/logger.c
modules/misc/memcpy/memcpy.c
modules/misc/memcpy/memcpyaltivec.c
modules/misc/qte_main.cpp
modules/misc/sap.c
modules/misc/screensaver.c
modules/video_filter/clone.c
modules/video_filter/crop.c
modules/video_filter/deinterlace/deinterlace.c
modules/video_filter/distort.c
modules/video_filter/invert.c
modules/video_filter/motionblur.c
modules/video_filter/transform.c
modules/video_filter/wall.c
modules/video_output/aa.c
modules/video_output/directx/directx.c
modules/video_output/encoder.c
modules/video_output/fb.c
modules/video_output/glide.c
modules/video_output/mga/mga.c
modules/video_output/mga/xmga.c
modules/video_output/qte/qte.cpp
modules/video_output/sdl.c
modules/video_output/svgalib.c
modules/video_output/wingdi.c
modules/video_output/x11/x11.c
modules/video_output/x11/xvideo.c
modules/visualization/xosd/xosd.c

index ce08002bac3f3b407aa0152b7252b48aa6375f4b..3f2d7d795d1073216d030bd951d8542ee74aaf71 100644 (file)
@@ -2,7 +2,7 @@
  * directory.c: expands a directory (directory: access plug-in)
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: directory.c,v 1.3 2003/03/24 17:15:29 gbazin Exp $
+ * $Id: directory.c,v 1.4 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  *
@@ -79,7 +79,7 @@ static ssize_t Read   ( input_thread_t *, byte_t *, size_t );
  *****************************************************************************/
 
 vlc_module_begin();
-    set_description( _("Standard filesystem directory reading") );
+    set_description( _("Standard filesystem directory input") );
     set_capability( "access", 55 );
     add_shortcut( "directory" );
     add_shortcut( "dir" );
index a1b217e2995b216210197dfcc44a3efd0f4c63f3..6115e524e5e0f28d3d3c172e25048be98d89cfb2 100644 (file)
@@ -2,7 +2,7 @@
  * dvd.c : DVD input module for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: dvd.c,v 1.5 2003/02/20 01:52:45 sigmunau Exp $
+ * $Id: dvd.c,v 1.6 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -88,13 +88,14 @@ vlc_module_begin();
     add_string_from_list( "dvdcss-method", NULL, cssmethod_list, NULL,
                           CSSMETHOD_TEXT, CSSMETHOD_LONGTEXT, VLC_TRUE );
 #ifdef GOD_DAMN_DMCA
-    set_description( _("DVD input module, uses libdvdcss if installed") );
+    set_description( _("DVD input (uses libdvdcss if installed)") );
     i = 90;
 #else
-    set_description( _("DVD input module, uses libdvdcss") );
+    set_description( _("DVD input (uses libdvdcss)") );
     i = 100;
 #endif
     add_shortcut( "dvdold" );
+    add_shortcut( "dvdsimple" );
     add_submodule();
         set_capability( "access", i );
         set_callbacks( E_(DVDOpen), E_(DVDClose) );
index a2f6e45147f21592e8571e131f66b8a6827f742a..936a99e8001f85d6b61f142bb55fb96958b8f1dc 100644 (file)
@@ -7,7 +7,7 @@
  *****************************************************************************
  *    
  * Copyright (C) 2001 VideoLAN
- * $Id: dvd.c,v 1.4 2003/03/30 11:54:29 sigmunau Exp $
+ * $Id: dvd.c,v 1.5 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -49,7 +49,7 @@ void E_(CloseIntf) ( vlc_object_t * );
  *****************************************************************************/
 vlc_module_begin();
     add_usage_hint( N_("[dvdplay:][device][@[title][,[chapter][,angle]]]") );
-    set_description( _("dvdplay input module") );
+    set_description( _("DVD input with menus support") );
     add_submodule();
         set_capability( "access", 120 );
         set_callbacks( E_(OpenDVD), E_(CloseDVD) );
index 5d48f3ddba91e53ca8bdb16d050e73f1848c06d3..cf79cb95aa3d69b8d4775f5c39da80018ff527f5 100644 (file)
@@ -2,7 +2,7 @@
  * dvdread.c : DvdRead input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: dvdread.c,v 1.5 2003/03/29 13:15:33 sigmunau Exp $
+ * $Id: dvdread.c,v 1.6 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -42,7 +42,7 @@ void E_(EndDVD)    ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("DVDRead input module") );
+    set_description( _("DVD input (using libdvdread)") );
     add_submodule();
         set_capability( "access", 110 );
         set_callbacks( E_(OpenDVD), E_(CloseDVD) );
index 98553b64a88c2a06ac463d540fd31b12f12013db..61214ab285d59bd8d4d59c40236729ea2e9f2c11 100644 (file)
@@ -2,7 +2,7 @@
  * file.c: file input (file: access plug-in)
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: file.c,v 1.14 2003/03/24 17:15:29 gbazin Exp $
+ * $Id: file.c,v 1.15 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -72,7 +72,7 @@ static ssize_t Read   ( input_thread_t *, byte_t *, size_t );
     "value should be set in miliseconds units." )
 
 vlc_module_begin();
-    set_description( _("Standard filesystem file reading") );
+    set_description( _("Standard filesystem file input") );
     add_category_hint( N_("file"), NULL, VLC_TRUE );
     add_integer( "file-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
     set_capability( "access", 50 );
index 7f8ee4ef62f1475f4822bcef3017d4e8483773ae..6120fe95f2ceb0e30defc12d51488ccfc7ae85a4 100644 (file)
@@ -2,7 +2,7 @@
  * ftp.c:
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: ftp.c,v 1.13 2003/03/24 23:04:07 gbazin Exp $
+ * $Id: ftp.c,v 1.14 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -89,7 +89,7 @@ static int  ftp_StopStream ( input_thread_t *);
     "value should be set in miliseconds units." )
 
 vlc_module_begin();
-    set_description( _("ftp access module") );
+    set_description( _("FTP input") );
     set_capability( "access", 0 );
     add_category_hint( "stream", NULL, VLC_FALSE );
         add_integer( "ftp-caching", 2 * DEFAULT_PTS_DELAY / 1000, NULL,
index e244dfd434bef24d82f718edf423b9746facbea5..4fb998cf2cda3215415a011b71dd0e410988aeb3 100644 (file)
@@ -2,7 +2,7 @@
  * http.c: HTTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: http.c,v 1.31 2003/03/24 23:04:07 gbazin Exp $
+ * $Id: http.c,v 1.32 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -86,7 +86,7 @@ vlc_module_begin();
     add_category_hint( N_("http"), NULL, VLC_FALSE );
     add_string( "http-proxy", NULL, NULL, PROXY_TEXT, PROXY_LONGTEXT, VLC_FALSE );
     add_integer( "http-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
-    set_description( _("HTTP access module") );
+    set_description( _("HTTP input") );
     set_capability( "access", 0 );
     add_shortcut( "http" );
     add_shortcut( "http4" );
index 002d20df06fd12635a5ad8bfdb118fb0a386432f..e9b9983a198f038324f798a68dd55fd5b4aacfae 100644 (file)
@@ -2,7 +2,7 @@
  * mms.c: MMS access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: mms.c,v 1.30 2003/03/24 20:00:51 gbazin Exp $
+ * $Id: mms.c,v 1.31 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -132,7 +132,7 @@ static void mms_ParseURL( url_t *p_url, char *psz_url );
     "value should be set in miliseconds units." )
 
 vlc_module_begin();
-    set_description( _("MMS access module") );
+    set_description( _("Microsoft Media Server (MMS) input") );
     set_capability( "access", 0 );
     add_category_hint( "stream", NULL, VLC_TRUE );
         add_integer( "mms-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
index 4b59acd4cf0f496b403b5ad6c264325c0fae4783..a0e328a36b513250193bcb232672fcf145bb406c 100644 (file)
@@ -78,7 +78,7 @@ vlc_module_begin();
                      LNB_LOF2_TEXT, LNB_LOF2_LONGTEXT, VLC_FALSE );
         add_integer( "lnb-slof", 11700, NULL,
                      LNB_SLOF_TEXT, LNB_SLOF_LONGTEXT, VLC_FALSE );
-    set_description( _("satellite input module") );
+    set_description( _("satellite input") );
     set_capability( "access", 0 );
     add_shortcut( "sat" );
     set_callbacks( E_(Open), E_(Close) );
index 8fb92dbae277813ea0a0bdd4e1d1cb0e3d3f71e8..dc034fc3ed86d43b1591e143b9040ddaf841412a 100644 (file)
@@ -2,7 +2,7 @@
  * slp.c: SLP access plugin
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: slp.c,v 1.9 2003/03/24 17:15:29 gbazin Exp $
+ * $Id: slp.c,v 1.10 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Loïc Minier <lool@videolan.org>
  *
@@ -75,7 +75,7 @@ static int  Demux ( input_thread_t * );
                       "default locale; it is used in all SLP queries"
 
 vlc_module_begin();
-    set_description( _("SLP access module") );
+    set_description( _("SLP input") );
     add_category_hint( N_("slp"), NULL, VLC_TRUE );
     add_string( "slp-attrids", "", NULL, ATTRIDS_TEXT, ATTRIDS_LONGTEXT, VLC_TRUE );
     add_string( "slp-scopelist", "", NULL, SCOPELIST_TEXT,
index f40804b0858bfffcf866fa0019a212c0d159ff8a..88848881a3712d136e2c3589636e8ad579817dd2 100644 (file)
@@ -2,7 +2,7 @@
  * udp.c: raw UDP & RTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: udp.c,v 1.18 2003/03/24 20:00:51 gbazin Exp $
+ * $Id: udp.c,v 1.19 2003/03/30 18:14:35 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Tristan Leteurtre <tooney@via.ecp.fr>
@@ -75,7 +75,7 @@ static ssize_t RTPChoose( input_thread_t *, byte_t *, size_t );
     "value should be set in miliseconds units." )
 
 vlc_module_begin();
-    set_description( _("raw UDP access module") );
+    set_description( _("UDP/RTP input") );
     add_category_hint( N_("udp"), NULL , VLC_TRUE );
     add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
     set_capability( "access", 0 );
index 0a1d203e0b47058b3f044ee0ac2d3249fc15c0f1..882e3bf81d67f20c2aa6e8996b88ca8691cfdc9b 100644 (file)
@@ -2,7 +2,7 @@
  * v4l.c : Video4Linux input module for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: v4l.c,v 1.3 2003/03/24 17:15:30 gbazin Exp $
+ * $Id: v4l.c,v 1.4 2003/03/30 18:14:36 gbazin Exp $
  *
  * Author: Samuel Hocevar <sam@zoy.org>
  *
@@ -42,7 +42,7 @@ static int  V4lRead  ( input_thread_t *, byte_t *, size_t );
  * Module descriptior
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Video4Linux input module") );
+    set_description( _("Video4Linux input") );
     set_capability( "access", 80 );
     set_callbacks( V4lOpen, V4lClose );
 vlc_module_end();
index 3a7257adbbc10e2a3cba1909cc660a877c85b05c..e092ddb5c455fb7c918241a4f401b617e73f4c27 100644 (file)
@@ -2,7 +2,7 @@
  * vcd.c : VCD input module for vlc
  *****************************************************************************
  * Copyright (C) 2000 VideoLAN
- * $Id: vcd.c,v 1.17 2003/03/24 17:15:30 gbazin Exp $
+ * $Id: vcd.c,v 1.18 2003/03/30 18:14:36 gbazin Exp $
  *
  * Author: Johan Bilien <jobi@via.ecp.fr>
  *
@@ -76,7 +76,7 @@ static int  VCDEntryPoints  ( input_thread_t * );
  * Module descriptior
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("VCD input module") );
+    set_description( _("VCD input") );
     set_capability( "access", 80 );
     set_callbacks( VCDOpen, VCDClose );
     add_shortcut( "svcd" );
index f476dead1f9b4334f5bbc79fa048378913877b06..b621f589b7b0023ae7d0db44eb7a8c17cf220c87 100644 (file)
@@ -4,7 +4,7 @@
  *   (http://liba52.sf.net/).
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: a52tofloat32.c,v 1.14 2003/02/24 17:06:21 jlj Exp $
+ * $Id: a52tofloat32.c,v 1.15 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *          Christophe Massiot <massiot@via.ecp.fr>
@@ -84,7 +84,7 @@ struct aout_filter_sys_t
 vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_bool( "a52-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE );
-    set_description( _("ATSC A/52 aka AC-3 audio decoder module") );
+    set_description( _("ATSC A/52 aka AC-3 audio decoder") );
     set_capability( "audio filter", 100 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index 728ceeb4d9502be999f14cd0913fff9e434e29c4..ece292b9f25f49bfc28fabfdfbc8e1e4801aa8e3 100644 (file)
@@ -3,7 +3,7 @@
  * using MAD (MPEG Audio Decoder)
  *****************************************************************************
  * Copyright (C) 2001 by Jean-Paul Saman
- * $Id: mpgatofixed32.c,v 1.7 2003/02/21 16:31:37 hartman Exp $
+ * $Id: mpgatofixed32.c,v 1.8 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Jean-Paul Saman <jpsaman@wxs.nl>
@@ -58,7 +58,7 @@ struct aout_filter_sys_t
  *****************************************************************************/
 vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_TRUE );
-    set_description( _("MPEG audio decoder module") );
+    set_description( _("MPEG audio decoder") );
     set_capability( "audio filter", 100 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index a9e7084d32891d9b9c016ef475aa102c1ba4fcd8..3e93914b9077a5f59eedcf7a4df03e98817bff55 100644 (file)
@@ -2,7 +2,7 @@
  * float32.c : precise float32 audio mixer implementation
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: float32.c,v 1.8 2002/11/20 16:43:33 sam Exp $
+ * $Id: float32.c,v 1.9 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -42,7 +42,7 @@ static void DoWork    ( aout_instance_t *, aout_buffer_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("float32 audio mixer module") );
+    set_description( _("float32 audio mixer") );
     set_capability( "audio mixer", 10 );
     set_callbacks( Create, NULL );
 vlc_module_end();
index 1ac2cad76762446326e9c44c3cdafc29a60542bd..b32359bbdfb23a6b69f17a5501a40f70d757bee1 100644 (file)
@@ -2,7 +2,7 @@
  * spdif.c : dummy mixer for S/PDIF output (1 input only)
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: spdif.c,v 1.8 2002/11/20 16:43:33 sam Exp $
+ * $Id: spdif.c,v 1.9 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -42,7 +42,7 @@ static void DoWork    ( aout_instance_t *, aout_buffer_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("dummy spdif audio mixer module") );
+    set_description( _("dummy spdif audio mixer") );
     set_capability( "audio mixer", 1 );
     set_callbacks( Create, NULL );
 vlc_module_end();
index 8a160768afcf6700c1f67ac7ee36bdc8aa17a16f..d8213216bf5bae2442deeef0431f5fbd42dab6c5 100644 (file)
@@ -2,7 +2,7 @@
  * trivial.c : trivial mixer plug-in (1 input, no downmixing)
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: trivial.c,v 1.11 2002/11/20 16:43:33 sam Exp $
+ * $Id: trivial.c,v 1.12 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -42,7 +42,7 @@ static void DoWork    ( aout_instance_t *, aout_buffer_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("trivial audio mixer module") );
+    set_description( _("trivial audio mixer") );
     set_capability( "audio mixer", 1 );
     set_callbacks( Create, NULL );
 vlc_module_end();
index c6771df1c4baed96f767a0dab98d5257ae5ecb23..18af114502e63608e117444e4aaf2855bfc1be8e 100644 (file)
@@ -2,7 +2,7 @@
  * alsa.c : alsa plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: alsa.c,v 1.24 2003/02/20 16:07:38 gbazin Exp $
+ * $Id: alsa.c,v 1.25 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Henri Fallon <henri@videolan.org> - Original Author
  *          Jeffrey Baker <jwbaker@acm.org> - Port to ALSA 1.0 API
@@ -91,7 +91,7 @@ vlc_module_begin();
     add_category_hint( N_("ALSA"), NULL, VLC_FALSE );
     add_string( "alsadev", DEFAULT_ALSA_DEVICE, aout_FindAndRestart,
                 N_("ALSA device name"), NULL, VLC_FALSE );
-    set_description( _("ALSA audio module") );
+    set_description( _("ALSA audio output") );
     set_capability( "audio output", 50 );
     set_callbacks( Open, Close );
 vlc_module_end();
index ec0ecdff5e1109ab3dcf92f71786e5cd86988064..c5fa937f33e235328ea91d4e4ebe96d1d0c86d70 100644 (file)
@@ -2,7 +2,7 @@
  * arts.c : aRts module
  *****************************************************************************
  * Copyright (C) 2001-2002 VideoLAN
- * $Id: arts.c,v 1.17 2003/01/29 09:54:45 sam Exp $
+ * $Id: arts.c,v 1.18 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Emmanuel Blindauer <manu@agat.net>
  *          Samuel Hocevar <sam@zoy.org>
@@ -63,7 +63,7 @@ static void Play         ( aout_instance_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-   set_description( _("aRts audio module") );
+   set_description( _("aRts audio output") );
    set_capability( "audio output", 50 );
    set_callbacks( Open, Close );
 vlc_module_end();
index d94d2c799232c5fd4f9c8b7a79b30ad7340adc3e..dc980ff3e6dd271a44d56a95e62520790d272af3 100644 (file)
@@ -2,7 +2,7 @@
  * directx.c: Windows DirectX audio output method
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: directx.c,v 1.15 2003/03/03 14:21:08 gbazin Exp $
+ * $Id: directx.c,v 1.16 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -212,7 +212,7 @@ static void InterleaveS16     ( int16_t *, int16_t *, int *, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("DirectX audio module") );
+    set_description( _("DirectX audio output") );
     set_capability( "audio output", 100 );
     add_shortcut( "directx" );
     set_callbacks( OpenAudio, CloseAudio );
index 272cd558d87a2d02ecdf4d5b60f70992baf8a335..85b63dc18da0d1e7ab0cfdbfe35ffcc03bcc1d5a 100644 (file)
@@ -2,7 +2,7 @@
  * esd.c : EsounD module
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: esd.c,v 1.17 2003/01/28 22:52:30 sam Exp $
+ * $Id: esd.c,v 1.18 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -61,7 +61,7 @@ static void Play         ( aout_instance_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("EsounD audio module") );
+    set_description( _("EsounD audio output") );
     set_capability( "audio output", 50 );
     set_callbacks( Open, Close );
     add_shortcut( "esound" );
index 96e2abe7a78e0a6f9835602130da5ec3a684c9fa..d2828b87f815e9acdd1126ce142c593da3840914 100644 (file)
@@ -2,7 +2,7 @@
  * file.c : audio output which writes the samples to a file
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: file.c,v 1.19 2003/03/30 14:24:20 gbazin Exp $
+ * $Id: file.c,v 1.20 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Gildas Bazin <gbazin@netcourrier.com>
@@ -111,7 +111,7 @@ vlc_module_begin();
     add_file( "audiofile", "audiofile.wav", NULL, FILE_TEXT,
               FILE_LONGTEXT, VLC_FALSE );
     add_bool( "audiofile-wav", 1, NULL, WAV_TEXT, WAV_LONGTEXT, VLC_TRUE );
-    set_description( N_("file audio output module") );
+    set_description( N_("file audio output") );
     set_capability( "audio output", 0 );
     add_shortcut( "file" );
     add_shortcut( "audiofile" );
index 0e9618c8b2878d91d54106403bd306dcc2329dee..33ac431f45076e560c03bf4f9974445f6186cb0f 100644 (file)
@@ -2,7 +2,7 @@
  * oss.c : OSS /dev/dsp module for vlc
  *****************************************************************************
  * Copyright (C) 2000-2002 VideoLAN
- * $Id: oss.c,v 1.54 2003/03/10 10:41:22 massiot Exp $
+ * $Id: oss.c,v 1.55 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -110,7 +110,7 @@ vlc_module_begin();
     add_file( "dspdev", "/dev/dsp", aout_FindAndRestart,
               N_("OSS dsp device"), NULL, VLC_FALSE );
     add_bool( "oss-buggy", 0, NULL, BUGGY_TEXT, BUGGY_LONGTEXT, VLC_TRUE );
-    set_description( _("Linux OSS /dev/dsp module") );
+    set_description( _("Linux OSS audio output") );
     set_capability( "audio output", 100 );
     add_shortcut( "oss" );
     set_callbacks( Open, Close );
index 2bff198612338c1faa6550ecc2a93ceaf363b857..6e70aefee4beeb81cfe559883a01edfbcff12fb2 100644 (file)
@@ -2,7 +2,7 @@
  * sdl.c : SDL audio output plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2002 VideoLAN
- * $Id: sdl.c,v 1.20 2003/01/13 16:58:58 massiot Exp $
+ * $Id: sdl.c,v 1.21 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -65,7 +65,7 @@ static void SDLCallback ( void *, byte_t *, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Simple DirectMedia Layer audio module") );
+    set_description( _("Simple DirectMedia Layer audio output") );
     set_capability( "audio output", 40 );
     add_shortcut( "sdl" );
     set_callbacks( Open, Close );
index a0b4c1e455114bec4dc1bfc66bd70ca7153892cf..2e241b20f9001ce6e6541661470eac9496268251 100644 (file)
@@ -2,7 +2,7 @@
  * waveout.c : Windows waveOut plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: waveout.c,v 1.20 2003/03/28 17:02:25 gbazin Exp $
+ * $Id: waveout.c,v 1.21 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *      
@@ -127,7 +127,7 @@ static void InterleaveS16( int16_t *, int *, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Win32 waveOut extension module") );
+    set_description( _("Win32 waveOut extension output") );
     set_capability( "audio output", 50 );
     set_callbacks( Open, Close );
 vlc_module_end();
index 03915a2899a2f498c1c1c1771d1daad2f0a5c5ed..528714416f044052efed4aaeada565d1885a9b5f 100644 (file)
@@ -2,7 +2,7 @@
  * decoder.c: AAC decoder using libfaad2
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: decoder.c,v 1.21 2003/01/28 16:57:28 sam Exp $
+ * $Id: decoder.c,v 1.22 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -52,7 +52,7 @@ static void EndThread      ( adec_thread_t * );
  *****************************************************************************/
 
 vlc_module_begin();
-    set_description( _("AAC decoder module (libfaad2)") );
+    set_description( _("AAC audio decoder (using libfaad2)") );
     set_capability( "decoder", 60 );
     set_callbacks( OpenDecoder, NULL );
 vlc_module_end();
index 0c1e932341136bbd3bf2df411b7850082c8c779c..dc2871c0b91a1a3d5ea15dd792ed713c76ef6346 100644 (file)
@@ -2,7 +2,7 @@
  * postprocessing.c
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: postprocessing.c,v 1.2 2002/08/08 22:28:22 sam Exp $
+ * $Id: postprocessing.c,v 1.3 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -46,16 +46,16 @@ static int pp_postprocess( picture_t *,
  *****************************************************************************/
 vlc_module_begin();
 #ifdef MODULE_NAME_IS_postprocessing_c
-    set_description( _("C Post Processing module") );
+    set_description( _("C Post Processing") );
     set_capability( "postprocessing", 50 );
     add_shortcut( "c" );
 #elif defined( MODULE_NAME_IS_postprocessing_mmx )
-    set_description( _("MMX Post Processing module") );
+    set_description( _("MMX Post Processing") );
     set_capability( "postprocessing", 100 );
     add_requirement( MMX );
     add_shortcut( "mmx" );
 #elif defined( MODULE_NAME_IS_postprocessing_mmxext )
-    set_description( _("MMXEXT Post Processing module") );
+    set_description( _("MMXEXT Post Processing") );
     set_capability( "postprocessing", 150 );
     add_requirement( MMXEXT );
     add_shortcut( "mmxext" );
index 540730027ee94a423d0288d45525665fc8856f9f..3b846cf73db719d0e524e5a34dd10755567fecf4 100644 (file)
@@ -2,7 +2,7 @@
  * flac.c: flac decoder module making use of libflac
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: flacdec.c,v 1.1 2003/02/23 16:31:48 sigmunau Exp $
+ * $Id: flacdec.c,v 1.2 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -104,7 +104,7 @@ static void decoder_state_error( dec_thread_t *p_dec, FLAC__StreamDecoderState s
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("flac decoder module") );
+    set_description( _("flac audio decoder") );
     set_capability( "decoder", 100 );
     set_callbacks( OpenDecoder, NULL );
 vlc_module_end();
index 875cf0d4be4ff57b1d546654f3d9afd2938840ee..80d33e0dd6cf1b1b97ca198c39781c56dd1e1c30 100755 (executable)
-/*****************************************************************************\r
- * libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.\r
- *****************************************************************************\r
- * Copyright (C) 1999-2001 VideoLAN\r
- * $Id: libmpeg2.c,v 1.5 2003/03/26 22:56:39 gbazin Exp $\r
- *\r
- * Authors: Gildas Bazin <gbazin@netcourrier.com>\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- * \r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
- *****************************************************************************/\r
-\r
-/*****************************************************************************\r
- * Preamble\r
- *****************************************************************************/\r
-#include <vlc/vlc.h>\r
-#include <vlc/vout.h>\r
-#include <vlc/input.h>\r
-#include <vlc/decoder.h>\r
-\r
-#include <stdlib.h>                                      /* malloc(), free() */\r
-#include <string.h>                                    /* memcpy(), memset() */\r
-\r
-#include <mpeg2dec/mpeg2.h>\r
-\r
-/* Aspect ratio (ISO/IEC 13818-2 section 6.3.3, table 6-3) */\r
-#define AR_SQUARE_PICTURE       1                           /* square pixels */\r
-#define AR_3_4_PICTURE          2                        /* 3:4 picture (TV) */\r
-#define AR_16_9_PICTURE         3              /* 16:9 picture (wide screen) */\r
-#define AR_221_1_PICTURE        4                  /* 2.21:1 picture (movie) */\r
-\r
-/*****************************************************************************\r
- * dec_thread_t : libmpeg2 decoder thread descriptor\r
- *****************************************************************************/\r
-typedef struct dec_thread_t\r
-{\r
-    /*\r
-     * libmpeg2 properties\r
-     */\r
-    mpeg2dec_t          *p_mpeg2dec;\r
-    const mpeg2_info_t  *p_info;\r
-\r
-    /*\r
-     * Input properties\r
-     */\r
-    decoder_fifo_t   *p_fifo;                  /* stores the PES stream data */\r
-    pes_packet_t     *p_pes;                  /* current PES we are decoding */\r
-    mtime_t          i_pts;\r
-    mtime_t          i_previous_pts;\r
-    mtime_t          i_current_pts;\r
-    mtime_t          i_period_remainder;\r
-\r
-    /*\r
-     * Output properties\r
-     */\r
-    vout_thread_t *p_vout;\r
-\r
-} dec_thread_t;\r
-\r
-/*****************************************************************************\r
- * Local prototypes\r
- *****************************************************************************/\r
-static int  OpenDecoder  ( vlc_object_t * );\r
-static int  RunDecoder   ( decoder_fifo_t * );\r
-static void CloseDecoder ( dec_thread_t * );\r
-\r
-/*****************************************************************************\r
- * Module descriptor\r
- *****************************************************************************/\r
-vlc_module_begin();\r
-    set_description( _("libmpeg2 decoder module") );\r
-    set_capability( "decoder", 40 );\r
-    set_callbacks( OpenDecoder, NULL );\r
-    add_shortcut( "libmpeg2" );\r
-vlc_module_end();\r
-\r
-/*****************************************************************************\r
- * OpenDecoder: probe the decoder and return score\r
- *****************************************************************************/\r
-static int OpenDecoder( vlc_object_t *p_this )\r
-{\r
-    decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;\r
-\r
-    if( p_fifo->i_fourcc != VLC_FOURCC('m','p','g','v') )\r
-    {\r
-        return VLC_EGENERIC;\r
-    }\r
-\r
-    p_fifo->pf_run = RunDecoder;\r
-    return VLC_SUCCESS;\r
-}\r
-/*****************************************************************************\r
- * RunDecoder: the libmpeg2 decoder\r
- *****************************************************************************/\r
-static int RunDecoder( decoder_fifo_t *p_fifo )\r
-{\r
-    dec_thread_t    *p_dec;\r
-    data_packet_t   *p_data = NULL;\r
-    mpeg2_state_t   state;\r
-    picture_t       *p_pic;\r
-    int             i_aspect, i_chroma;\r
-\r
-    /* Allocate the memory needed to store the thread's structure */\r
-    if( (p_dec = (dec_thread_t *)malloc (sizeof(dec_thread_t)) )\r
-        == NULL)\r
-    {\r
-        msg_Err( p_fifo, "out of memory" );\r
-        goto error;\r
-    }\r
-\r
-    /* Initialize the thread properties */\r
-    memset( p_dec, 0, sizeof(dec_thread_t) );\r
-    p_dec->p_fifo     = p_fifo;\r
-    p_dec->p_pes      = NULL;\r
-    p_dec->p_vout     = NULL;\r
-    p_dec->p_mpeg2dec = NULL;\r
-    p_dec->p_info     = NULL;\r
-    p_dec->i_pts      = mdate() + DEFAULT_PTS_DELAY;\r
-    p_dec->i_current_pts  = 0;\r
-    p_dec->i_previous_pts = 0;\r
-    p_dec->i_period_remainder = 0;\r
-\r
-    /* Initialize decoder */\r
-    p_dec->p_mpeg2dec = mpeg2_init();\r
-    if( p_dec->p_mpeg2dec == NULL)\r
-        goto error;\r
-\r
-    p_dec->p_info = mpeg2_info( p_dec->p_mpeg2dec );\r
-\r
-    /* libmpeg2 decoder thread's main loop */\r
-    while( (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error) )\r
-    {\r
-        state = mpeg2_parse( p_dec->p_mpeg2dec );\r
-\r
-        switch( state )\r
-        {\r
-        case STATE_BUFFER:\r
-            /* Feed libmpeg2 a data packet at a time */\r
-            if( p_data == NULL )\r
-            {\r
-                /* Get the next PES */\r
-                if( p_dec->p_pes )\r
-                    input_DeletePES( p_dec->p_fifo->p_packets_mgt,\r
-                                     p_dec->p_pes );\r
-\r
-                input_ExtractPES( p_dec->p_fifo, &p_dec->p_pes );\r
-                if( !p_dec->p_pes )\r
-                {\r
-                    p_dec->p_fifo->b_error = 1;\r
-                    break;\r
-                }\r
-\r
-                if( p_dec->p_pes->i_pts )\r
-                {\r
-                    mpeg2_pts( p_dec->p_mpeg2dec,\r
-                               (uint32_t)p_dec->p_pes->i_pts );\r
-                    p_dec->i_previous_pts = p_dec->i_current_pts;\r
-                    p_dec->i_current_pts = p_dec->p_pes->i_pts;\r
-                }\r
-                p_data = p_dec->p_pes->p_first;\r
-            }\r
-\r
-            if( p_data != NULL )\r
-            {\r
-                mpeg2_buffer( p_dec->p_mpeg2dec,\r
-                              p_data->p_payload_start,\r
-                              p_data->p_payload_end );\r
-\r
-                p_data = p_data->p_next;\r
-            }\r
-            break;\r
-\r
-        case STATE_SEQUENCE:\r
-            /* Initialize video output */\r
-\r
-            /* Check whether the input gives a particular aspect ratio */\r
-            if( p_dec->p_fifo->p_demux_data\r
-                && ( *(int*)(p_dec->p_fifo->p_demux_data) & 0x7 ) )\r
-            {\r
-                i_aspect = *(int*)(p_dec->p_fifo->p_demux_data);\r
-                switch( i_aspect )\r
-                {\r
-                case AR_3_4_PICTURE:\r
-                    i_aspect = VOUT_ASPECT_FACTOR * 4 / 3;\r
-                    break;\r
-                case AR_16_9_PICTURE:\r
-                    i_aspect = VOUT_ASPECT_FACTOR * 16 / 9;\r
-                    break;\r
-                case AR_221_1_PICTURE:\r
-                    i_aspect = VOUT_ASPECT_FACTOR * 221 / 100;\r
-                    break;\r
-                case AR_SQUARE_PICTURE:\r
-                default:\r
-                    i_aspect = VOUT_ASPECT_FACTOR *\r
-                                   p_dec->p_info->sequence->width /\r
-                                   p_dec->p_info->sequence->height;\r
-                    break;\r
-                }\r
-            }\r
-            else\r
-            {\r
-                /* Use the value provided in the MPEG sequence header */\r
-                i_aspect = ((uint64_t)p_dec->p_info->sequence->width) *\r
-                    p_dec->p_info->sequence->pixel_width * VOUT_ASPECT_FACTOR /\r
-                    p_dec->p_info->sequence->height /\r
-                    p_dec->p_info->sequence->pixel_height;\r
-            }\r
-\r
-            i_chroma = VLC_FOURCC('Y','V','1','2');\r
-\r
-            p_dec->p_vout = vout_Request( p_dec->p_fifo, p_dec->p_vout,\r
-                                          p_dec->p_info->sequence->width,\r
-                                          p_dec->p_info->sequence->height,\r
-                                          i_chroma, i_aspect );\r
-            break;\r
-\r
-        case STATE_PICTURE:\r
-        {\r
-            uint8_t *buf[3];\r
-\r
-            /* Get a new picture */\r
-            while( !(p_pic = vout_CreatePicture( p_dec->p_vout, 0, 0, 0 ) ) )\r
-            {\r
-                if( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error )\r
-                    break;\r
-\r
-                msleep( VOUT_OUTMEM_SLEEP );\r
-            }\r
-            if( p_pic == NULL )\r
-                break;\r
-\r
-            buf[0] = p_pic->p[0].p_pixels;\r
-            buf[1] = p_pic->p[1].p_pixels;\r
-            buf[2] = p_pic->p[2].p_pixels;\r
-            mpeg2_set_buf( p_dec->p_mpeg2dec, buf, p_pic );\r
-\r
-            /* Store the date for the picture */\r
-            if( p_dec->p_info->current_picture->flags & PIC_FLAG_PTS )\r
-            {\r
-                p_pic->date = ( p_dec->p_info->current_picture->pts ==\r
-                                (uint32_t)p_dec->i_current_pts ) ?\r
-                              p_dec->i_current_pts : p_dec->i_previous_pts;\r
-            }\r
-        }\r
-        break;\r
-\r
-        case STATE_END:\r
-        case STATE_SLICE:\r
-            if( p_dec->p_info->display_fbuf\r
-                && p_dec->p_info->display_fbuf->id )\r
-            {\r
-                p_pic = (picture_t *)p_dec->p_info->display_fbuf->id;\r
-\r
-                /* Date the new picture */\r
-                if( p_dec->p_info->display_picture->flags & PIC_FLAG_PTS )\r
-                {\r
-                    p_dec->i_pts = p_pic->date;\r
-                    p_dec->i_period_remainder = 0;\r
-                }\r
-                else\r
-                {\r
-                    p_dec->i_pts += ( (p_dec->p_info->sequence->frame_period +\r
-                                       p_dec->i_period_remainder) / 27 );\r
-                    p_dec->i_period_remainder =\r
-                        p_dec->p_info->sequence->frame_period +\r
-                        p_dec->i_period_remainder -\r
-                        ( p_dec->p_info->sequence->frame_period +\r
-                          p_dec->i_period_remainder ) / 27 * 27;\r
-                }\r
-                vout_DatePicture( p_dec->p_vout, p_pic, p_dec->i_pts );\r
-\r
-                vout_DisplayPicture( p_dec->p_vout, p_pic );\r
-\r
-                /* Handle pulldown by adding some delay to the pts of the next\r
-                 * picture. */\r
-                if( p_dec->p_info->display_picture->nb_fields > 2 )\r
-                {\r
-                    int i_repeat_fields =\r
-                        p_dec->p_info->display_picture->nb_fields - 2;\r
-\r
-                    p_dec->i_pts += ( (p_dec->p_info->sequence->frame_period +\r
-                                       p_dec->i_period_remainder)\r
-                                      / 27 / 2 * i_repeat_fields );\r
-                    p_dec->i_period_remainder =\r
-                        p_dec->p_info->sequence->frame_period +\r
-                        p_dec->i_period_remainder -\r
-                        ( p_dec->p_info->sequence->frame_period +\r
-                          p_dec->i_period_remainder ) / 27 / 2 * 27 * 2;\r
-                }\r
-            }\r
-            break;\r
-\r
-        default:\r
-            break;\r
-        }\r
-    }\r
-\r
-    /* If b_error is set, the libmpeg2 decoder thread enters the error loop */\r
-    if( p_dec->p_fifo->b_error )\r
-    {\r
-        DecoderError( p_dec->p_fifo );\r
-    }\r
-\r
-    /* End of the libmpeg2 decoder thread */\r
-    CloseDecoder( p_dec );\r
-\r
-    return 0;\r
-\r
- error:\r
-    DecoderError( p_fifo );\r
-    if( p_dec )\r
-    {\r
-        if( p_dec->p_fifo )\r
-            p_dec->p_fifo->b_error = 1;\r
-\r
-        /* End of the libmpeg2 decoder thread */\r
-        CloseDecoder( p_dec );\r
-    }\r
-\r
-    return -1;\r
-}\r
-\r
-/*****************************************************************************\r
- * CloseDecoder: libmpeg2 decoder destruction\r
- *****************************************************************************/\r
-static void CloseDecoder( dec_thread_t * p_dec )\r
-{\r
-    if( p_dec )\r
-    {\r
-        if( p_dec->p_pes )\r
-            input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_dec->p_pes );\r
-\r
-        vout_Request( p_dec->p_fifo, p_dec->p_vout, 0, 0, 0, 0 );\r
-\r
-        if( p_dec->p_mpeg2dec ) mpeg2_close( p_dec->p_mpeg2dec );\r
-\r
-        free( p_dec );\r
-    }\r
-}\r
+/*****************************************************************************
+ * libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
+ *****************************************************************************
+ * Copyright (C) 1999-2001 VideoLAN
+ * $Id: libmpeg2.c,v 1.6 2003/03/30 18:14:36 gbazin Exp $
+ *
+ * Authors: Gildas Bazin <gbazin@netcourrier.com>
+ *
+ * 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
+ * (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.
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Preamble
+ *****************************************************************************/
+#include <vlc/vlc.h>
+#include <vlc/vout.h>
+#include <vlc/input.h>
+#include <vlc/decoder.h>
+
+#include <stdlib.h>                                      /* malloc(), free() */
+#include <string.h>                                    /* memcpy(), memset() */
+
+#include <mpeg2dec/mpeg2.h>
+
+/* Aspect ratio (ISO/IEC 13818-2 section 6.3.3, table 6-3) */
+#define AR_SQUARE_PICTURE       1                           /* square pixels */
+#define AR_3_4_PICTURE          2                        /* 3:4 picture (TV) */
+#define AR_16_9_PICTURE         3              /* 16:9 picture (wide screen) */
+#define AR_221_1_PICTURE        4                  /* 2.21:1 picture (movie) */
+
+/*****************************************************************************
+ * dec_thread_t : libmpeg2 decoder thread descriptor
+ *****************************************************************************/
+typedef struct dec_thread_t
+{
+    /*
+     * libmpeg2 properties
+     */
+    mpeg2dec_t          *p_mpeg2dec;
+    const mpeg2_info_t  *p_info;
+
+    /*
+     * Input properties
+     */
+    decoder_fifo_t   *p_fifo;                  /* stores the PES stream data */
+    pes_packet_t     *p_pes;                  /* current PES we are decoding */
+    mtime_t          i_pts;
+    mtime_t          i_previous_pts;
+    mtime_t          i_current_pts;
+    mtime_t          i_period_remainder;
+
+    /*
+     * Output properties
+     */
+    vout_thread_t *p_vout;
+
+} dec_thread_t;
+
+/*****************************************************************************
+ * Local prototypes
+ *****************************************************************************/
+static int  OpenDecoder  ( vlc_object_t * );
+static int  RunDecoder   ( decoder_fifo_t * );
+static void CloseDecoder ( dec_thread_t * );
+
+/*****************************************************************************
+ * Module descriptor
+ *****************************************************************************/
+vlc_module_begin();
+    set_description( _("MPEG I/II video decoder (using libmpeg2)") );
+    set_capability( "decoder", 40 );
+    set_callbacks( OpenDecoder, NULL );
+    add_shortcut( "libmpeg2" );
+vlc_module_end();
+
+/*****************************************************************************
+ * OpenDecoder: probe the decoder and return score
+ *****************************************************************************/
+static int OpenDecoder( vlc_object_t *p_this )
+{
+    decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
+
+    if( p_fifo->i_fourcc != VLC_FOURCC('m','p','g','v') )
+    {
+        return VLC_EGENERIC;
+    }
+
+    p_fifo->pf_run = RunDecoder;
+    return VLC_SUCCESS;
+}
+/*****************************************************************************
+ * RunDecoder: the libmpeg2 decoder
+ *****************************************************************************/
+static int RunDecoder( decoder_fifo_t *p_fifo )
+{
+    dec_thread_t    *p_dec;
+    data_packet_t   *p_data = NULL;
+    mpeg2_state_t   state;
+    picture_t       *p_pic;
+    int             i_aspect, i_chroma;
+
+    /* Allocate the memory needed to store the thread's structure */
+    if( (p_dec = (dec_thread_t *)malloc (sizeof(dec_thread_t)) )
+        == NULL)
+    {
+        msg_Err( p_fifo, "out of memory" );
+        goto error;
+    }
+
+    /* Initialize the thread properties */
+    memset( p_dec, 0, sizeof(dec_thread_t) );
+    p_dec->p_fifo     = p_fifo;
+    p_dec->p_pes      = NULL;
+    p_dec->p_vout     = NULL;
+    p_dec->p_mpeg2dec = NULL;
+    p_dec->p_info     = NULL;
+    p_dec->i_pts      = mdate() + DEFAULT_PTS_DELAY;
+    p_dec->i_current_pts  = 0;
+    p_dec->i_previous_pts = 0;
+    p_dec->i_period_remainder = 0;
+
+    /* Initialize decoder */
+    p_dec->p_mpeg2dec = mpeg2_init();
+    if( p_dec->p_mpeg2dec == NULL)
+        goto error;
+
+    p_dec->p_info = mpeg2_info( p_dec->p_mpeg2dec );
+
+    /* libmpeg2 decoder thread's main loop */
+    while( (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error) )
+    {
+        state = mpeg2_parse( p_dec->p_mpeg2dec );
+
+        switch( state )
+        {
+        case STATE_BUFFER:
+            /* Feed libmpeg2 a data packet at a time */
+            if( p_data == NULL )
+            {
+                /* Get the next PES */
+                if( p_dec->p_pes )
+                    input_DeletePES( p_dec->p_fifo->p_packets_mgt,
+                                     p_dec->p_pes );
+
+                input_ExtractPES( p_dec->p_fifo, &p_dec->p_pes );
+                if( !p_dec->p_pes )
+                {
+                    p_dec->p_fifo->b_error = 1;
+                    break;
+                }
+
+                if( p_dec->p_pes->i_pts )
+                {
+                    mpeg2_pts( p_dec->p_mpeg2dec,
+                               (uint32_t)p_dec->p_pes->i_pts );
+                    p_dec->i_previous_pts = p_dec->i_current_pts;
+                    p_dec->i_current_pts = p_dec->p_pes->i_pts;
+                }
+                p_data = p_dec->p_pes->p_first;
+            }
+
+            if( p_data != NULL )
+            {
+                mpeg2_buffer( p_dec->p_mpeg2dec,
+                              p_data->p_payload_start,
+                              p_data->p_payload_end );
+
+                p_data = p_data->p_next;
+            }
+            break;
+
+        case STATE_SEQUENCE:
+            /* Initialize video output */
+
+            /* Check whether the input gives a particular aspect ratio */
+            if( p_dec->p_fifo->p_demux_data
+                && ( *(int*)(p_dec->p_fifo->p_demux_data) & 0x7 ) )
+            {
+                i_aspect = *(int*)(p_dec->p_fifo->p_demux_data);
+                switch( i_aspect )
+                {
+                case AR_3_4_PICTURE:
+                    i_aspect = VOUT_ASPECT_FACTOR * 4 / 3;
+                    break;
+                case AR_16_9_PICTURE:
+                    i_aspect = VOUT_ASPECT_FACTOR * 16 / 9;
+                    break;
+                case AR_221_1_PICTURE:
+                    i_aspect = VOUT_ASPECT_FACTOR * 221 / 100;
+                    break;
+                case AR_SQUARE_PICTURE:
+                default:
+                    i_aspect = VOUT_ASPECT_FACTOR *
+                                   p_dec->p_info->sequence->width /
+                                   p_dec->p_info->sequence->height;
+                    break;
+                }
+            }
+            else
+            {
+                /* Use the value provided in the MPEG sequence header */
+                i_aspect = ((uint64_t)p_dec->p_info->sequence->width) *
+                    p_dec->p_info->sequence->pixel_width * VOUT_ASPECT_FACTOR /
+                    p_dec->p_info->sequence->height /
+                    p_dec->p_info->sequence->pixel_height;
+            }
+
+            i_chroma = VLC_FOURCC('Y','V','1','2');
+
+            p_dec->p_vout = vout_Request( p_dec->p_fifo, p_dec->p_vout,
+                                          p_dec->p_info->sequence->width,
+                                          p_dec->p_info->sequence->height,
+                                          i_chroma, i_aspect );
+            break;
+
+        case STATE_PICTURE:
+        {
+            uint8_t *buf[3];
+
+            /* Get a new picture */
+            while( !(p_pic = vout_CreatePicture( p_dec->p_vout, 0, 0, 0 ) ) )
+            {
+                if( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error )
+                    break;
+
+                msleep( VOUT_OUTMEM_SLEEP );
+            }
+            if( p_pic == NULL )
+                break;
+
+            buf[0] = p_pic->p[0].p_pixels;
+            buf[1] = p_pic->p[1].p_pixels;
+            buf[2] = p_pic->p[2].p_pixels;
+            mpeg2_set_buf( p_dec->p_mpeg2dec, buf, p_pic );
+
+            /* Store the date for the picture */
+            if( p_dec->p_info->current_picture->flags & PIC_FLAG_PTS )
+            {
+                p_pic->date = ( p_dec->p_info->current_picture->pts ==
+                                (uint32_t)p_dec->i_current_pts ) ?
+                              p_dec->i_current_pts : p_dec->i_previous_pts;
+            }
+        }
+        break;
+
+        case STATE_END:
+        case STATE_SLICE:
+            if( p_dec->p_info->display_fbuf
+                && p_dec->p_info->display_fbuf->id )
+            {
+                p_pic = (picture_t *)p_dec->p_info->display_fbuf->id;
+
+                /* Date the new picture */
+                if( p_dec->p_info->display_picture->flags & PIC_FLAG_PTS )
+                {
+                    p_dec->i_pts = p_pic->date;
+                    p_dec->i_period_remainder = 0;
+                }
+                else
+                {
+                    p_dec->i_pts += ( (p_dec->p_info->sequence->frame_period +
+                                       p_dec->i_period_remainder) / 27 );
+                    p_dec->i_period_remainder =
+                        p_dec->p_info->sequence->frame_period +
+                        p_dec->i_period_remainder -
+                        ( p_dec->p_info->sequence->frame_period +
+                          p_dec->i_period_remainder ) / 27 * 27;
+                }
+                vout_DatePicture( p_dec->p_vout, p_pic, p_dec->i_pts );
+
+                vout_DisplayPicture( p_dec->p_vout, p_pic );
+
+                /* Handle pulldown by adding some delay to the pts of the next
+                 * picture. */
+                if( p_dec->p_info->display_picture->nb_fields > 2 )
+                {
+                    int i_repeat_fields =
+                        p_dec->p_info->display_picture->nb_fields - 2;
+
+                    p_dec->i_pts += ( (p_dec->p_info->sequence->frame_period +
+                                       p_dec->i_period_remainder)
+                                      / 27 / 2 * i_repeat_fields );
+                    p_dec->i_period_remainder =
+                        p_dec->p_info->sequence->frame_period +
+                        p_dec->i_period_remainder -
+                        ( p_dec->p_info->sequence->frame_period +
+                          p_dec->i_period_remainder ) / 27 / 2 * 27 * 2;
+                }
+            }
+            break;
+
+        default:
+            break;
+        }
+    }
+
+    /* If b_error is set, the libmpeg2 decoder thread enters the error loop */
+    if( p_dec->p_fifo->b_error )
+    {
+        DecoderError( p_dec->p_fifo );
+    }
+
+    /* End of the libmpeg2 decoder thread */
+    CloseDecoder( p_dec );
+
+    return 0;
+
+ error:
+    DecoderError( p_fifo );
+    if( p_dec )
+    {
+        if( p_dec->p_fifo )
+            p_dec->p_fifo->b_error = 1;
+
+        /* End of the libmpeg2 decoder thread */
+        CloseDecoder( p_dec );
+    }
+
+    return -1;
+}
+
+/*****************************************************************************
+ * CloseDecoder: libmpeg2 decoder destruction
+ *****************************************************************************/
+static void CloseDecoder( dec_thread_t * p_dec )
+{
+    if( p_dec )
+    {
+        if( p_dec->p_pes )
+            input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_dec->p_pes );
+
+        vout_Request( p_dec->p_fifo, p_dec->p_vout, 0, 0, 0, 0 );
+
+        if( p_dec->p_mpeg2dec ) mpeg2_close( p_dec->p_mpeg2dec );
+
+        free( p_dec );
+    }
+}
index 11164ece989a8dacdac96b8a784f4361e3c46704..36237a0dd438d3c6e07d8de1647c3bc259daac58 100644 (file)
@@ -2,7 +2,7 @@
  * idct.c : C IDCT module
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: idct.c,v 1.2 2002/11/20 13:37:35 sam Exp $
+ * $Id: idct.c,v 1.3 2003/03/30 18:14:36 gbazin Exp $
  *
  * Author: Gaël Hendryckx <jimmy@via.ecp.fr>
  *
@@ -38,7 +38,7 @@ static int Open( vlc_object_t *p_this );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("IDCT module") );
+    set_description( _("IDCT") );
     set_capability( "idct", 50 );
     add_shortcut( "c" );
     set_callbacks( Open, NULL );
index 4041d61a8b3cb64e70ba33a8f28e218380d67cf8..ff8b219e3a5cb2bcae5b888e6ad1a4e9a4f1705f 100644 (file)
@@ -2,7 +2,7 @@
  * idctaltivec.c : AltiVec IDCT module
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: idctaltivec.c,v 1.2 2002/10/20 12:23:47 massiot Exp $
+ * $Id: idctaltivec.c,v 1.3 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Michel Lespinasse <walken@zoy.org>
  *
@@ -42,7 +42,7 @@ static int Open( vlc_object_t *p_this );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("AltiVec IDCT module") );
+    set_description( _("AltiVec IDCT") );
     set_capability( "idct", 200 );
     add_shortcut( "altivec" );
     add_requirement( ALTIVEC );
index 8dac31d01cbe77c0bde4bbc96f22444afd2f3482..f95da2f9a91b44a23141b3a3ffbd45087b050fa7 100644 (file)
@@ -2,7 +2,7 @@
  * idctclassic.c : Classic IDCT module
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: idctclassic.c,v 1.1 2002/08/04 17:23:42 sam Exp $
+ * $Id: idctclassic.c,v 1.2 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gaël Hendryckx <jimmy@via.ecp.fr>
  *
@@ -38,7 +38,7 @@ static int Open( vlc_object_t *p_this );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("classic IDCT module") );
+    set_description( _("classic IDCT") );
     set_capability( "idct", 100 );
     add_shortcut( "classic" );
     set_callbacks( Open, NULL );
index 4529ff3acd7a0b5e692b264b603049bd84c3ece3..f3fdfabd1c547d8c89d2c8b1e713720922667eea 100644 (file)
@@ -2,7 +2,7 @@
  * idctmmx.c : MMX IDCT module
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: idctmmx.c,v 1.3 2002/08/08 22:28:22 sam Exp $
+ * $Id: idctmmx.c,v 1.4 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -44,7 +44,7 @@ static int Open( vlc_object_t *p_this );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MMX IDCT module") );
+    set_description( _("MMX IDCT") );
     set_capability( "idct", 150 );
     add_shortcut( "mmx" );
     add_requirement( MMX );
index 13781bcb8aa5fecf34207891bd39fe71e9bed712..a25011dd151a6ead06fcb31ff95e203fe4d92307 100644 (file)
@@ -2,7 +2,7 @@
  * idctmmxext.c : MMX EXT IDCT module
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: idctmmxext.c,v 1.3 2002/08/08 22:28:22 sam Exp $
+ * $Id: idctmmxext.c,v 1.4 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -44,7 +44,7 @@ static int Open( vlc_object_t *p_this );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MMX EXT IDCT module") );
+    set_description( _("MMX EXT IDCT") );
     set_capability( "idct", 200 );
     add_shortcut( "mmxext" );
     add_requirement( MMXEXT );
index b53c6c79362ac2813105511cfc98c01520ef8dc8..72a862c41b51fdb10469a533a6e67162bb950252 100644 (file)
@@ -2,7 +2,7 @@
  * motion.c : C motion compensation module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: motion.c,v 1.2 2002/08/08 00:35:11 sam Exp $
+ * $Id: motion.c,v 1.3 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -39,7 +39,7 @@ static int Open ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("motion compensation module") );
+    set_description( _("motion compensation") );
     set_capability( "motion compensation", 50 );
     add_shortcut( "c" );
     set_callbacks( Open, NULL );
index c83b4a88ecbe6c9e40e5aa87132726d097d116b6..6f59fe061b715ecad73b3dd1ce04497a1e8b51e2 100644 (file)
@@ -2,7 +2,7 @@
  * motion3dnow.c : 3D Now! motion compensation module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: motion3dnow.c,v 1.1 2002/08/04 17:23:42 sam Exp $
+ * $Id: motion3dnow.c,v 1.2 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("3D Now! motion compensation module") );
+    set_description( _("3D Now! motion compensation") );
     set_capability( "motion compensation", 150 );
     add_requirement( 3DNOW );
     add_shortcut( "3dn" );
index 1ea055e51de2e9be53cfaa6e8836ccb09b3f16fc..734068d937513f9c2b5412d107c76d99613252fd 100644 (file)
@@ -2,7 +2,7 @@
  * motionaltivec.c : AltiVec motion compensation module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: motionaltivec.c,v 1.1 2002/08/04 17:23:42 sam Exp $
+ * $Id: motionaltivec.c,v 1.2 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Michel Lespinasse <walken@zoy.org>
  *          Paul Mackerras <paulus@linuxcare.com.au>
@@ -44,7 +44,7 @@ static int Open ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("AltiVec motion compensation module") );
+    set_description( _("AltiVec motion compensation") );
     set_capability( "motion compensation", 150 );
     add_requirement( ALTIVEC );
     add_shortcut( "altivec" );
index 72a53d2cdd48e91df0a038ee630b0ae565f39539..4b38895cc129ce7fa1787504d4062ad5f0041a62 100644 (file)
@@ -2,7 +2,7 @@
  * motionmmx.c : MMX motion compensation module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: motionmmx.c,v 1.2 2002/08/08 00:35:11 sam Exp $
+ * $Id: motionmmx.c,v 1.3 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -42,7 +42,7 @@ static int Open ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MMX motion compensation module") );
+    set_description( _("MMX motion compensation") );
     set_capability( "motion compensation", 150 );
     add_requirement( MMX );
     add_shortcut( "mmx" );
index 93dc5d2968e3647d9254fe52cd6ee6ccc3cf2734..f867791071db0fce4cc9dbeb6da692456cc417fb 100644 (file)
@@ -2,7 +2,7 @@
  * motionmmxext.c : MMX EXT motion compensation module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: motionmmxext.c,v 1.2 2002/08/08 00:35:11 sam Exp $
+ * $Id: motionmmxext.c,v 1.3 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MMX EXT motion compensation module") );
+    set_description( _("MMX EXT motion compensation") );
     set_capability( "motion compensation", 200 );
     add_requirement( MMXEXT );
     add_shortcut( "mmxext" );
index 4295ebd95dd711894cdb1e3e8038aa1f343b20d8..4074f498657581a77a11e03ae04fe29fef3c78c7 100644 (file)
@@ -2,7 +2,7 @@
  * video_parser.c : video parser thread
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: parser.c,v 1.11 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: parser.c,v 1.12 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Samuel Hocevar <sam@via.ecp.fr>
@@ -89,7 +89,7 @@ vlc_module_begin();
     add_integer ( "vdec-smp", 0, NULL, VDEC_SMP_TEXT, VDEC_SMP_LONGTEXT, VLC_TRUE );
     add_string  ( "vpar-synchro", NULL, NULL, VPAR_SYNCHRO_TEXT,
                   VPAR_SYNCHRO_LONGTEXT, VLC_TRUE );
-    set_description( _("MPEG I/II video decoder module") );
+    set_description( _("MPEG I/II video decoder") );
     set_capability( "decoder", 50 );
     set_callbacks( OpenDecoder, NULL );
 vlc_module_end();
index c4208f1caad5bac7817fc6c1ae1951efbb50a45c..05b4197ec51c4eb5230b17f510bc00e5bc84dc88 100644 (file)
@@ -2,7 +2,7 @@
  * spudec.c : SPU decoder thread
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: spudec.c,v 1.16 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: spudec.c,v 1.17 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -62,7 +62,7 @@ vlc_module_begin();
     add_file( "spudec-font", "share/" DEFAULT_FONT, NULL,
               FONT_TEXT, FONT_LONGTEXT, VLC_TRUE );
 #endif
-    set_description( _("subtitles decoder module") );
+    set_description( _("subtitles decoder") );
     set_capability( "decoder", 50 );
     set_callbacks( OpenDecoder, NULL );
 vlc_module_end();
index 64c7b42a5abe570a291ce5c855bdd46ee712823a..cd53dfc5002b3781d77c9b94970b1e38b78b77cf 100644 (file)
@@ -2,7 +2,7 @@
  * theora.c: theora decoder module making use of libtheora.
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: theora.c,v 1.3 2002/11/28 21:00:48 gbazin Exp $
+ * $Id: theora.c,v 1.4 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -81,7 +81,7 @@ static void theora_CopyPicture( dec_thread_t *, picture_t *, yuv_buffer * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Theora decoder module") );
+    set_description( _("Theora video decoder") );
     set_capability( "decoder", 100 );
     set_callbacks( OpenDecoder, NULL );
     add_shortcut( "theora" );
index fbb139e686e22745c41e741bd6179f4dc126dad5..84e4ea9d18a8168c8bf5a7b9032e1ba443735084 100644 (file)
@@ -2,7 +2,7 @@
  * vorbis.c: vorbis decoder module making use of libvorbis.
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: vorbis.c,v 1.15 2003/03/14 00:24:08 sigmunau Exp $
+ * $Id: vorbis.c,v 1.16 2003/03/30 18:14:36 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -109,7 +109,7 @@ static void Interleave   ( float *, const float **, int, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Vorbis decoder module") );
+    set_description( _("Vorbis audio decoder") );
 #ifdef MODULE_NAME_IS_tremor
     set_capability( "decoder", 90 );
 #else
index 149206f25b5a8c17b1033d02714863ca3014e502..729bacb542f1f24d9ddae4660c96acfbf958c3c4 100644 (file)
@@ -2,7 +2,7 @@
  * geatures.c: control vlc with mouse gestures
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: gestures.c,v 1.3 2003/03/08 01:55:28 sigmunau Exp $
+ * $Id: gestures.c,v 1.4 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -90,7 +90,7 @@ vlc_module_begin();
     add_integer( "gestures-threshold", 30, NULL, THRESHOLD_TEXT, THRESHOLD_LONGTEXT, VLC_TRUE );
     add_string_from_list( "gestures-button", "right", button_list, NULL,
                           BUTTON_TEXT, BUTTON_LONGTEXT, VLC_FALSE );
-    set_description( _("mouse gestures control module") );
+    set_description( _("mouse gestures control interface") );
 
     set_capability( "interface", 0 );
     set_callbacks( E_(Open), E_(Close) );
index 2c70e5d39b23409dd39e67e12c1c642333901ce2..03edd6278ccfb430d2f8274275b33eec120ba04c 100644 (file)
@@ -2,7 +2,7 @@
  * lirc.c : lirc plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: lirc.c,v 1.5 2003/03/23 16:38:40 sigmunau Exp $
+ * $Id: lirc.c,v 1.6 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -61,7 +61,7 @@ static void Feedback( intf_thread_t *, char * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("infrared remote control module") );
+    set_description( _("infrared remote control interface") );
     set_capability( "interface", 0 );
     set_callbacks( Open, Close );
 vlc_module_end();
index bdfbc230ad8446d2cb71e82f771cfe9cad305b0f..5b6bf8cbb4f12521f3c15ef8aa5a56364e632e97 100644 (file)
@@ -2,7 +2,7 @@
  * rc.c : remote control stdin/stdout plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: rc.c,v 1.29 2003/03/03 14:21:08 gbazin Exp $
+ * $Id: rc.c,v 1.30 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
  *
@@ -86,7 +86,7 @@ vlc_module_begin();
 #ifdef HAVE_ISATTY
     add_bool( "fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, VLC_TRUE );
 #endif
-    set_description( _("remote control interface module") );
+    set_description( _("remote control interface") );
     set_capability( "interface", 20 );
     set_callbacks( Activate, NULL );
 vlc_module_end();
index 37c5b7b34c65f5fe9bf2a4550d93253927a6ec16..52a44ef94fc80aa65c64847da814dd1ca13416ac 100644 (file)
@@ -2,7 +2,7 @@
  * demux.c : Raw aac Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: demux.c,v 1.6 2003/03/14 00:24:07 sigmunau Exp $
+ * $Id: demux.c,v 1.7 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -43,7 +43,7 @@ static void Deactivate  ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("AAC stream demux" ) );
+    set_description( _("AAC stream demuxer" ) );
     set_capability( "demux", 0 );
     set_callbacks( Activate, NULL );
     add_shortcut( "aac" );
index d2b36c0a8ae7e50bc794b3c071ceffbee4bee72e..d2dee7a17b46a74fabe6e16a9022586ee0644295 100644 (file)
@@ -2,7 +2,7 @@
  * avi.c : AVI file Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: avi.c,v 1.41 2003/03/14 00:24:07 sigmunau Exp $
+ * $Id: avi.c,v 1.42 2003/03/30 18:14:37 gbazin Exp $
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -65,7 +65,7 @@ vlc_module_begin();
                   N_("force index creation"),
                   N_("force index creation"), VLC_TRUE );
 
-    set_description( N_("avi demuxer") );
+    set_description( N_("AVI demuxer") );
     set_capability( "demux", 212 );
     set_callbacks( AVIInit, __AVIEnd );
 vlc_module_end();
index 3903d8df4f1a073b790aad05658e76b37d6594b2..f92503f7a1569cc97543e1fe998bf2dc2a4d57eb 100644 (file)
@@ -2,7 +2,7 @@
  * demuxdump.c : Pseudo demux module for vlc (dump raw stream)
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: demuxdump.c,v 1.7 2003/03/30 14:24:20 gbazin Exp $
+ * $Id: demuxdump.c,v 1.8 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -50,7 +50,7 @@ static void Desactivate ( vlc_object_t * );
     "specify a file name to which the raw stream will be dumped." )
 
 vlc_module_begin();
-    set_description( _("Dump Demux input") );
+    set_description( _("file dump demuxer") );
     set_capability( "demux", 0 );
     add_category_hint( "File", NULL, VLC_FALSE );
         add_file( "demuxdump-file", "stream-demux.dump", NULL, FILE_TEXT, 
index 8c0bdc33878d29284eb84cc7ee47daf479460a3c..1640b799b9633efd1cdfd29c5b471d8c844521e3 100644 (file)
@@ -2,7 +2,7 @@
  * audio.c : mpeg audio Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: audio.c,v 1.15 2003/03/23 12:12:32 gbazin Exp $
+ * $Id: audio.c,v 1.16 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -44,7 +44,7 @@ static int  Demux ( input_thread_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MPEG I/II audio stream demux" ) );
+    set_description( _("MPEG I/II audio stream demuxer" ) );
     set_capability( "demux", 50 );
     set_callbacks( Activate, NULL );
     add_shortcut( "mpegaudio" );
index 26465df3f688d8a0f586b9f16c7cbba489fe8104..d09b2c0a2ee9defd778ebfeceb0a60a3dc4049fe 100644 (file)
@@ -2,7 +2,7 @@
  * m4v.c : MPEG-4 video Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: m4v.c,v 1.3 2003/03/14 00:24:08 sigmunau Exp $
+ * $Id: m4v.c,v 1.4 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -40,7 +40,7 @@ static int  Demux ( input_thread_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("MPEG-4 video elementary stream demux" ) );
+    set_description( _("MPEG-4 video elementary stream demuxer" ) );
     set_capability( "demux", 0 );
     set_callbacks( Activate, NULL );
     add_shortcut( "m4v" );
index 4153883550cc80101013cbf91081c6c3113b4327..4f60e0147b7932454685736ce9ee7e0c0a68e1ce 100644 (file)
@@ -2,7 +2,7 @@
  * ogg.c : ogg stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: ogg.c,v 1.21 2003/03/21 02:05:20 gbazin Exp $
+ * $Id: ogg.c,v 1.22 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  * 
@@ -184,7 +184,7 @@ static int  Ogg_FindLogicalStreams( input_thread_t *p_input,
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("ogg stream demux" ) );
+    set_description( _("ogg stream demuxer" ) );
     set_capability( "demux", 50 );
     set_callbacks( Activate, Deactivate );
     add_shortcut( "ogg" );
index 0c80d0194f8941cd75a903ccb6bcb67bbaf16b09..a73e62c841a83bceec83fb3bd9c0fd7cd5d31377 100644 (file)
@@ -2,7 +2,7 @@
  * rawdv.c : raw dv input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: rawdv.c,v 1.4 2003/02/18 19:42:57 gbazin Exp $
+ * $Id: rawdv.c,v 1.5 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -112,7 +112,7 @@ static uint32_t GetDWBE( uint8_t *p_buff )
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("raw dv demux") );
+    set_description( _("raw dv demuxer") );
     set_capability( "demux", 2 );
     set_callbacks( Activate, NULL );
     add_shortcut( "rawdv" );
index 92278f1686112da1280c589d5c54173890533dd1..a9c514b7fddfb6742bdb78f47d9edd9b97523890 100644 (file)
@@ -2,7 +2,7 @@
  * beos.cpp : BeOS plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: BeOS.cpp,v 1.7 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: BeOS.cpp,v 1.8 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -47,7 +47,7 @@ void E_(CloseVideo)   ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("BeOS standard API module") );
+    set_description( _("BeOS standard API interface") );
     add_submodule();
         set_capability( "interface", 100 );
         set_callbacks( E_(OpenIntf), E_(CloseIntf) );
index 3ac9df9e641b00dfcb3c82a5fe8a1276b9d4ae75..54cdccb91203f63f4152fc3eb08462eb1960930b 100644 (file)
@@ -2,7 +2,7 @@
  * familiar.c : familiar plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: familiar.c,v 1.33 2003/03/17 18:02:10 sam Exp $
+ * $Id: familiar.c,v 1.34 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
  *          Marc Ariberti <marcari@videolan.org>
@@ -69,7 +69,7 @@ gint E_(GtkModeManage)   ( intf_thread_t * p_intf );
 vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_TRUE );
     add_bool( "familiar-autoplayfile", 1, GtkAutoPlayFile, AUTOPLAYFILE_TEXT, AUTOPLAYFILE_LONGTEXT, VLC_TRUE );
-    set_description( _("Familiar Linux Gtk+ interface module") );
+    set_description( _("Familiar Linux Gtk+ interface") );
     set_capability( "interface", 70 );
     set_callbacks( Open, Close );
 vlc_module_end();
index bd7fcbef95b23b26b01fd8b2f4285e74c5c7fa9a..2d49e68608bef5f168cbec04b7a6156340323a78 100644 (file)
@@ -2,7 +2,7 @@
  * gnome.c : Gnome plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000 VideoLAN
- * $Id: gnome.c,v 1.14 2003/03/17 18:02:10 sam Exp $
+ * $Id: gnome.c,v 1.15 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -77,7 +77,7 @@ vlc_module_begin();
     add_integer( "gnome-prefs-maxh", 480, NULL,
                  PREFS_MAXH_TEXT, PREFS_MAXH_LONGTEXT, VLC_TRUE );
 
-    set_description( _("GNOME interface module") );
+    set_description( _("GNOME interface") );
     set_capability( "interface", i );
     set_callbacks( Open, Close );
     set_program( "gnome-vlc" );
index b37a2ca09cdc05d07ce260d7d7537ac450c581a6..c6cc37d80db727cbc5c56ee5f9ad831bed987117 100644 (file)
@@ -2,7 +2,7 @@
  * gtk.c : Gtk+ plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: gtk.c,v 1.19 2003/03/17 18:02:10 sam Exp $
+ * $Id: gtk.c,v 1.20 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -74,7 +74,7 @@ vlc_module_begin();
     add_integer( "gtk-prefs-maxh", 480, NULL,
                  PREFS_MAXH_TEXT, PREFS_MAXH_LONGTEXT, VLC_TRUE );
 
-    set_description( _("Gtk+ interface module") );
+    set_description( _("Gtk+ interface") );
     set_capability( "interface", i );
     set_callbacks( Open, Close );
     add_shortcut( "gtk" );
index 61b1e680aaf917eb42d1cb8172ff3846cf282c0d..fde1b75244faea2cf271263c2012c61b066d7ca6 100644 (file)
@@ -2,7 +2,7 @@
  * gnome2.c : GNOME 2 plugin for vlc
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: gnome2.c,v 1.1 2003/03/18 01:26:13 sam Exp $
+ * $Id: gnome2.c,v 1.2 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -51,7 +51,7 @@ static int  Manage       ( intf_thread_t * );
  *****************************************************************************/
 vlc_module_begin();
     int i = getenv( "DISPLAY" ) == NULL ? 15 : 95;
-    set_description( _("Gtk2 interface module") );
+    set_description( _("Gtk2 interface") );
     set_capability( "interface", i );
     set_callbacks( Open, Close );
     set_program( "gvlc" );
index d22ba1586dd78738b1a2fb413189dfce650a44f4..ff059634be9ac9af150c5b47222c1a657f7a6c0a 100644 (file)
@@ -2,7 +2,7 @@
  * gtk2.c : Gtk2 plugin for vlc
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: gtk2.c,v 1.1 2003/03/18 01:26:13 sam Exp $
+ * $Id: gtk2.c,v 1.2 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -52,7 +52,7 @@ static int  Manage       ( intf_thread_t * );
  *****************************************************************************/
 vlc_module_begin();
     int i = getenv( "DISPLAY" ) == NULL ? 15 : 95;
-    set_description( _("Gtk2 interface module") );
+    set_description( _("Gtk2 interface") );
     set_capability( "interface", i );
     set_callbacks( Open, Close );
     set_program( "gvlc" );
index 5bd02bf4f39964a248ca492b2f4d78068cce78a6..5a2ab691488ec487d041980c01a7b018f50e5f13 100644 (file)
@@ -2,7 +2,7 @@
  * kde.cpp : KDE plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: kde.cpp,v 1.9 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: kde.cpp,v 1.10 2003/03/30 18:14:37 gbazin Exp $
  *
  * Authors: Andres Krapf <dae@chez.com> Sun Mar 25 2001
  *
@@ -53,7 +53,7 @@ vlc_module_begin();
     int i = getenv( "DISPLAY" ) == NULL ? 8 : 85;
     add_category_hint( "kde", NULL, VLC_TRUE );
     add_file( "kdeuirc", DATA_PATH "/ui.rc", NULL, N_( "path to ui.rc file" ), NULL, VLC_TRUE );
-    set_description( _("KDE interface module") );
+    set_description( _("KDE interface") );
     set_capability( "interface", i );
     set_program( "kvlc" );
     set_callbacks( open, close );
index 696de45d3521fc53ebde9f013c5fe852f3c0a242..77645d42d519b342ba2c7bc5eadf108d4b7bd1bb 100644 (file)
@@ -2,7 +2,7 @@
  * macosx.m: MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: macosx.m,v 1.4 2003/02/23 05:53:53 jlj Exp $
+ * $Id: macosx.m,v 1.5 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Eugenio Jarosiewicz <ej0@cise.ufl.edu>
@@ -51,7 +51,7 @@ void E_(CloseVideo)   ( vlc_object_t * );
 #define VDEV_TEXT N_("video device")
 
 vlc_module_begin();
-    set_description( _("MacOS X interface, sound and video module") );
+    set_description( _("MacOS X interface, sound and video") );
     add_submodule();
         set_capability( "interface", 100 );
         set_callbacks( E_(OpenIntf), E_(CloseIntf) );
index bb9acdce1942261de78cc1dd8f5e7782d9aa0648..b292c0f6f0c97322528ac3d1e1101d154d5bc705 100644 (file)
@@ -2,7 +2,7 @@
  * ncurses.c : NCurses plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001, 2002, 2003 VideoLAN
- * $Id: ncurses.c,v 1.3 2003/01/17 19:36:53 sam Exp $
+ * $Id: ncurses.c,v 1.4 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -63,7 +63,7 @@ static void ManageSlider   ( intf_thread_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("ncurses interface module") );
+    set_description( _("ncurses interface") );
     set_capability( "interface", 10 );
     set_callbacks( Open, Close );
     add_shortcut( "curses" );
index 32fbff1f075eb66ddcb8dbb150659fdbd942f82d..794ed525576911fe2b966c356e79233ecfd70f25 100644 (file)
@@ -41,7 +41,7 @@ void E_(CloseVideo)   ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("QNX RTOS module") );
+    set_description( _("QNX RTOS video and audio output") );
     add_submodule();
         set_capability( "video output", 100 );
         set_callbacks( E_(OpenVideo), E_(CloseVideo) );
index 62939a91ea551dcb334cea58fa6b09758eba972d..29a69355772b1d6072be344297988b7786238fa8 100644 (file)
@@ -2,7 +2,7 @@
  * qt.cpp : Qt plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: qt.cpp,v 1.1 2002/08/04 17:23:43 sam Exp $
+ * $Id: qt.cpp,v 1.2 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -44,7 +44,7 @@ vlc_module_begin();
 #else
     int i = getenv( "DISPLAY" ) == NULL ? 7 : 80;
 #endif
-    set_description( _("Qt interface module") );
+    set_description( _("Qt interface") );
     set_capability( "interface", i );
     set_program( "qvlc" );
     set_callbacks( E_(Open), E_(Close) );
index 9cb69e812c21d1ae486858a818671578c965c8f5..84e6ccd740dee649a0aa66cf29ba473fe8382c74 100644 (file)
@@ -2,7 +2,7 @@
  * skin-main.cpp: skins plugin for VLC
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: skin_main.cpp,v 1.3 2003/03/20 09:29:07 karibu Exp $
+ * $Id: skin_main.cpp,v 1.4 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
  *          Emmanuel Puig    <karibu@via.ecp.fr>
@@ -223,7 +223,7 @@ vlc_module_begin();
               VLC_FALSE );
     add_bool( "show_in_taskbar", VLC_TRUE, NULL, SKIN_TASKBAR,
               SKIN_TASKBAR_LONG, VLC_FALSE );
-    set_description( _("Skinnable Interface Module") );
+    set_description( _("Skinnable Interface") );
     set_capability( "interface", 30 );
     set_callbacks( Open, Close );
     add_shortcut( "skins" );
index c4209a13e37b2d6fac32ae025636edb65c0e2024..b0fd112c4dc8f70ba4ef891603be4a62adb0b2d1 100644 (file)
@@ -2,7 +2,7 @@
  * win32.cpp : Win32 interface plugin for vlc\r
  *****************************************************************************\r
  * Copyright (C) 2002-2003 VideoLAN\r
- * $Id: win32.cpp,v 1.17 2003/03/01 21:32:49 ipkiss Exp $\r
+ * $Id: win32.cpp,v 1.18 2003/03/30 18:14:38 gbazin Exp $\r
  *\r
  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>\r
  *\r
@@ -314,7 +314,7 @@ vlc_module_begin();
                  MAX_LINES_LONGTEXT, VLC_TRUE );\r
     add_bool( "intfwin-show-captions", 0, NULL, SHOW_CAPTIONS_TEXT,\r
               SHOW_CAPTIONS_LONGTEXT, VLC_FALSE );\r
-    set_description( _("Native Windows interface module") );\r
+    set_description( _("Native Windows interface") );\r
     set_capability( "interface", 100 );\r
     set_callbacks( E_(Open), E_(Close) );\r
     add_shortcut( "win" );\r
index a583ff289a3e2ab3de69b59e4d9bcd4ac0344ebb..bdb37db27be6950791584cc95a87d97c87f4c83c 100644 (file)
@@ -2,7 +2,7 @@
  * dummy.c : dummy plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: dummy.c,v 1.4 2003/02/20 16:07:38 gbazin Exp $
+ * $Id: dummy.c,v 1.5 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -50,7 +50,7 @@
 #endif
 
 vlc_module_begin();
-    set_description( _("dummy functions module") );
+    set_description( _("dummy functions") );
     add_shortcut( "vlc" );
     add_submodule();
         set_capability( "interface", 0 );
index 6ec85a06a30ebd55ac070518c0c8386a0f67364f..962de10bd2c9050e2f4c088db0d889c507c7254f 100644 (file)
@@ -2,7 +2,7 @@
  * gtk_main.c : Gtk+ wrapper for gtk_main
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: gtk_main.c,v 1.14 2003/03/19 17:40:43 fenrir Exp $
+ * $Id: gtk_main.c,v 1.15 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -57,7 +57,7 @@ static vlc_object_t * p_gtk_main = NULL;
  *****************************************************************************/
 vlc_module_begin();
     int i_cap;
-    set_description( _("Gtk+ GUI helper module") );
+    set_description( _("Gtk+ GUI helper") );
 #if defined(MODULE_NAME_IS_gtk_main)
     i_cap = 90;
     add_shortcut( "gtk" );
index 5543f234c4be7a7e7ae8210ed9cdbc6ed7460600..2f274d99cb02470c0f420476de3124331a30fd20 100644 (file)
@@ -2,7 +2,7 @@
  * logger.c : file logging plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: logger.c,v 1.6 2003/03/30 14:24:20 gbazin Exp $
+ * $Id: logger.c,v 1.7 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -88,7 +88,7 @@ vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_file( "logfile", NULL, NULL, N_("log filename"), N_("Specify the log filename."), VLC_FALSE );
     add_string_from_list( "logmode", "text", mode_list, NULL, LOGMODE_TEXT, LOGMODE_LONGTEXT, VLC_FALSE );
-    set_description( _("file logging interface module") );
+    set_description( _("file logging interface") );
     set_capability( "interface", 0 );
     set_callbacks( Open, Close );
 vlc_module_end();
index c44e9e16c5e67d480e55c98e791df3ca6bf61bf6..c368728549105485a808585c925cb8a1f68586fe 100644 (file)
@@ -2,7 +2,7 @@
  * memcpy.c : classic memcpy module
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: memcpy.c,v 1.2 2002/08/09 16:39:08 sam Exp $
+ * $Id: memcpy.c,v 1.3 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -78,23 +78,23 @@ static int Activate ( vlc_object_t *p_this )
  *****************************************************************************/
 vlc_module_begin();
 #ifdef MODULE_NAME_IS_memcpy
-    set_description( _("libc memcpy module") );
+    set_description( _("libc memcpy") );
     add_shortcut( "c" );
     add_shortcut( "libc" );
 #elif defined( MODULE_NAME_IS_memcpy3dn )
-    set_description( _("3D Now! memcpy module") );
+    set_description( _("3D Now! memcpy") );
     add_requirement( 3DNOW );
     add_shortcut( "3dn" );
     add_shortcut( "3dnow" );
     add_shortcut( "memcpy3dn" );
     add_shortcut( "memcpy3dnow" );
 #elif defined( MODULE_NAME_IS_memcpymmx )
-    set_description( _("MMX memcpy module") );
+    set_description( _("MMX memcpy") );
     add_requirement( MMX );
     add_shortcut( "mmx" );
     add_shortcut( "memcpymmx" );
 #elif defined( MODULE_NAME_IS_memcpymmxext )
-    set_description( _("MMX EXT memcpy module") );
+    set_description( _("MMX EXT memcpy") );
     add_requirement( MMXEXT );
     add_shortcut( "mmxext" );
     add_shortcut( "memcpymmxext" );
index ef1173b2062050e6dc29396cdcec423eff92b313..2c0a0a893e878500066ce10ce50878d9f39fb1c5 100644 (file)
@@ -2,7 +2,7 @@
  * memcpyaltivec.c : AltiVec memcpy module
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: memcpyaltivec.c,v 1.2 2002/08/11 12:27:11 sam Exp $
+ * $Id: memcpyaltivec.c,v 1.3 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -49,7 +49,7 @@ static int Activate ( vlc_object_t *p_this )
  * Module descriptor.
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("AltiVec memcpy module") );
+    set_description( _("AltiVec memcpy") );
     add_requirement( ALTIVEC );
     set_capability( "memcpy", 100 );
     set_callbacks( Activate, NULL );
index 12e197eebe2a313a0618599e7e5b8c3b607390ad..b4941a33c352ccd3667bc9e269d7f896a47077db 100644 (file)
@@ -2,7 +2,7 @@
  * qte_main.c : QT Embedded wrapper for gte_main
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: qte_main.cpp,v 1.5 2003/03/17 18:02:10 sam Exp $
+ * $Id: qte_main.cpp,v 1.6 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
  *
@@ -63,7 +63,7 @@ static qte_thread_t * p_qte_main = NULL;
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Qt Embedded GUI helper module") );
+    set_description( _("Qt Embedded GUI helper") );
     set_capability( "gui-helper", 90 );
     add_shortcut( "qte" );
     set_callbacks( Open, Close );
index df62772862f6d6a69222cdf1bdabcda3cc97577e..5aee7a96f1e471e7ff21f367274c929d0af67f14 100644 (file)
@@ -2,7 +2,7 @@
  * sap.c :  SAP interface module
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: sap.c,v 1.9 2003/03/22 14:39:38 fenrir Exp $
+ * $Id: sap.c,v 1.10 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Arnaud Schauly <gitan@via.ecp.fr>
  *
@@ -131,7 +131,7 @@ vlc_module_begin();
     add_category_hint( N_("SAP"), NULL, VLC_TRUE );
         add_string( "sap-addr", NULL, NULL,
                      "SAP multicast address", "SAP multicast address", VLC_TRUE );
-    set_description( _("SAP interface module") );
+    set_description( _("SAP interface") );
     set_capability( "interface", 0 );
     set_callbacks( Activate, NULL);
 vlc_module_end();
index 05771baab3ba5d32dec90f683fdbc504bb059eff..aaed722b258498050669b4b743b02638f6458f70 100644 (file)
@@ -2,7 +2,7 @@
  * screensaver.c : disable screen savers when VLC is playing
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: screensaver.c,v 1.1 2003/02/06 03:22:08 sam Exp $
+ * $Id: screensaver.c,v 1.2 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Sam Hocevar <sam@zoy.org>
  *
@@ -41,7 +41,7 @@ static void Run          ( intf_thread_t *p_intf );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("screensaver disabling module") );
+    set_description( _("screensaver disabling helper") );
     set_capability( "interface", 0 );
     set_callbacks( Activate, NULL );
 vlc_module_end();
index c46165774574d61a96d081b3e49a17c0d047dec2..1e0bf351e6cb164837fb3771aa549d32278822ce 100644 (file)
@@ -2,7 +2,7 @@
  * clone.c : Clone video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002, 2003 VideoLAN
- * $Id: clone.c,v 1.8 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: clone.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -63,7 +63,7 @@ vlc_module_begin();
     add_category_hint( N_("Clone"), NULL, VLC_FALSE );
     add_integer( "clone-count", 2, NULL, COUNT_TEXT, COUNT_LONGTEXT, VLC_FALSE );
     add_string ( "clone-vout-list", NULL, NULL, VOUTLIST_TEXT, VOUTLIST_LONGTEXT, VLC_FALSE );
-    set_description( _("image clone video module") );
+    set_description( _("clone video filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "clone" );
     set_callbacks( Create, Destroy );
index 25818a8692e115e39983926905d03f50c3f211e1..62331de5ff8b97b5d047f2c2ccaab09803086077 100644 (file)
@@ -2,7 +2,7 @@
  * crop.c : Crop video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002, 2003 VideoLAN
- * $Id: crop.c,v 1.9 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: crop.c,v 1.10 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -61,7 +61,7 @@ vlc_module_begin();
     add_category_hint( N_("Crop"), NULL, VLC_FALSE );
     add_string( "crop-geometry", NULL, NULL, GEOMETRY_TEXT, GEOMETRY_LONGTEXT, VLC_FALSE );
     add_bool( "autocrop", 0, NULL, AUTOCROP_TEXT, AUTOCROP_LONGTEXT, VLC_FALSE );
-    set_description( _("image crop video module") );
+    set_description( _("crop video filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "crop" );
     set_callbacks( Create, Destroy );
index 70ca2bb4d74ed1bd1b31b84d3be898cc41abc878..280afed9909221c5f842295de452a18d13d069f1 100644 (file)
@@ -2,7 +2,7 @@
  * deinterlace.c : deinterlacer plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: deinterlace.c,v 1.10 2003/03/30 16:26:42 gbazin Exp $
+ * $Id: deinterlace.c,v 1.11 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -81,7 +81,7 @@ vlc_module_begin();
     add_category_hint( N_("Deinterlace"), NULL, VLC_FALSE );
     add_string_from_list( "deinterlace-mode", "discard", mode_list, NULL,
                           MODE_TEXT, MODE_LONGTEXT, VLC_FALSE );
-    set_description( _("deinterlacing module") );
+    set_description( _("video deinterlacing filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "deinterlace" );
     set_callbacks( Create, Destroy );
index 02c9fdd76ea76882821992a7bb4564347e00068f..ad3911c16d33800ef4119be8053d23a29a651788 100644 (file)
@@ -2,7 +2,7 @@
  * distort.c : Misc video effects plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: distort.c,v 1.8 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: distort.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -65,7 +65,7 @@ vlc_module_begin();
     add_category_hint( N_("Distort"), NULL, VLC_FALSE );
     add_string_from_list( "distort-mode", "wave", mode_list, NULL,
                           MODE_TEXT, MODE_LONGTEXT, VLC_FALSE );
-    set_description( _("miscellaneous video effects module") );
+    set_description( _("miscellaneous distort video effects filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "distort" );
     set_callbacks( Create, Destroy );
index 67d3a390bfbcaf6456e2f27fc3ba8046653ad73f..79c623997e4d074ae4e56f4f674e52179d9930a8 100644 (file)
@@ -2,7 +2,7 @@
  * invert.c : Invert video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: invert.c,v 1.6 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: invert.c,v 1.7 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -49,7 +49,7 @@ static int  SendEvents( vlc_object_t *, char const *,
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("invert video module") );
+    set_description( _("invert video filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "invert" );
     set_callbacks( Create, Destroy );
index efb0e0fde2eed06a83ab7673a86a75cb0566ea48..f63f8181a04123a01b39b03cda2393cb85f551ac 100644 (file)
@@ -2,7 +2,7 @@
  * motion_blur.c : motion blur filter for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: motionblur.c,v 1.9 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: motionblur.c,v 1.10 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -57,7 +57,7 @@ static int  SendEvents( vlc_object_t *, char const *,
 vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_integer( "blur-factor", 80, NULL, MODE_TEXT, MODE_LONGTEXT, VLC_FALSE );
-    set_description( _("Motion blur filter") );
+    set_description( _("motion blur filter") );
     set_capability( "video filter", 0 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index c03dcd95ae3b5f078bb448def02138f5ae655b5b..819f8a518c9497bdeaa6ec065541c2afdaa20b20 100644 (file)
@@ -2,7 +2,7 @@
  * transform.c : transform image plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: transform.c,v 1.10 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: transform.c,v 1.11 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -63,7 +63,7 @@ vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_string_from_list( "transform-type", "90", type_list, NULL,
                           TYPE_TEXT, TYPE_LONGTEXT, VLC_FALSE);
-    set_description( _("image transformation module") );
+    set_description( _("video transformation filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "transform" );
     set_callbacks( Create, Destroy );
index 32b8a47a30ca22c4766161973da363259bcbba05..f907474727b523a99d1f73380e9fcc533af1f6e9 100644 (file)
@@ -2,7 +2,7 @@
  * wall.c : Wall video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: wall.c,v 1.8 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: wall.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -67,7 +67,7 @@ vlc_module_begin();
     add_integer( "wall-cols", 3, NULL, COLS_TEXT, COLS_LONGTEXT, VLC_FALSE );
     add_integer( "wall-rows", 3, NULL, ROWS_TEXT, ROWS_LONGTEXT, VLC_FALSE );
     add_string( "wall-active", NULL, NULL, ACTIVE_TEXT, ACTIVE_LONGTEXT, VLC_FALSE );
-    set_description( _("image wall video module") );
+    set_description( _("wall video filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "wall" );
     set_callbacks( Create, Destroy );
index 53d8d5f9c075a8917548d295a3005ab0478b8635..8fc268bd9184e2c1c8130b40c7c93246314243c4 100644 (file)
@@ -2,7 +2,7 @@
  * vout_aa.c: Aa video output display method for testing purposes
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: aa.c,v 1.1 2002/08/13 11:59:36 sam Exp $
+ * $Id: aa.c,v 1.2 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -52,7 +52,7 @@ static void SetPalette     ( vout_thread_t *, u16 *, u16 *, u16 * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("ASCII-art video output module") );
+    set_description( _("ASCII-art video output") );
     set_capability( "video output", 10 );
     add_shortcut( "aalib" );
     set_callbacks( Create, Destroy );
index 5e4ee4806bf5b4708626bee57e25269901caeb3b..31f3d67bfd5429257798a6482fe65f75b49a946c 100644 (file)
@@ -2,7 +2,7 @@
  * vout.c: Windows DirectX video output display method
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: directx.c,v 1.15 2003/03/28 17:02:25 gbazin Exp $
+ * $Id: directx.c,v 1.16 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -112,7 +112,7 @@ vlc_module_begin();
     add_bool( "directx-hw-yuv", 1, NULL, HW_YUV_TEXT, HW_YUV_LONGTEXT, VLC_TRUE );
     add_bool( "directx-use-sysmem", 0, NULL, SYSMEM_TEXT, SYSMEM_LONGTEXT, VLC_TRUE );
     add_bool( "directx-3buffering", 1, NULL, TRIPLEBUF_TEXT, TRIPLEBUF_LONGTEXT, VLC_TRUE );
-    set_description( _("DirectX video module") );
+    set_description( _("DirectX video output") );
     set_capability( "video output", 100 );
     add_shortcut( "directx" );
     set_callbacks( OpenVideo, CloseVideo );
index 40cb9b9fdf84d2ca04222abfdb32c32f2f987b3e..fdaa0aaf4579e0fe52fb560e56510dc5f447ce8c 100644 (file)
@@ -2,7 +2,7 @@
  * encoder.c :  encoder wrapper plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: encoder.c,v 1.2 2003/01/28 16:57:28 sam Exp $
+ * $Id: encoder.c,v 1.3 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -50,7 +50,7 @@ static void SetPalette( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Encoder wrapper module") );
+    set_description( _("Encoder wrapper") );
     set_capability( "video output", 0 );
     set_callbacks( Create, Destroy );
     add_shortcut( "encoder" );
index d4e5ac778d2685915020fd74f58d2322ce628850..4a0d8284c8b07d97afd9425041d9a83d336f58e8 100644 (file)
@@ -2,7 +2,7 @@
  * fb.c : framebuffer plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: fb.c,v 1.4 2003/03/30 14:24:20 gbazin Exp $
+ * $Id: fb.c,v 1.5 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *      
@@ -67,7 +67,7 @@ static void GfxMode        ( int i_tty );
 vlc_module_begin();                                            
     add_category_hint( N_("Frame Buffer"), NULL, VLC_FALSE );
     add_file( FB_DEV_VAR, "/dev/fb0", NULL, N_("framebuffer device"), NULL, VLC_FALSE );
-    set_description( _("Linux console framebuffer module") );
+    set_description( _("Linux console framebuffer video output") );
     set_capability( "video output", 30 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index c007a8906b270d21a5fefb892e0f654685a1dec1..900686c6da48de4193fd60019675f1977cacd37c 100644 (file)
@@ -2,7 +2,7 @@
  * glide.c : 3dfx Glide plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: glide.c,v 1.1 2002/08/13 11:59:36 sam Exp $
+ * $Id: glide.c,v 1.2 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -61,7 +61,7 @@ static void CloseDisplay   ( vout_thread_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("3dfx Glide module") );
+    set_description( _("3dfx Glide video output") );
     set_capability( "video output", 20 );
     add_shortcut( "3dfx" );
     set_callbacks( Create, Destroy );
index 82114c106c3732995fe222583324d83b0db7c47a..12b642afc8562ca34a525c2caa2c0a0ccb4163bb 100644 (file)
@@ -2,7 +2,7 @@
  * mga.c : Matrox Graphic Array plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: mga.c,v 1.1 2002/08/04 17:23:43 sam Exp $
+ * $Id: mga.c,v 1.2 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Samuel Hocevar <sam@zoy.org>
@@ -56,7 +56,7 @@ static int  NewPicture     ( vout_thread_t *, picture_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();  
-    set_description( _("Matrox Graphic Array video module") );
+    set_description( _("Matrox Graphic Array video output") );
     set_capability( "video output", 10 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index ce4ae3763f8c0f699d8bb7b7d9fb45ae03adb482..41ff131158864a5f72d897f6fb5e6901a4023541 100644 (file)
@@ -2,7 +2,7 @@
  * xmga.c : X11 MGA plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: xmga.c,v 1.3 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: xmga.c,v 1.4 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -104,7 +104,7 @@ vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_TRUE );
     add_string( "xmga-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, VLC_TRUE );
     add_bool( "xmga-altfullscreen", 0, NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT, VLC_TRUE );
-    set_description( _("X11 MGA module") );
+    set_description( _("X11 MGA video output") );
     set_capability( "video output", 60 );
     set_callbacks( Create, Destroy );
 vlc_module_end();
index 0a1d8a3bd545dc81900dc5c9d0803f96503cab89..caaa43d91c22bf29942197aa3d26e92c1ad5de71 100644 (file)
@@ -2,7 +2,7 @@
  * qte.cpp : QT Embedded plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2003 VideoLAN
- * $Id: qte.cpp,v 1.16 2003/03/17 18:02:10 sam Exp $
+ * $Id: qte.cpp,v 1.17 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Gerald Hansink <gerald.hansink@ordain.nl>
  *          Jean-Paul Saman <jpsaman@wxs.nl>
@@ -113,7 +113,7 @@ extern "C"
 vlc_module_begin();
 //    add_category_hint( N_("QT Embedded"), NULL );
 //    add_string( "qte-display", "landscape", NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT);
-    set_description( _("QT Embedded video module") );
+    set_description( _("QT Embedded video output") );
     set_capability( "video output", 70 );
     add_shortcut( "qte" );
     set_callbacks( Open, Close);
index 0c60a75879a5f15e98925276f2c4f22e88524f4b..3d90f1e9ed31a4003b714d470f850dcd454ca1a5 100644 (file)
@@ -2,7 +2,7 @@
  * sdl.c: SDL video output display method
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: sdl.c,v 1.10 2003/03/17 17:11:32 sam Exp $
+ * $Id: sdl.c,v 1.11 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *          Pierre Baillet <oct@zoy.org>
@@ -103,7 +103,7 @@ static void SetPalette      ( vout_thread_t *,
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Simple DirectMedia Layer video module") );
+    set_description( _("Simple DirectMedia Layer video output") );
     set_capability( "video output", 60 );
     add_shortcut( "sdl" );
     set_callbacks( Open, Close );
index 344bd2c7980b9e9f26b043366d02171a6afe14f4..27972b83bc1eeb3967bf977ca32431c3e6d7bccb 100644 (file)
@@ -2,7 +2,7 @@
  * svgalib.c : SVGAlib plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: svgalib.c,v 1.2 2002/08/21 17:31:58 sam Exp $
+ * $Id: svgalib.c,v 1.3 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *      
@@ -50,7 +50,7 @@ static void SetPalette( vout_thread_t *, u16 *, u16 *, u16 * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();                                            
-    set_description( _("SVGAlib module") );
+    set_description( _("SVGAlib video output") );
     set_capability( "video output", 0 );
     set_callbacks( Create, Destroy );
     linked_with_a_crap_library_which_uses_atexit();
index 9a84463e1be75b71813f2d3378e6a6c83da9c78b..2f657aa5becd66809e78e660e4fa167d4621739b 100755 (executable)
@@ -2,7 +2,7 @@
  * wingdi.c : Win32 / WinCE GDI video output plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: wingdi.c,v 1.5 2003/01/15 13:16:39 sam Exp $
+ * $Id: wingdi.c,v 1.6 2003/03/30 18:14:38 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -79,7 +79,7 @@ struct vout_sys_t
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("Windows GDI video output module") );
+    set_description( _("Windows GDI video output") );
     set_capability( "video output", 10 );
     set_callbacks( OpenVideo, CloseVideo );
 vlc_module_end();
index 0de457c0979ae3b2e497511726ff66f11f394652..46342259fb1686ab7efc0fc114e40a586e1b8931 100644 (file)
@@ -2,7 +2,7 @@
  * x11.c : X11 plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: x11.c,v 1.5 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: x11.c,v 1.6 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -65,7 +65,7 @@ vlc_module_begin();
 #ifdef HAVE_SYS_SHM_H
     add_bool( "x11-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, VLC_TRUE );
 #endif
-    set_description( _("X11 module") );
+    set_description( _("X11 video output") );
     set_capability( "video output", 50 );
     set_callbacks( E_(Activate), E_(Deactivate) );
 vlc_module_end();
index 0e1eae7919e97efa3126109fe17f974e6c3ec4f6..72cdeafe88805e9ba90f02e93ee61df97c49ef83 100644 (file)
@@ -2,7 +2,7 @@
  * xvideo.c : Xvideo plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: xvideo.c,v 1.5 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: xvideo.c,v 1.6 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Shane Harper <shanegh@optusnet.com.au>
  *          Vincent Seguin <seguin@via.ecp.fr>
@@ -78,7 +78,7 @@ vlc_module_begin();
 #ifdef HAVE_SYS_SHM_H
     add_bool( "xvideo-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, VLC_TRUE );
 #endif
-    set_description( _("XVideo extension module") );
+    set_description( _("XVideo extension video output") );
     set_capability( "video output", 150 );
     set_callbacks( E_(Activate), E_(Deactivate) );
 vlc_module_end();
index eae258e9da5744cfcfdf7bfecf38836beee655e9..136e20baea2aa19a25015781f33a5f1582e92bdb 100644 (file)
@@ -2,7 +2,7 @@
  * xosd.c : X On Screen Display interface
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: xosd.c,v 1.8 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: xosd.c,v 1.9 2003/03/30 18:14:39 gbazin Exp $
  *
  * Authors: Loïc Minier <lool@videolan.org>
  *
@@ -80,7 +80,7 @@ vlc_module_begin();
                  SHD_OFS_TEXT, SHD_OFS_LONGTEXT, VLC_TRUE );
     add_string( "xosd-font", "-misc-fixed-medium-r-*-*-*-300-*-*-*-*-*-*",
                 NULL, FONT_TEXT, FONT_LONGTEXT, VLC_TRUE );
-    set_description( _("xosd interface module") );
+    set_description( _("xosd interface") );
     set_capability( "interface", i );
     set_callbacks( Open, Close );
 vlc_module_end();