mirror of
https://github.com/videolan/vlc.git
synced 2024-12-14 04:04:45 +08:00
* 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:
parent
29b825c39e
commit
64003608f9
@ -1,6 +1,6 @@
|
||||
dnl Autoconf settings for vlc
|
||||
|
||||
AC_INIT(vlc,0.5.2-cvs)
|
||||
AC_INIT(vlc,0.5.2-test2)
|
||||
|
||||
CONFIGURE_LINE="$0 $*"
|
||||
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 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)
|
||||
|
||||
dnl
|
||||
|
@ -344,7 +344,7 @@
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>VLC</string>
|
||||
<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>
|
||||
<string>vlc.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
@ -356,7 +356,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.5.1a</string>
|
||||
<string>0.5.2-test2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>VLC#</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
|
@ -3,7 +3,7 @@
|
||||
* This header provides portable declarations for mutexes & conditions
|
||||
*****************************************************************************
|
||||
* 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>
|
||||
* Samuel Hocevar <sam@via.ecp.fr>
|
||||
@ -72,11 +72,11 @@
|
||||
|
||||
/* Thread priorities */
|
||||
#ifdef SYS_DARWIN
|
||||
# define VLC_THREAD_PRIORITY_LOW 32
|
||||
# define VLC_THREAD_PRIORITY_INPUT 34
|
||||
# define VLC_THREAD_PRIORITY_AUDIO 35
|
||||
# define VLC_THREAD_PRIORITY_VIDEO 31
|
||||
# define VLC_THREAD_PRIORITY_OUTPUT 33
|
||||
# define VLC_THREAD_PRIORITY_LOW 37
|
||||
# define VLC_THREAD_PRIORITY_INPUT 37
|
||||
# define VLC_THREAD_PRIORITY_AUDIO 37
|
||||
# define VLC_THREAD_PRIORITY_VIDEO 37
|
||||
# define VLC_THREAD_PRIORITY_OUTPUT 37
|
||||
|
||||
#elif defined(WIN32) || defined(UNDER_CE)
|
||||
/* Define different priorities for WinNT/2K/XP and Win9x/Me */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* intf.m: MacOS X interface plugin
|
||||
*****************************************************************************
|
||||
* 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>
|
||||
* Christophe Massiot <massiot@via.ecp.fr>
|
||||
@ -406,6 +406,8 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
|
||||
|
||||
[NSThread detachNewThreadSelector: @selector(manage)
|
||||
toTarget: self withObject: nil];
|
||||
|
||||
vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
|
||||
}
|
||||
|
||||
- (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
|
||||
|
744
po/en_GB.po
744
po/en_GB.po
File diff suppressed because it is too large
Load Diff
741
po/vlc.pot
741
po/vlc.pot
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
||||
* libvlc.c: main libvlc source
|
||||
*****************************************************************************
|
||||
* 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>
|
||||
* Samuel Hocevar <sam@zoy.org>
|
||||
@ -138,6 +138,7 @@ int VLC_Create( void )
|
||||
{
|
||||
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
|
||||
* at least we have var_Create */
|
||||
@ -808,8 +809,6 @@ int VLC_Play( int i_object )
|
||||
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 );
|
||||
|
||||
if( !p_playlist )
|
||||
|
Loading…
Reference in New Issue
Block a user