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
02298ed6
Commit
02298ed6
authored
May 05, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode {a,s,v}enc are module parameters
Maybe we should split encoders per ES type?
parent
604e62dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+3
-3
No files found.
modules/stream_out/transcode.c
View file @
02298ed6
...
...
@@ -167,7 +167,7 @@ vlc_module_begin ()
set_category
(
CAT_SOUT
)
set_subcategory
(
SUBCAT_SOUT_STREAM
)
set_section
(
N_
(
"Video"
),
NULL
)
add_
string
(
SOUT_CFG_PREFIX
"venc
"
,
NULL
,
NULL
,
VENC_TEXT
,
add_
module
(
SOUT_CFG_PREFIX
"venc"
,
"encoder
"
,
NULL
,
NULL
,
VENC_TEXT
,
VENC_LONGTEXT
,
false
)
add_string
(
SOUT_CFG_PREFIX
"vcodec"
,
NULL
,
NULL
,
VCODEC_TEXT
,
VCODEC_LONGTEXT
,
false
)
...
...
@@ -198,7 +198,7 @@ vlc_module_begin ()
VFILTER_TEXT
,
VFILTER_LONGTEXT
,
false
)
set_section
(
N_
(
"Audio"
),
NULL
)
add_
string
(
SOUT_CFG_PREFIX
"aenc
"
,
NULL
,
NULL
,
AENC_TEXT
,
add_
module
(
SOUT_CFG_PREFIX
"aenc"
,
"encoder
"
,
NULL
,
NULL
,
AENC_TEXT
,
AENC_LONGTEXT
,
false
)
add_string
(
SOUT_CFG_PREFIX
"acodec"
,
NULL
,
NULL
,
ACODEC_TEXT
,
ACODEC_LONGTEXT
,
false
)
...
...
@@ -215,7 +215,7 @@ vlc_module_begin ()
AFILTER_TEXT
,
AFILTER_LONGTEXT
,
false
)
set_section
(
N_
(
"Overlays/Subtitles"
),
NULL
)
add_
string
(
SOUT_CFG_PREFIX
"senc
"
,
NULL
,
NULL
,
SENC_TEXT
,
add_
module
(
SOUT_CFG_PREFIX
"senc"
,
"encoder
"
,
NULL
,
NULL
,
SENC_TEXT
,
SENC_LONGTEXT
,
false
)
add_string
(
SOUT_CFG_PREFIX
"scodec"
,
NULL
,
NULL
,
SCODEC_TEXT
,
SCODEC_LONGTEXT
,
false
)
...
...
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