]> git.sesse.net Git - vlc/commitdiff
* moved the capability definition up one line. the config options follow the capabili...
authorDerk-Jan Hartman <hartman@videolan.org>
Tue, 17 Jun 2003 20:03:50 +0000 (20:03 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Tue, 17 Jun 2003 20:03:50 +0000 (20:03 +0000)
modules/access/cdda.c

index 361cb1e2ddc97f5a471854c300788592035ae5c3..20767b5a208b8ada506c56d96d55d9adedcf5958 100644 (file)
@@ -2,7 +2,7 @@
  * cdda.c : CD digital audio input module for vlc
  *****************************************************************************
  * Copyright (C) 2000 VideoLAN
- * $Id: cdda.c,v 1.4 2003/05/22 12:00:56 gbazin Exp $
+ * $Id: cdda.c,v 1.5 2003/06/17 20:03:50 hartman Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Gildas Bazin <gbazin@netcourrier.com>
@@ -90,8 +90,8 @@ static int  CDDADemux        ( input_thread_t * p_input );
 
 vlc_module_begin();
     set_description( _("CD Audio input") );
-    add_integer( "cdda-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
     set_capability( "access", 70 );
+    add_integer( "cdda-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
     set_callbacks( CDDAOpen, CDDAClose );
     add_shortcut( "cdda" );