Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
44f8a098
Commit
44f8a098
authored
Apr 11, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x264: simpler option desc
Close #6598
parent
5deeed2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/codec/x264.c
modules/codec/x264.c
+3
-6
No files found.
modules/codec/x264.c
View file @
44f8a098
...
...
@@ -404,11 +404,8 @@ static void x264_log( void *, int i_level, const char *psz, va_list );
"Currently default can cause sync-issues on unmuxable output, like rtsp-output without ts-mux" )
#define HRD_TEXT N_("HRD-timing information")
#define HRD_LONGTEXT N_("HRD-timing information")
#define TUNE_TEXT N_("Tune the settings for a particular type of source or situation. " \
"Overridden by user settings." )
#define PRESET_TEXT N_("Use preset as default settings. Overridden by user settings." )
#define TUNE_TEXT N_("Default tune setting used" )
#define PRESET_TEXT N_("Default preset setting used" )
static
const
char
*
const
enc_me_list
[]
=
{
"dia"
,
"hex"
,
"umh"
,
"esa"
,
"tesa"
};
...
...
@@ -533,7 +530,7 @@ vlc_module_begin ()
add_integer
(
SOUT_CFG_PREFIX
"slice-max-mbs"
,
0
,
SLICE_MAX_MBS
,
SLICE_MAX_MBS_LONGTEXT
,
true
)
#if X264_BUILD >= 89
add_string
(
SOUT_CFG_PREFIX
"hrd"
,
"none"
,
HRD_TEXT
,
HRD_
LONG
TEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"hrd"
,
"none"
,
HRD_TEXT
,
HRD_TEXT
,
true
)
change_string_list
(
x264_nal_hrd_names
,
x264_nal_hrd_names
,
0
);
#endif
...
...
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