Commit a0066f40 authored by Christophe Massiot's avatar Christophe Massiot

Fixed a segfault in the OS X preferences panel.

parent 9a7f22d1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header * libvlc.h: main libvlc header
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.46 2003/03/04 23:36:57 massiot Exp $ * $Id: libvlc.h,v 1.47 2003/03/06 09:58:00 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>
...@@ -410,6 +410,8 @@ static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL }; ...@@ -410,6 +410,8 @@ static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL };
"Currently you can choose between implementation 0 (which is the " \ "Currently you can choose between implementation 0 (which is the " \
"default and the fastest), 1 and 2.") "default and the fastest), 1 and 2.")
#define RT_PRIORITY_TEXT N_("Real-time priority")
#define PLAYLIST_USAGE N_("\nPlaylist items:" \ #define PLAYLIST_USAGE N_("\nPlaylist items:" \
"\n *.mpg, *.vob plain MPEG-1/2 files" \ "\n *.mpg, *.vob plain MPEG-1/2 files" \
"\n [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \ "\n [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \
...@@ -577,7 +579,7 @@ vlc_module_begin(); ...@@ -577,7 +579,7 @@ vlc_module_begin();
#endif #endif
#if defined(SYS_DARWIN) #if defined(SYS_DARWIN)
add_integer( "rt-priority", 1, NULL, NULL, NULL, VLC_TRUE ); add_integer( "rt-priority", 1, NULL, RT_PRIORITY_TEXT, NULL, VLC_TRUE );
#endif #endif
/* Usage (mainly useful for cmd line stuff) */ /* Usage (mainly useful for cmd line stuff) */
......
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