Commit 467f7bc6 authored by Gildas Bazin's avatar Gildas Bazin

* Bumped version to 0.6.0-test1
* modules/access/cdda.c: decreased the priority of the cdda plugin.
parent b1717cdd
dnl Autoconf settings for vlc
AC_INIT(vlc,0.6.0-cvs)
AC_INIT(vlc,0.6.0-test1)
CONFIGURE_LINE="$0 $*"
CODENAME="Natalya"
......@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
dnl them. And we need the comma otherwize automake will choke on it.
AM_INIT_AUTOMAKE(vlc,0.6.0-cvs)
AM_INIT_AUTOMAKE(vlc,0.6.0-test1)
AM_CONFIG_HEADER(config.h)
dnl
......
/* Localized versions of Info.plist keys */
CFBundleName = "VLC";
CFBundleShortVersionString = "0.6.0-cvs";
CFBundleGetInfoString = "VLC media player 0.6.0-cvs, Copyright (c) 1996-2003 VideoLAN.";
CFBundleShortVersionString = "0.6.0-test1";
CFBundleGetInfoString = "VLC media player 0.6.0-test1, Copyright (c) 1996-2003 VideoLAN.";
NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
......@@ -415,7 +415,7 @@
<key>CFBundleExecutable</key>
<string>VLC</string>
<key>CFBundleGetInfoString</key>
<string>VLC media player 0.6.0-cvs, Copyright (c) 1996-2003 VideoLAN.</string>
<string>VLC media player 0.6.0-test1, Copyright (c) 1996-2003 VideoLAN.</string>
<key>CFBundleIconFile</key>
<string>vlc.icns</string>
<key>CFBundleIdentifier</key>
......@@ -427,7 +427,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.0-cvs</string>
<string>0.6.0-test1</string>
<key>CFBundleSignature</key>
<string>VLC#</string>
<key>CFBundleURLTypes</key>
......@@ -474,7 +474,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.6.0-cvs</string>
<string>0.6.0-test1</string>
<key>NSAppleScriptEnabled</key>
<string>YES</string>
<key>NSMainNibFile</key>
......
......@@ -2,7 +2,7 @@
* cdda.c : CD digital audio input module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: cdda.c,v 1.2 2003/05/18 15:44:03 gbazin Exp $
* $Id: cdda.c,v 1.3 2003/05/19 20:47:16 gbazin Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
......@@ -91,7 +91,7 @@ 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", 80 );
set_capability( "access", 70 );
set_callbacks( CDDAOpen, CDDAClose );
add_shortcut( "cdda" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment