Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
429
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
90c03c4a
Commit
90c03c4a
authored
5 years ago
by
Lyndon Brown
Committed by
Hugo Beauzée-Luyssen
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
transcode: fix labels on --sout-transcode-soverlay
parent
b82eff67
No related branches found
Branches containing commit
No related tags found
1 merge request
!1130
transcode: fix labels on --sout-transcode-soverlay
Pipeline
#176152
passed with stage
in 17 minutes and 29 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/stream_out/transcode/transcode.c
+3
-2
3 additions, 2 deletions
modules/stream_out/transcode/transcode.c
with
3 additions
and
2 deletions
modules/stream_out/transcode/transcode.c
+
3
−
2
View file @
90c03c4a
...
...
@@ -112,6 +112,8 @@
#define SCODEC_LONGTEXT N_( \
"This is the subtitle codec that will be used." )
#define SOVERLAY_TEXT N_("Subtitle overlay")
#define SFILTER_TEXT N_("Overlays")
#define SFILTER_LONGTEXT N_( \
"This allows you to add overlays (also known as \"subpictures\") on the "\
...
...
@@ -198,8 +200,7 @@ vlc_module_begin ()
SENC_TEXT
,
SENC_LONGTEXT
)
add_string
(
SOUT_CFG_PREFIX
"scodec"
,
NULL
,
SCODEC_TEXT
,
SCODEC_LONGTEXT
)
add_bool
(
SOUT_CFG_PREFIX
"soverlay"
,
false
,
SCODEC_TEXT
,
SCODEC_LONGTEXT
)
add_bool
(
SOUT_CFG_PREFIX
"soverlay"
,
false
,
SOVERLAY_TEXT
,
NULL
)
add_module_list
(
SOUT_CFG_PREFIX
"sfilter"
,
"sub source"
,
NULL
,
SFILTER_TEXT
,
SFILTER_LONGTEXT
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment