[vlc-commits] commit: x264: add forgotten help-text to preset/tune options ( Ilkka Ollakka )
git at videolan.org
git at videolan.org
Mon May 10 16:08:24 CEST 2010
vlc/vlc-1.1 | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Thu Apr 22 13:10:48 2010 +0300| [02240a9b1884baee9e5f83daf83a348f93904782] | committer: Ilkka Ollakka
x264: add forgotten help-text to preset/tune options
(cherry picked from commit 6149d37d00adab4e219b22653518f67754d54566)
Signed-off-by: Ilkka Ollakka <ileoo at iki.fi>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=02240a9b1884baee9e5f83daf83a348f93904782
---
modules/codec/x264.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index de5493c..e7c4264 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -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 ()
More information about the vlc-commits
mailing list