Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
199e85e3
Commit
199e85e3
authored
Sep 02, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add_string wants a string.
parent
57c35cd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/control/rc.c
modules/control/rc.c
+2
-2
modules/stream_out/mosaic_bridge.c
modules/stream_out/mosaic_bridge.c
+1
-1
No files found.
modules/control/rc.c
View file @
199e85e3
...
...
@@ -199,9 +199,9 @@ vlc_module_begin ()
#if defined (HAVE_ISATTY)
add_bool
(
"rc-fake-tty"
,
0
,
NULL
,
TTY_TEXT
,
TTY_LONGTEXT
,
true
)
#endif
add_string
(
"rc-unix"
,
0
,
NULL
,
UNIX_TEXT
,
UNIX_LONGTEXT
,
true
)
add_string
(
"rc-unix"
,
NULL
,
NULL
,
UNIX_TEXT
,
UNIX_LONGTEXT
,
true
)
#endif
add_string
(
"rc-host"
,
0
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
true
)
add_string
(
"rc-host"
,
NULL
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
true
)
set_capability
(
"interface"
,
20
)
...
...
modules/stream_out/mosaic_bridge.c
View file @
199e85e3
...
...
@@ -157,7 +157,7 @@ vlc_module_begin ()
HEIGHT_LONGTEXT
,
true
)
add_string
(
CFG_PREFIX
"sar"
,
"1:1"
,
NULL
,
RATIO_TEXT
,
RATIO_LONGTEXT
,
false
)
add_string
(
CFG_PREFIX
"chroma"
,
0
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
add_string
(
CFG_PREFIX
"chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
false
)
add_module_list
(
CFG_PREFIX
"vfilter"
,
"video filter2"
,
...
...
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