]> git.sesse.net Git - vlc/blobdiff - src/libvlc-module.c
Remove hacking fullscreen control invocation - fixes #1653
[vlc] / src / libvlc-module.c
index 1fdb0465fdfe595a92a9aaf3a97baa2683f74e1e..3f5f458135f6d9926dc42c94792b912206a3ae29 100644 (file)
@@ -69,9 +69,11 @@ static const char *const ppsz_language[] =
     "oc",
     "fa",
     "pl",
+    "pt_PT",
     "ro",
     "ru",
     "zh_CN",
+    "sr",
     "sk",
     "sl",
     "es",
@@ -105,9 +107,11 @@ static const char *const ppsz_language_text[] =
     N_("Occitan"),
     N_("Persian"),
     N_("Polish"),
+    N_("Portuguese"),
     N_("Romanian"),
     N_("Russian"),
     N_("Simplified Chinese"),
+    N_("Serbian"),
     N_("Slovak"),
     N_("Slovenian"),
     N_("Spanish"),
@@ -991,6 +995,12 @@ static const char *const ppsz_clock_descriptions[] =
 #define MINIMIZE_THREADS_LONGTEXT N_( \
      "This option minimizes the number of threads needed to run VLC.")
 
+#define USE_STREAM_IMMEDIATE N_("(Experimental) Use the StreamImmediate " \
+    "method and minimize the caching done 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_LONGTEXT N_( \
     "Additional path for VLC to look for its modules. You can add " \
@@ -1812,6 +1822,11 @@ vlc_module_begin();
               MINIMIZE_THREADS_LONGTEXT, true );
         change_need_restart();
 
+    add_bool( "use-stream-immediate", false, NULL,
+               USE_STREAM_IMMEDIATE, USE_STREAM_IMMEDIATE_LONGTEXT, false );
+    add_bool( "auto-adjust-pts-delay", false, NULL,
+              "auto-adjust-pts-delay", "auto-adjust-pts-delay", false );
+
 #if !defined(__APPLE__) && !defined(SYS_BEOS) && defined(LIBVLC_USE_PTHREAD)
     add_bool( "rt-priority", false, NULL, RT_PRIORITY_TEXT,
               RT_PRIORITY_LONGTEXT, true );
@@ -1967,6 +1982,7 @@ vlc_module_begin();
  *  open                          KEY_MODIFIER_COMMAND|'o'
  *  open disk                     KEY_MODIFIER_COMMAND|'d'
  *  open network                  KEY_MODIFIER_COMMAND|'n'
+ *  open capture                  KEY_MODIFIER_COMMAND|'r'
  *  save playlist                 KEY_MODIFIER_COMMAND|'s'
  *  playlist random               KEY_MODIFIER_COMMAND|'z'
  *  playlist repeat all           KEY_MODIFIER_COMMAND|'l'