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
6149d37d
Commit
6149d37d
authored
Apr 22, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x264: add forgotten help-text to preset/tune options
parent
4bf223b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/codec/x264.c
modules/codec/x264.c
+6
-2
No files found.
modules/codec/x264.c
View file @
6149d37d
...
...
@@ -385,6 +385,10 @@ static void Close( vlc_object_t * );
#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." )
static
const
char
*
const
enc_me_list
[]
=
{
"dia"
,
"hex"
,
"umh"
,
"esa"
,
"tesa"
};
static
const
char
*
const
enc_me_list_text
[]
=
...
...
@@ -669,9 +673,9 @@ vlc_module_begin ()
add_string
(
SOUT_CFG_PREFIX
"stats"
,
"x264_2pass.log"
,
NULL
,
STATS_TEXT
,
STATS_LONGTEXT
,
false
)
add_string
(
SOUT_CFG_PREFIX
"preset"
,
NULL
,
NULL
,
NULL
,
NULL
,
false
)
add_string
(
SOUT_CFG_PREFIX
"preset"
,
NULL
,
NULL
,
PRESET_TEXT
,
PRESET_TEXT
,
false
)
change_string_list
(
x264_preset_names
,
x264_preset_names
,
0
);
add_string
(
SOUT_CFG_PREFIX
"tune"
,
NULL
,
NULL
,
NULL
,
NULL
,
false
)
add_string
(
SOUT_CFG_PREFIX
"tune"
,
NULL
,
NULL
,
TUNE_TEXT
,
TUNE_TEXT
,
false
)
change_string_list
(
x264_tune_names
,
x264_tune_names
,
0
);
vlc_module_end
()
...
...
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