Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
08399ac4
Commit
08399ac4
authored
Aug 15, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure string list always has text
parent
8e3dd711
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
modules/audio_output/directx.c
modules/audio_output/directx.c
+1
-1
modules/audio_output/file.c
modules/audio_output/file.c
+1
-1
modules/demux/subtitle.c
modules/demux/subtitle.c
+1
-1
modules/stream_out/transcode/transcode.c
modules/stream_out/transcode/transcode.c
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+1
-1
No files found.
modules/audio_output/directx.c
View file @
08399ac4
...
...
@@ -152,7 +152,7 @@ vlc_module_begin ()
FLOAT_LONGTEXT
,
true
)
add_string
(
"directx-audio-speaker"
,
"Windows default"
,
SPEAKER_TEXT
,
SPEAKER_LONGTEXT
,
true
)
change_string_list
(
speaker_list
,
0
,
0
)
change_string_list
(
speaker_list
,
speaker_list
,
NULL
)
add_integer
(
"directx-volume"
,
DSBVOLUME_MAX
,
VOLUME_TEXT
,
VOLUME_LONGTEXT
,
true
)
change_integer_range
(
DSBVOLUME_MIN
,
DSBVOLUME_MAX
)
...
...
modules/audio_output/file.c
View file @
08399ac4
...
...
@@ -113,7 +113,7 @@ vlc_module_begin ()
FILE_LONGTEXT
,
false
)
add_string
(
"audiofile-format"
,
"s16"
,
FORMAT_TEXT
,
FORMAT_TEXT
,
true
)
change_string_list
(
format_list
,
0
,
0
)
change_string_list
(
format_list
,
format_list
,
NULL
)
add_integer
(
"audiofile-channels"
,
0
,
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
true
)
change_integer_range
(
0
,
6
)
...
...
modules/demux/subtitle.c
View file @
08399ac4
...
...
@@ -79,7 +79,7 @@ vlc_module_begin ()
SUB_DELAY_LONGTEXT
,
true
)
add_string
(
"sub-type"
,
"auto"
,
N_
(
"Subtitles format"
),
SUB_TYPE_LONGTEXT
,
true
)
change_string_list
(
ppsz_sub_type
,
NULL
,
NULL
)
change_string_list
(
ppsz_sub_type
,
ppsz_sub_type
,
NULL
)
add_string
(
"sub-description"
,
NULL
,
N_
(
"Subtitles description"
),
SUB_DESCRIPTION_LONGTEXT
,
true
)
set_callbacks
(
Open
,
Close
)
...
...
modules/stream_out/transcode/transcode.c
View file @
08399ac4
...
...
@@ -176,7 +176,7 @@ vlc_module_begin ()
add_string
(
SOUT_CFG_PREFIX
"deinterlace-module"
,
"deinterlace"
,
DEINTERLACE_MODULE_TEXT
,
DEINTERLACE_MODULE_LONGTEXT
,
false
)
change_string_list
(
ppsz_deinterlace_type
,
0
,
0
)
change_string_list
(
ppsz_deinterlace_type
,
ppsz_deinterlace_type
,
NULL
)
add_integer
(
SOUT_CFG_PREFIX
"width"
,
0
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
true
)
add_integer
(
SOUT_CFG_PREFIX
"height"
,
0
,
HEIGHT_TEXT
,
...
...
src/libvlc-module.c
View file @
08399ac4
...
...
@@ -1589,7 +1589,7 @@ vlc_module_begin ()
SNAP_PREFIX_LONGTEXT
,
false
)
add_string
(
"snapshot-format"
,
"png"
,
SNAP_FORMAT_TEXT
,
SNAP_FORMAT_LONGTEXT
,
false
)
change_string_list
(
ppsz_snap_formats
,
NULL
,
0
)
change_string_list
(
ppsz_snap_formats
,
ppsz_snap_formats
,
NULL
)
add_bool
(
"snapshot-preview"
,
true
,
SNAP_PREVIEW_TEXT
,
SNAP_PREVIEW_LONGTEXT
,
false
)
add_bool
(
"snapshot-sequential"
,
false
,
SNAP_SEQUENTIAL_TEXT
,
...
...
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