[vlc-commits] x264: simpler option desc
Jean-Baptiste Kempf
git at videolan.org
Wed Apr 11 18:48:36 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Apr 11 18:48:12 2012 +0200| [44f8a09887e78a84d29f9010a67fbc23aa83f7c5] | committer: Jean-Baptiste Kempf
x264: simpler option desc
Close #6598
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=44f8a09887e78a84d29f9010a67fbc23aa83f7c5
---
modules/codec/x264.c | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 05c76b1..c09f8fe 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -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_LONGTEXT, 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
More information about the vlc-commits
mailing list