Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
29217b27
Commit
29217b27
authored
Nov 04, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrong options descriptions in TS muxer
parent
cdfa0c72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+8
-2
No files found.
modules/mux/mpeg/ts.c
View file @
29217b27
...
...
@@ -104,6 +104,12 @@ static void Close ( vlc_object_t * );
"PCRs (Program Clock Reference) will be sent. " \
"This value should be below 100ms. (default is 30)")
#define BMIN_TEXT N_( "Minimum B (deprecated)")
#define BMIN_LONGTEXT N_( "This setting is deprecated and not used anymore" )
#define BMAX_TEXT N_( "Maximum B (deprecated)")
#define BMAX_LONGTEXT N_( "This setting is deprecated and not used anymore")
#define DTS_TEXT N_("DTS delay (ms)")
#define DTS_LONGTEXT N_("This option will delay the DTS (decoding time " \
"stamps) and PTS (presentation timestamps) of the data in the " \
...
...
@@ -142,9 +148,9 @@ vlc_module_begin();
add_integer
(
SOUT_CFG_PREFIX
"pcr"
,
30
,
NULL
,
PCR_TEXT
,
PCR_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"bmin"
,
0
,
NULL
,
PCR_TEXT
,
PCR
_LONGTEXT
,
add_integer
(
SOUT_CFG_PREFIX
"bmin"
,
0
,
NULL
,
BMIN_TEXT
,
BMIN
_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"bmax"
,
0
,
NULL
,
PCR_TEXT
,
PCR
_LONGTEXT
,
add_integer
(
SOUT_CFG_PREFIX
"bmax"
,
0
,
NULL
,
BMAX_TEXT
,
BMAX
_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"dts-delay"
,
200
,
NULL
,
DTS_TEXT
,
DTS_LONGTEXT
,
VLC_TRUE
);
...
...
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