[vlc-devel] [PATCH 3/3] Commenting out unused msgids

Christoph Miebach christoph.miebach at web.de
Fri Apr 26 09:39:04 CEST 2013


---
 include/vlc_config_cat.h            |  2 +-
 modules/access_output/livehttp.c    |  2 +-
 modules/audio_output/waveout.c      |  2 +-
 modules/codec/x264.c                |  4 ++--
 modules/demux/ts.c                  |  4 ++--
 modules/video_output/msw/direct3d.c |  2 +-
 src/libvlc-module.c                 | 20 ++++++++++----------
 7 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/include/vlc_config_cat.h b/include/vlc_config_cat.h
index d4cdaf8..8225069 100644
--- a/include/vlc_config_cat.h
+++ b/include/vlc_config_cat.h
@@ -118,7 +118,7 @@
 #define SDEC_TITLE N_( "Subtitle codecs")
 #define SDEC_HELP N_( "Settings for subtitle, teletext and CC decoders and encoders." )
 
-#define ADVANCED_TITLE N_("General Input" )
+/*#define ADVANCED_TITLE N_("General Input" )*/
 #define ADVANCED_HELP N_( "General input settings. Use with care..." )
 
 /* Sout */
diff --git a/modules/access_output/livehttp.c b/modules/access_output/livehttp.c
index 5ac802d..bf43e22 100644
--- a/modules/access_output/livehttp.c
+++ b/modules/access_output/livehttp.c
@@ -92,7 +92,7 @@ static void Close( vlc_object_t * );
 #define RATECONTROL_TEXT N_("Use muxers rate control mechanism")
 
 #define KEYURI_TEXT N_("AES key URI to place in playlist")
-#define KEYURI_LONGTEXT N_("Location from where client will retrieve the stream decryption key")
+/*#define KEYURI_LONGTEXT N_("Location from where client will retrieve the stream decryption key")*/
 
 #define KEYFILE_TEXT N_("AES key file")
 #define KEYFILE_LONGTEXT N_("File containing the 16 bytes encryption key")
diff --git a/modules/audio_output/waveout.c b/modules/audio_output/waveout.c
index aa2a8f4..10da26a 100644
--- a/modules/audio_output/waveout.c
+++ b/modules/audio_output/waveout.c
@@ -137,7 +137,7 @@ struct aout_sys_t
 #define DEVICE_LONG N_("Select special Audio device, or let windows "\
                        "decide (default), change needs VLC restart "\
                        "to apply.")
-#define DEFAULT_AUDIO_DEVICE N_("Default Audio Device")
+/*#define DEFAULT_AUDIO_DEVICE N_("Default Audio Device")*/
 
 #define AUDIO_CHAN_TEXT N_("Audio output channels")
 #define AUDIO_CHAN_LONGTEXT N_("Channels available for audio output. " \
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 163fd36..bf24f8d 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -321,7 +321,7 @@ static void x264_log( void *, int i_level, const char *psz, va_list );
     "tradeoffs involved in the motion estimation decision process " \
     "(lower = quicker and higher = better quality). Range 1 to 9." )
 
-#define B_RDO_TEXT N_("RD based mode decision for B-frames")
+/*#define B_RDO_TEXT N_("RD based mode decision for B-frames")*/
 #define B_RDO_LONGTEXT N_( "RD based mode decision for B-frames. This " \
     "requires subme 6 (or higher).")
 
@@ -334,7 +334,7 @@ static void x264_log( void *, int i_level, const char *psz, va_list );
 #define CHROMA_ME_LONGTEXT N_( "Chroma ME for subpel and mode decision in " \
     "P-frames.")
 
-#define BIME_TEXT N_("Jointly optimize both MVs in B-frames")
+/*#define BIME_TEXT N_("Jointly optimize both MVs in B-frames")*/
 #define BIME_LONGTEXT N_( "Joint bidirectional motion refinement.")
 
 #define TRANSFORM_8X8DCT_TEXT N_("Adaptive spatial transform size")
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 5ba2f04..20c8914 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -117,8 +117,8 @@ static void Close ( vlc_object_t * );
 #define SILENT_TEXT N_("Silent mode")
 #define SILENT_LONGTEXT N_("Do not complain on encrypted PES.")
 
-#define CAPMT_SYSID_TEXT N_("CAPMT System ID")
-#define CAPMT_SYSID_LONGTEXT N_("Only forward descriptors from this SysID to the CAM.")
+/*#define CAPMT_SYSID_TEXT N_("CAPMT System ID")*/
+/*#define CAPMT_SYSID_LONGTEXT N_("Only forward descriptors from this SysID to the CAM.")*/
 
 #define CPKT_TEXT N_("Packet size in bytes to decrypt")
 #define CPKT_LONGTEXT N_("Specify the size of the TS packet to decrypt. " \
diff --git a/modules/video_output/msw/direct3d.c b/modules/video_output/msw/direct3d.c
index adf2b33..b05a647 100644
--- a/modules/video_output/msw/direct3d.c
+++ b/modules/video_output/msw/direct3d.c
@@ -52,7 +52,7 @@
 static int  Open(vlc_object_t *);
 static void Close(vlc_object_t *);
 
-#define DESKTOP_TEXT N_("Enable desktop mode ")
+/*#define DESKTOP_TEXT N_("Enable desktop mode ")*/
 #define DESKTOP_LONGTEXT N_(\
     "The desktop mode allows you to display the video on the desktop.")
 
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index 39bbe19..bbe8ec0 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -136,8 +136,8 @@ static const char *const ppsz_snap_formats[] =
     "decoding stage will not take place, thus saving some processing power.")
 
 #if 0
-#define MONO_TEXT N_("Force mono audio")
-#define MONO_LONGTEXT N_("This will force a mono audio output.")
+/*#define MONO_TEXT N_("Force mono audio")*/
+/*#define MONO_LONGTEXT N_("This will force a mono audio output.")*/
 #endif
 
 #define GAIN_TEXT N_("Audio gain")
@@ -163,7 +163,7 @@ static const char *const ppsz_snap_formats[] =
 #define AUDIO_RESAMPLER_LONGTEXT N_( \
     "This selects which plugin to use for audio resampling." )
 
-#define MULTICHA_TEXT N_("Audio output channels mode")
+/*#define MULTICHA_TEXT N_("Audio output channels mode")*/
 #define MULTICHA_LONGTEXT N_( \
     "This sets the audio output channels mode that will " \
     "be used by default when possible (ie. if your hardware supports it as " \
@@ -973,7 +973,7 @@ static const char *const ppsz_prefres[] = {
 #define ACCESS_OUTPUT_LONGTEXT N_( \
     "This is a legacy entry to let you configure access output modules")
 
-#define ANN_SAPCTRL_TEXT N_("Control SAP flow")
+/*#define ANN_SAPCTRL_TEXT N_("Control SAP flow")*/
 #define ANN_SAPCTRL_LONGTEXT N_( \
     "If this option is enabled, the flow on " \
     "the SAP multicast address will be controlled. This is needed if you " \
@@ -1029,12 +1029,12 @@ static const char *const ppsz_prefres[] = {
     "priorities. You can use it to tune VLC priority against other " \
     "programs, or against other VLC instances.")
 
-#define USE_STREAM_IMMEDIATE N_("(Experimental) Don't do caching at the access level.")
+/*#define USE_STREAM_IMMEDIATE N_("(Experimental) Don't do caching at the access level.")*/
 #define USE_STREAM_IMMEDIATE_LONGTEXT N_( \
      "This option is useful if you want to lower the latency when " \
      "reading a stream")
 
-#define PLUGIN_PATH_TEXT N_("Modules search path")
+/*#define PLUGIN_PATH_TEXT N_("Modules search path")*/
 #define PLUGIN_PATH_LONGTEXT N_( \
     "Additional path for VLC to look for its modules. You can add " \
     "several paths by concatenating them using \" PATH_SEP \" as separator")
@@ -1393,10 +1393,10 @@ static const char *const mouse_wheel_texts[] =
 #define DEINTERLACE_MODE_KEY_TEXT N_("Cycle deinterlace modes")
 #define DEINTERLACE_MODE_KEY_LONGTEXT N_("Cycle through available deinterlace modes.")
 #define INTF_TOGGLE_FSC_KEY_TEXT N_("Show controller in fullscreen")
-#define INTF_SHOW_KEY_TEXT N_("Show interface")
-#define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows.")
-#define INTF_HIDE_KEY_TEXT N_("Hide interface")
-#define INTF_HIDE_KEY_LONGTEXT N_("Lower the interface below all other windows.")
+/*#define INTF_SHOW_KEY_TEXT N_("Show interface")*/
+/*#define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows.")*/
+/*#define INTF_HIDE_KEY_TEXT N_("Hide interface")*/
+/*#define INTF_HIDE_KEY_LONGTEXT N_("Lower the interface below all other windows.")*/
 #define INTF_BOSS_KEY_TEXT N_("Boss key")
 #define INTF_BOSS_KEY_LONGTEXT N_("Hide the interface and pause playback.")
 #define INTF_POPUP_MENU_KEY_TEXT N_("Context menu")
-- 
1.8.1.4




More information about the vlc-devel mailing list