Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
a0066f40
Commit
a0066f40
authored
Mar 06, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a segfault in the OS X preferences panel.
parent
9a7f22d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/libvlc.h
src/libvlc.h
+4
-2
No files found.
src/libvlc.h
View file @
a0066f40
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.4
6 2003/03/04 23:36:57
massiot Exp $
* $Id: libvlc.h,v 1.4
7 2003/03/06 09:58:00
massiot Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -410,6 +410,8 @@ static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL };
"Currently you can choose between implementation 0 (which is the " \
"default and the fastest), 1 and 2.")
#define RT_PRIORITY_TEXT N_("Real-time priority")
#define PLAYLIST_USAGE N_("\nPlaylist items:" \
"\n *.mpg, *.vob plain MPEG-1/2 files" \
"\n [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \
...
...
@@ -577,7 +579,7 @@ vlc_module_begin();
#endif
#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
/* Usage (mainly useful for cmd line stuff) */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment