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 dnl Autoconf settings for vlc
AC_INIT(vlc,0.6.0-cvs) AC_INIT(vlc,0.6.0-test1)
CONFIGURE_LINE="$0 $*" CONFIGURE_LINE="$0 $*"
CODENAME="Natalya" CODENAME="Natalya"
...@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM ...@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support 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. 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) AM_CONFIG_HEADER(config.h)
dnl dnl
......
/* Localized versions of Info.plist keys */ /* Localized versions of Info.plist keys */
CFBundleName = "VLC"; CFBundleName = "VLC";
CFBundleShortVersionString = "0.6.0-cvs"; CFBundleShortVersionString = "0.6.0-test1";
CFBundleGetInfoString = "VLC media player 0.6.0-cvs, Copyright (c) 1996-2003 VideoLAN."; CFBundleGetInfoString = "VLC media player 0.6.0-test1, Copyright (c) 1996-2003 VideoLAN.";
NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN."; NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
...@@ -415,7 +415,7 @@ ...@@ -415,7 +415,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>VLC</string> <string>VLC</string>
<key>CFBundleGetInfoString</key> <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> <key>CFBundleIconFile</key>
<string>vlc.icns</string> <string>vlc.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
...@@ -427,7 +427,7 @@ ...@@ -427,7 +427,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.6.0-cvs</string> <string>0.6.0-test1</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
...@@ -474,7 +474,7 @@ ...@@ -474,7 +474,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.6.0-cvs</string> <string>0.6.0-test1</string>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* cdda.c : CD digital audio input module for vlc * cdda.c : CD digital audio input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000 VideoLAN * 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> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com> * Gildas Bazin <gbazin@netcourrier.com>
...@@ -91,7 +91,7 @@ static int CDDADemux ( input_thread_t * p_input ); ...@@ -91,7 +91,7 @@ static int CDDADemux ( input_thread_t * p_input );
vlc_module_begin(); vlc_module_begin();
set_description( _("CD Audio input") ); set_description( _("CD Audio input") );
add_integer( "cdda-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE ); 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 ); set_callbacks( CDDAOpen, CDDAClose );
add_shortcut( "cdda" ); 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