]> git.sesse.net Git - vlc/blobdiff - include/vlc_config_cat.h
Qt: remove the no-qt-blingbling option. Use the toolbar editor.
[vlc] / include / vlc_config_cat.h
index 9c19bfd5963ff0918c69b80d14991983522dca17..da5c2c38b956b527d5471c51c8090a597351f63f 100644 (file)
     "Common settings you may want to alter are HTTP proxy or " \
     "caching settings." )
 
-#define ACCESS_FILTER_TITLE N_( "Access filters" )
-#define ACCESS_FILTER_HELP N_( \
-    "Access filters are special modules that allow advanced operations on " \
+#define STREAM_FILTER_TITLE N_( "Stream filters" )
+#define STREAM_FILTER_HELP N_( \
+    "Stream filters are special modules that allow advanced operations on " \
     "the input side of VLC. You should not touch anything here unless you " \
     "know what you are doing." )
 
@@ -260,11 +260,11 @@ static const struct config_category_t categories_array[] =
     { CAT_INPUT, INPUT_TITLE, INPUT_HELP },
     { SUBCAT_INPUT_GENERAL, ADVANCED_TITLE, ADVANCED_HELP },
     { SUBCAT_INPUT_ACCESS, ACCESS_TITLE, ACCESS_HELP },
-    { SUBCAT_INPUT_ACCESS_FILTER, ACCESS_FILTER_TITLE, ACCESS_FILTER_HELP },
     { SUBCAT_INPUT_DEMUX, DEMUX_TITLE, DEMUX_HELP },
     { SUBCAT_INPUT_VCODEC, VDEC_TITLE, VDEC_HELP },
     { SUBCAT_INPUT_ACODEC, ADEC_TITLE, ADEC_HELP },
     { SUBCAT_INPUT_SCODEC, SDEC_TITLE, SDEC_HELP },
+    { SUBCAT_INPUT_STREAM_FILTER, STREAM_FILTER_TITLE, STREAM_FILTER_HELP },
 
     { CAT_SOUT, SOUT_TITLE, SOUT_HELP },
     { SUBCAT_SOUT_GENERAL, GENERAL_TITLE, SOUT_GENERAL_HELP },
@@ -286,6 +286,7 @@ static const struct config_category_t categories_array[] =
     { -1, NULL, NULL }
 };
 
+LIBVLC_USED
 static inline const char *config_CategoryNameGet( int i_value )
 {
     int i = 0 ;
@@ -300,6 +301,7 @@ static inline const char *config_CategoryNameGet( int i_value )
     return NULL;
 }
 
+LIBVLC_USED
 static inline const char *config_CategoryHelpGet( int i_value )
 {
     int i = 0 ;