]> git.sesse.net Git - vlc/blobdiff - modules/access/vcdx/vcd.c
live555.cpp: Add support for quicktime specific audio
[vlc] / modules / access / vcdx / vcd.c
index 7c924d5065a5b5703512529558fafa8472c38f6d..0a956635a39bebafa3c3c4c497c0f584a2dec449 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * vcd.c : VCD input module for vlc
  *****************************************************************************
- * Copyright (C) 2000, 2003, 2004, 2005 VideoLAN
+ * Copyright (C) 2000, 2003, 2004, 2005 the VideoLAN team
  * $Id$
  *
  * Authors: Rocky Bernstein <rocky@panix.com>
@@ -18,7 +18,7 @@
  *
  * 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -92,14 +92,14 @@ int  E_(BlocksPerReadCallback) ( vlc_object_t *p_this, const char *psz_name,
  *****************************************************************************/
 
 vlc_module_begin();
-    add_usage_hint( N_("vcdx://[device-or-file][@{P,S,T}num]") );
+    set_shortname( _("(Super) Video CD"));
     set_description( _("Video CD (VCD 1.0, 1.1, 2.0, SVCD, HQVCD) input") );
-    set_capability( "access2", 55 /* slightly lower than vcd */ );
-    set_shortname( N_("(Super) Video CD"));
-    set_callbacks( VCDOpen, VCDClose );
+    add_usage_hint( N_("vcdx://[device-or-file][@{P,S,T}num]") );
     add_shortcut( "vcdx" );
     set_category( CAT_INPUT );
     set_subcategory( SUBCAT_INPUT_ACCESS );
+    set_capability( "access2", 55 /* slightly lower than vcd */ );
+    set_callbacks( VCDOpen, VCDClose );
 
     /* Configuration options */
     add_integer ( MODULE_STRING "-debug", 0, NULL,
@@ -122,25 +122,25 @@ vlc_module_begin();
              NULL,
               N_("Use track length as maximum unit in seek?"),
               N_("If set, the length of the seek bar is the track rather than "
-                "the length of an entry"),
+                "the length of an entry."),
               VLC_FALSE );
 
     add_bool( MODULE_STRING "-extended-info", 0, NULL,
               N_("Show extended VCD info?"),
-              N_("Show the maximum about of information under Stream and "
+              N_("Show the maximum amount of information under Stream and "
                  "Media Info. Shows for example playback control navigation."),
               VLC_FALSE );
 
     add_string( MODULE_STRING "-author-format",
                 "%v - %F disc %c of %C",
                 NULL,
-                N_("Format to use in playlist \"author\""),
+                N_("Format to use in the playlist's \"author\" field."),
                 VCD_TITLE_FMT_LONGTEXT, VLC_TRUE );
 
     add_string( MODULE_STRING "-title-format",
                 "%I %N %L%S - %M %A %v - disc %c of %C %F",
                 NULL,
-                N_("Format to use in playlist \"title\" field"),
+                N_("Format to use in the playlist's \"title\" field."),
                 VCD_TITLE_FMT_LONGTEXT, VLC_FALSE );
 
 vlc_module_end();