* Bumped up revision number to 0.5.2-test2

* Another attempt at fixing the "VLC is locking up OS X" problem
* Updated po files
This commit is contained in:
Christophe Massiot 2003-02-27 08:19:02 +00:00
parent 29b825c39e
commit 64003608f9
16 changed files with 4415 additions and 3882 deletions

View File

@ -1,6 +1,6 @@
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
AC_INIT(vlc,0.5.2-cvs) AC_INIT(vlc,0.5.2-test2)
CONFIGURE_LINE="$0 $*" CONFIGURE_LINE="$0 $*"
CODENAME="Natalya" CODENAME="Natalya"
@ -11,7 +11,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.5.2-cvs) AM_INIT_AUTOMAKE(vlc,0.5.2-test2)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
dnl dnl

View File

@ -344,7 +344,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>VLC</string> <string>VLC</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>VLC media player 0.5.1a, Copyright (c) 1996-2003 VideoLAN.</string> <string>VLC media player 0.5.2-test2, 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>
@ -356,7 +356,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.5.1a</string> <string>0.5.2-test2</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>

View File

@ -3,7 +3,7 @@
* This header provides portable declarations for mutexes & conditions * This header provides portable declarations for mutexes & conditions
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2002 VideoLAN * Copyright (C) 1999, 2002 VideoLAN
* $Id: vlc_threads.h,v 1.28 2003/02/06 23:55:28 massiot Exp $ * $Id: vlc_threads.h,v 1.29 2003/02/27 08:19:02 massiot Exp $
* *
* Authors: Jean-Marc Dressler <polux@via.ecp.fr> * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr> * Samuel Hocevar <sam@via.ecp.fr>
@ -72,11 +72,11 @@
/* Thread priorities */ /* Thread priorities */
#ifdef SYS_DARWIN #ifdef SYS_DARWIN
# define VLC_THREAD_PRIORITY_LOW 32 # define VLC_THREAD_PRIORITY_LOW 37
# define VLC_THREAD_PRIORITY_INPUT 34 # define VLC_THREAD_PRIORITY_INPUT 37
# define VLC_THREAD_PRIORITY_AUDIO 35 # define VLC_THREAD_PRIORITY_AUDIO 37
# define VLC_THREAD_PRIORITY_VIDEO 31 # define VLC_THREAD_PRIORITY_VIDEO 37
# define VLC_THREAD_PRIORITY_OUTPUT 33 # define VLC_THREAD_PRIORITY_OUTPUT 37
#elif defined(WIN32) || defined(UNDER_CE) #elif defined(WIN32) || defined(UNDER_CE)
/* Define different priorities for WinNT/2K/XP and Win9x/Me */ /* Define different priorities for WinNT/2K/XP and Win9x/Me */

View File

@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin * intf.m: MacOS X interface plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2002-2003 VideoLAN * Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.61 2003/02/23 05:53:53 jlj Exp $ * $Id: intf.m,v 1.62 2003/02/27 08:19:02 massiot Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
@ -406,6 +406,8 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
[NSThread detachNewThreadSelector: @selector(manage) [NSThread detachNewThreadSelector: @selector(manage)
toTarget: self withObject: nil]; toTarget: self withObject: nil];
vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
} }
- (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename

768
po/de.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

746
po/fr.po

File diff suppressed because it is too large Load Diff

757
po/it.po

File diff suppressed because it is too large Load Diff

754
po/ja.po

File diff suppressed because it is too large Load Diff

779
po/nl.po

File diff suppressed because it is too large Load Diff

743
po/no.po

File diff suppressed because it is too large Load Diff

752
po/pl.po

File diff suppressed because it is too large Load Diff

742
po/ru.po

File diff suppressed because it is too large Load Diff

742
po/sv.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
* libvlc.c: main libvlc source * libvlc.c: main libvlc source
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.67 2003/02/26 19:39:43 gbazin Exp $ * $Id: libvlc.c,v 1.68 2003/02/27 08:19:02 massiot Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
@ -138,6 +138,7 @@ int VLC_Create( void )
{ {
return i_ret; return i_ret;
} }
vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
/* Now that the thread system is initialized, we don't have much, but /* Now that the thread system is initialized, we don't have much, but
* at least we have var_Create */ * at least we have var_Create */
@ -808,8 +809,6 @@ int VLC_Play( int i_object )
return VLC_ENOOBJ; return VLC_ENOOBJ;
} }
vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD ); p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
if( !p_playlist ) if( !p_playlist )