Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
589a6b50
Commit
589a6b50
authored
Sep 24, 2010
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_output/xcb: fix description strings for --xvideo-format-id config option
parent
b01d8a39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
modules/video_output/xcb/xvideo.c
modules/video_output/xcb/xvideo.c
+7
-2
No files found.
modules/video_output/xcb/xvideo.c
View file @
589a6b50
...
...
@@ -44,6 +44,11 @@
"XVideo hardware adaptor to use. By default, VLC will " \
"use the first functional adaptor.")
#define FORMAT_TEXT N_("XVideo format id")
#define FORMAT_LONGTEXT N_( \
"XVideo image format id to use. By default, VLC will " \
"try to use the best match for the video being played.")
#define SHM_TEXT N_("Use shared memory")
#define SHM_LONGTEXT N_( \
"Use shared memory to communicate between VLC and the X server.")
...
...
@@ -64,8 +69,8 @@ vlc_module_begin ()
add_integer
(
"xvideo-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_integer
(
"xvideo-format-id"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR
_LONGTEXT
,
true
)
add_integer
(
"xvideo-format-id"
,
0
,
NULL
,
FORMAT_TEXT
,
FORMAT
_LONGTEXT
,
true
)
add_bool
(
"x11-shm"
,
true
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
add_deprecated_alias
(
"xvideo-shm"
)
add_shortcut
(
"xcb-xv"
,
"xv"
,
"xvideo"
,
"xid"
)
...
...
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