libvlc-module.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:123k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc.h: Options for the main (libvlc itself) module
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2006 the VideoLAN team
  5.  * $Id: 62611eee891617587dcfcc6f30f314287ec2d0b8 $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Gildas Bazin <gbazin@videolan.org>
  10.  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. // Pretend we are a builtin module
  27. #define MODULE_NAME main
  28. #define MODULE_PATH main
  29. #define __BUILTIN__
  30. #ifdef HAVE_CONFIG_H
  31. # include "config.h"
  32. #endif
  33. #include <vlc_common.h>
  34. #include <vlc_plugin.h>
  35. #include "libvlc.h"
  36. //#define Nothing here, this is just to prevent update-po from being stupid
  37. #include "vlc_keys.h"
  38. #include "vlc_meta.h"
  39. #if defined (WIN32) || defined (__APPLE__)
  40. static const char *const ppsz_language[] =
  41. {
  42.     "auto",
  43.     "en",
  44.     "ar",
  45.     "bn",
  46.     "pt_BR",
  47.     "en_GB",
  48.     "bg",
  49.     "ca",
  50.     "zh_TW",
  51.     "cs",
  52.     "da",
  53.     "nl",
  54.     "fi",
  55.     "fr",
  56.     "gl",
  57.     "ka",
  58.     "de",
  59.     "he",
  60.     "hr",
  61.     "hu",
  62.     "id",
  63.     "it",
  64.     "ja",
  65.     "ko",
  66.     "lt",
  67.     "mn",
  68.     "ms",
  69.     "nn",
  70.     "kk",
  71.     "km",
  72.     "oc",
  73.     "fa",
  74.     "pl",
  75.     "pt_PT",
  76.     "pa",
  77.     "ro",
  78.     "ru",
  79.     "zh_CN",
  80.     "sr",
  81.     "sk",
  82.     "sl",
  83.     "ckb",
  84.     "es",
  85.     "sv",
  86.     "tr",
  87.     "uk",
  88.     "vi",
  89.     "wa",
  90. };
  91. static const char *const ppsz_language_text[] =
  92. {
  93.     N_("Auto"),
  94.     "American English",
  95.     "ﻉﺮﺒﻳ",
  96.     "বাংলা",
  97.     "Português Brasileiro",
  98.     "British English",
  99.     "български език",
  100.     "Català",
  101.     "正體中文",
  102.     "Čeština",
  103.     "Dansk",
  104.     "Nederlands",
  105.     "Suomi",
  106.     "Français",
  107.     "Galego",
  108.     "ქართული",
  109.     "Deutsch",
  110.     "עברית",
  111.     "hrvatski",
  112.     "Magyar",
  113.     "Bahasa Indonesia",
  114.     "Italiano",
  115.     "日本語",
  116.     "한국어",
  117.     "lietuvių",
  118.     "Монгол хэл",
  119.     "Melayu",
  120.     "Nynorsk",
  121.     "Қазақ тілі",
  122.     "ភាសាខ្មែរ",
  123.     "Occitan",
  124.     "ﻑﺍﺮﺳی",
  125.     "Polski",
  126.     "Português",
  127.     "ਪੰਜਾਬੀ",
  128.     "Română",
  129.     "Русский",
  130.     "简体中文",
  131.     "српски",
  132.     "Slovensky",
  133.     "slovenščina",
  134.     "کوردیی سۆرانی",
  135.     "Español",
  136.     "Svenska",
  137.     "Türkçe",
  138.     "украї́нська мо́ва",
  139.     "tiếng Việt",
  140.     "Walon",
  141. };
  142. #endif
  143. static const char *const ppsz_snap_formats[] =
  144. { "png", "jpg" };
  145. /*****************************************************************************
  146.  * Configuration options for the main program. Each module will also separatly
  147.  * define its own configuration options.
  148.  * Look into configuration.h if you need to know more about the following
  149.  * macros.
  150.  *****************************************************************************/
  151. /*****************************************************************************
  152.  * Intf
  153.  ****************************************************************************/
  154. // DEPRECATED
  155. #define INTF_CAT_LONGTEXT N_( 
  156.     "These options allow you to configure the interfaces used by VLC. " 
  157.     "You can select the main interface, additional " 
  158.     "interface modules, and define various related options." )
  159. #define INTF_TEXT N_("Interface module")
  160. #define INTF_LONGTEXT N_( 
  161.     "This is the main interface used by VLC. " 
  162.     "The default behavior is to automatically select the best module " 
  163.     "available.")
  164. #define EXTRAINTF_TEXT N_("Extra interface modules")
  165. #define EXTRAINTF_LONGTEXT N_( 
  166.     "You can select "additional interfaces" for VLC. " 
  167.     "They will be launched in the background in addition to the default " 
  168.     "interface. Use a comma separated list of interface modules. (common " 
  169.     "values are "rc" (remote control), "http", "gestures" ...)")
  170. #define CONTROL_TEXT N_("Control interfaces")
  171. #define CONTROL_LONGTEXT N_( 
  172.     "You can select control interfaces for VLC.")
  173. #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
  174. #define VERBOSE_LONGTEXT N_( 
  175.     "This is the verbosity level (0=only errors and " 
  176.     "standard messages, 1=warnings, 2=debug).")
  177. #define VERBOSE_OBJECTS_TEXT N_("Choose which objects should print debug " 
  178.     "message")
  179. #define VERBOSE_OBJECTS_LONGTEXT N_( 
  180.     "This is a ',' separated string, each objects should be prefixed by " 
  181.     "a '+' or a '-' to respectively enable or disable it. The keyword " 
  182.     "'all' refers to all objects. Objects can be refered to by their " 
  183.     "type or module name. Rules applying to named objects take precendence " 
  184.     "over rules applying to object types. Note that you still need to " 
  185.     "use -vvv to actually display debug message.")
  186. #define QUIET_TEXT N_("Be quiet")
  187. #define QUIET_LONGTEXT N_( 
  188.     "Turn off all warning and information messages.")
  189. #define OPEN_TEXT N_("Default stream")
  190. #define OPEN_LONGTEXT N_( 
  191.     "This stream will always be opened at VLC startup." )
  192. #define LANGUAGE_TEXT N_("Language")
  193. #define LANGUAGE_LONGTEXT N_( "You can manually select a language for the " 
  194.     "interface. The system language is auto-detected if "auto" is " 
  195.     "specified here." )
  196. #define COLOR_TEXT N_("Color messages")
  197. #define COLOR_LONGTEXT N_( 
  198.     "This enables colorization of the messages sent to the console " 
  199.     "Your terminal needs Linux color support for this to work.")
  200. #define ADVANCED_TEXT N_("Show advanced options")
  201. #define ADVANCED_LONGTEXT N_( 
  202.     "When this is enabled, the preferences and/or interfaces will " 
  203.     "show all available options, including those that most users should " 
  204.     "never touch.")
  205. #define SHOWINTF_TEXT N_("Show interface with mouse")
  206. #define SHOWINTF_LONGTEXT N_( 
  207.     "When this is enabled, the interface is shown when you move the mouse to "
  208.     "the edge of the screen in fullscreen mode." )
  209. #define INTERACTION_TEXT N_("Interface interaction")
  210. #define INTERACTION_LONGTEXT N_( 
  211.     "When this is enabled, the interface will show a dialog box each time " 
  212.     "some user input is required." )
  213. /*****************************************************************************
  214.  * Audio
  215.  ****************************************************************************/
  216. // DEPRECATED
  217. #define AOUT_CAT_LONGTEXT N_( 
  218.     "These options allow you to modify the behavior of the audio " 
  219.     "subsystem, and to add audio filters which can be used for " 
  220.     "post processing or visual effects (spectrum analyzer, etc.). " 
  221.     "Enable these filters here, and configure them in the "audio filters" " 
  222.     "modules section.")
  223. #define AOUT_TEXT N_("Audio output module")
  224. #define AOUT_LONGTEXT N_( 
  225.     "This is the audio output method used by VLC. " 
  226.     "The default behavior is to automatically select the best method " 
  227.     "available.")
  228. #define AUDIO_TEXT N_("Enable audio")
  229. #define AUDIO_LONGTEXT N_( 
  230.     "You can completely disable the audio output. The audio " 
  231.     "decoding stage will not take place, thus saving some processing power.")
  232. #if 0
  233. #define MONO_TEXT N_("Force mono audio")
  234. #define MONO_LONGTEXT N_("This will force a mono audio output.")
  235. #endif
  236. #define VOLUME_TEXT N_("Default audio volume")
  237. #define VOLUME_LONGTEXT N_( 
  238.     "You can set the default audio output volume here, in a range from 0 to " 
  239.     "1024.")
  240. #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
  241. #define VOLUME_SAVE_LONGTEXT N_( 
  242.     "This saves the audio output volume when you use the mute function. " 
  243.     "You should not change this option manually.")
  244. #define VOLUME_STEP_TEXT N_("Audio output volume step")
  245. #define VOLUME_STEP_LONGTEXT N_( 
  246.     "The step size of the volume is adjustable using this option, " 
  247.     "in a range from 0 to 1024." )
  248. #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
  249. #define AOUT_RATE_LONGTEXT N_( 
  250.     "You can force the audio output frequency here. Common values are " 
  251.     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
  252. #if !defined( __APPLE__ )
  253. #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
  254. #define AOUT_RESAMP_LONGTEXT N_( 
  255.     "This uses a high quality audio resampling algorithm. High quality " 
  256.     "audio resampling can be processor intensive so you can " 
  257.     "disable it and a cheaper resampling algorithm will be used instead.")
  258. #endif
  259. #define DESYNC_TEXT N_("Audio desynchronization compensation")
  260. #define DESYNC_LONGTEXT N_( 
  261.     "This delays the audio output. The delay must be given in milliseconds. " 
  262.     "This can be handy if you notice a lag between the video and the audio.")
  263. #define MULTICHA_TEXT N_("Audio output channels mode")
  264. #define MULTICHA_LONGTEXT N_( 
  265.     "This sets the audio output channels mode that will " 
  266.     "be used by default when possible (ie. if your hardware supports it as " 
  267.     "well as the audio stream being played).")
  268. #define SPDIF_TEXT N_("Use S/PDIF when available")
  269. #define SPDIF_LONGTEXT N_( 
  270.     "S/PDIF can be used by default when " 
  271.     "your hardware supports it as well as the audio stream being played.")
  272. #define FORCE_DOLBY_TEXT N_("Force detection of Dolby Surround")
  273. #define FORCE_DOLBY_LONGTEXT N_( 
  274.     "Use this when you know your stream is (or is not) encoded with Dolby "
  275.     "Surround but fails to be detected as such. Even if the stream is "
  276.     "not actually encoded with Dolby Surround, turning on this option might "
  277.     "enhance your experience, especially when combined with the Headphone "
  278.     "Channel Mixer." )
  279. static const int pi_force_dolby_values[] = { 0, 1, 2 };
  280. static const char *const ppsz_force_dolby_descriptions[] = {
  281.     N_("Auto"), N_("On"), N_("Off") };
  282. #define AUDIO_FILTER_TEXT N_("Audio filters")
  283. #define AUDIO_FILTER_LONGTEXT N_( 
  284.     "This adds audio post processing filters, to modify " 
  285.     "the sound rendering." )
  286. #define AUDIO_VISUAL_TEXT N_("Audio visualizations ")
  287. #define AUDIO_VISUAL_LONGTEXT N_( 
  288.     "This adds visualization modules (spectrum analyzer, etc.).")
  289. #define AUDIO_REPLAY_GAIN_MODE_TEXT N_( 
  290.     "Replay gain mode" )
  291. #define AUDIO_REPLAY_GAIN_MODE_LONGTEXT N_( 
  292.     "Select the replay gain mode" )
  293. #define AUDIO_REPLAY_GAIN_PREAMP_TEXT N_( 
  294.     "Replay preamp" )
  295. #define AUDIO_REPLAY_GAIN_PREAMP_LONGTEXT N_( 
  296.     "This allows you to change the default target level (89 dB) " 
  297.     "for stream with replay gain information" )
  298. #define AUDIO_REPLAY_GAIN_DEFAULT_TEXT N_( 
  299.     "Default replay gain" )
  300. #define AUDIO_REPLAY_GAIN_DEFAULT_LONGTEXT N_( 
  301.     "This is the gain used for stream without replay gain information" )
  302. #define AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT N_( 
  303.     "Peak protection" )
  304. #define AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT N_( 
  305.     "Protect against sound clipping" )
  306. #define AUDIO_TIME_STRETCH_TEXT N_( 
  307.     "Enable time streching audio" )
  308. #define AUDIO_TIME_STRETCH_LONGTEXT N_( 
  309.     "This allows to play audio at lower or higher speed without " 
  310.     "affecting the audio pitch" )
  311. static const char *const ppsz_replay_gain_mode[] = {
  312.     "none", "track", "album" };
  313. static const char *const ppsz_replay_gain_mode_text[] = {
  314.     N_("None"), N_("Track"), N_("Album") };
  315. /*****************************************************************************
  316.  * Video
  317.  ****************************************************************************/
  318. // DEPRECATED
  319. #define VOUT_CAT_LONGTEXT N_( 
  320.     "These options allow you to modify the behavior of the video output " 
  321.     "subsystem. You can for example enable video filters (deinterlacing, " 
  322.     "image adjusting, etc.). Enable these filters here and configure " 
  323.     "them in the "video filters" modules section. You can also set many " 
  324.     "miscellaneous video options." )
  325. #define VOUT_TEXT N_("Video output module")
  326. #define VOUT_LONGTEXT N_( 
  327.     "This is the the video output method used by VLC. " 
  328.     "The default behavior is to automatically select the best method available.")
  329. #define VIDEO_TEXT N_("Enable video")
  330. #define VIDEO_LONGTEXT N_( 
  331.     "You can completely disable the video output. The video " 
  332.     "decoding stage will not take place, thus saving some processing power.")
  333. #define WIDTH_TEXT N_("Video width")
  334. #define WIDTH_LONGTEXT N_( 
  335.     "You can enforce the video width. By default (-1) VLC will " 
  336.     "adapt to the video characteristics.")
  337. #define HEIGHT_TEXT N_("Video height")
  338. #define HEIGHT_LONGTEXT N_( 
  339.     "You can enforce the video height. By default (-1) VLC will " 
  340.     "adapt to the video characteristics.")
  341. #define VIDEOX_TEXT N_("Video X coordinate")
  342. #define VIDEOX_LONGTEXT N_( 
  343.     "You can enforce the position of the top left corner of the video window "
  344.     "(X coordinate).")
  345. #define VIDEOY_TEXT N_("Video Y coordinate")
  346. #define VIDEOY_LONGTEXT N_( 
  347.     "You can enforce the position of the top left corner of the video window "
  348.     "(Y coordinate).")
  349. #define VIDEO_TITLE_TEXT N_("Video title")
  350. #define VIDEO_TITLE_LONGTEXT N_( 
  351.     "Custom title for the video window (in case the video is not embedded in "
  352.     "the interface).")
  353. #define ALIGN_TEXT N_("Video alignment")
  354. #define ALIGN_LONGTEXT N_( 
  355.     "Enforce the alignment of the video in its window. By default (0) it " 
  356.     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " 
  357.     "also use combinations of these values, like 6=4+2 meaning top-right).")
  358. static const int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
  359. static const char *const ppsz_align_descriptions[] =
  360. { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
  361.   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
  362. #define ZOOM_TEXT N_("Zoom video")
  363. #define ZOOM_LONGTEXT N_( 
  364.     "You can zoom the video by the specified factor.")
  365. #define GRAYSCALE_TEXT N_("Grayscale video output")
  366. #define GRAYSCALE_LONGTEXT N_( 
  367.     "Output video in grayscale. As the color information aren't decoded, " 
  368.     "this can save some processing power." )
  369. #define EMBEDDED_TEXT N_("Embedded video")
  370. #define EMBEDDED_LONGTEXT N_( 
  371.     "Embed the video output in the main interface." )
  372. #define FULLSCREEN_TEXT N_("Fullscreen video output")
  373. #define FULLSCREEN_LONGTEXT N_( 
  374.     "Start video in fullscreen mode" )
  375. #define OVERLAY_TEXT N_("Overlay video output")
  376. #define OVERLAY_LONGTEXT N_( 
  377.     "Overlay is the hardware acceleration capability of your video card " 
  378.     "(ability to render video directly). VLC will try to use it by default." )
  379. #define VIDEO_ON_TOP_TEXT N_("Always on top")
  380. #define VIDEO_ON_TOP_LONGTEXT N_( 
  381.     "Always place the video window on top of other windows." )
  382. #define VIDEO_TITLE_SHOW_TEXT N_("Show media title on video")
  383. #define VIDEO_TITLE_SHOW_LONGTEXT N_( 
  384.     "Display the title of the video on top of the movie.")
  385. #define VIDEO_TITLE_TIMEOUT_TEXT N_("Show video title for x milliseconds")
  386. #define VIDEO_TITLE_TIMEOUT_LONGTEXT N_( 
  387.     "Show the video title for n milliseconds, default is 5000 ms (5 sec.)")
  388. #define VIDEO_TITLE_POSITION_TEXT N_("Position of video title")
  389. #define VIDEO_TITLE_POSITION_LONGTEXT N_( 
  390.     "Place on video where to display the title (default bottom center).")
  391. #define MOUSE_HIDE_TIMEOUT_TEXT N_("Hide cursor and fullscreen " 
  392.                                    "controller after x milliseconds")
  393. #define MOUSE_HIDE_TIMEOUT_LONGTEXT N_( 
  394.     "Hide mouse cursor and fullscreen controller after " 
  395.     "n milliseconds, default is 3000 ms (3 sec.)")
  396. static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
  397. static const char *const ppsz_pos_descriptions[] =
  398. { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
  399.   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
  400. #define SS_TEXT N_("Disable screensaver")
  401. #define SS_LONGTEXT N_("Disable the screensaver during video playback." )
  402. #define INHIBIT_TEXT N_("Inhibit the power management daemon during playback")
  403. #define INHIBIT_LONGTEXT N_("Inhibits the power management daemon during any " 
  404.     "playback, to avoid the computer being suspended because of inactivity.")
  405. #define VIDEO_DECO_TEXT N_("Window decorations")
  406. #define VIDEO_DECO_LONGTEXT N_( 
  407.     "VLC can avoid creating window caption, frames, etc... around the video" 
  408.     ", giving a "minimal" window.")
  409. #define VOUT_FILTER_TEXT N_("Video output filter module")
  410. #define VOUT_FILTER_LONGTEXT N_( 
  411.     "This adds video output filters like clone or wall" )
  412. #define VIDEO_FILTER_TEXT N_("Video filter module")
  413. #define VIDEO_FILTER_LONGTEXT N_( 
  414.     "This adds post-processing filters to enhance the " 
  415.     "picture quality, for instance deinterlacing, or distort " 
  416.     "the video.")
  417. #define SNAP_PATH_TEXT N_("Video snapshot directory (or filename)")
  418. #define SNAP_PATH_LONGTEXT N_( 
  419.     "Directory where the video snapshots will be stored.")
  420. #define SNAP_PREFIX_TEXT N_("Video snapshot file prefix")
  421. #define SNAP_PREFIX_LONGTEXT N_( 
  422.     "Video snapshot file prefix" )
  423. #define SNAP_FORMAT_TEXT N_("Video snapshot format")
  424. #define SNAP_FORMAT_LONGTEXT N_( 
  425.     "Image format which will be used to store the video snapshots" )
  426. #define SNAP_PREVIEW_TEXT N_("Display video snapshot preview")
  427. #define SNAP_PREVIEW_LONGTEXT N_( 
  428.     "Display the snapshot preview in the screen's top-left corner.")
  429. #define SNAP_SEQUENTIAL_TEXT N_("Use sequential numbers instead of timestamps")
  430. #define SNAP_SEQUENTIAL_LONGTEXT N_( 
  431.     "Use sequential numbers instead of timestamps for snapshot numbering")
  432. #define SNAP_WIDTH_TEXT N_("Video snapshot width")
  433. #define SNAP_WIDTH_LONGTEXT N_( 
  434.     "You can enforce the width of the video snapshot. By default " 
  435.     "it will keep the original width (-1). Using 0 will scale the width " 
  436.     "to keep the aspect ratio." )
  437. #define SNAP_HEIGHT_TEXT N_("Video snapshot height")
  438. #define SNAP_HEIGHT_LONGTEXT N_( 
  439.     "You can enforce the height of the video snapshot. By default " 
  440.     "it will keep the original height (-1). Using 0 will scale the height " 
  441.     "to keep the aspect ratio." )
  442. #define CROP_TEXT N_("Video cropping")
  443. #define CROP_LONGTEXT N_( 
  444.     "This forces the cropping of the source video. " 
  445.     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " 
  446.     "aspect.")
  447. #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
  448. #define ASPECT_RATIO_LONGTEXT N_( 
  449.     "This forces the source aspect ratio. For instance, some DVDs claim " 
  450.     "to be 16:9 while they are actually 4:3. This can also be used as a " 
  451.     "hint for VLC when a movie does not have aspect ratio information. " 
  452.     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " 
  453.     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " 
  454.     "squareness.")
  455. #define AUTOSCALE_TEXT N_("Video Auto Scaling")
  456. #define AUTOSCALE_LONGTEXT N_( 
  457.     "Let the video scale to fit a given window or fullscreen.")
  458. #define SCALEFACTOR_TEXT N_("Video scaling factor")
  459. #define SCALEFACTOR_LONGTEXT N_( 
  460.     "Scaling factor used when Auto Scaling is disabled.n" 
  461.     "Default value is 1.0 (original video size).")
  462. #define CUSTOM_CROP_RATIOS_TEXT N_("Custom crop ratios list")
  463. #define CUSTOM_CROP_RATIOS_LONGTEXT N_( 
  464.     "Comma seperated list of crop ratios which will be added in the " 
  465.     "interface's crop ratios list.")
  466. #define CUSTOM_ASPECT_RATIOS_TEXT N_("Custom aspect ratios list")
  467. #define CUSTOM_ASPECT_RATIOS_LONGTEXT N_( 
  468.     "Comma seperated list of aspect ratios which will be added in the " 
  469.     "interface's aspect ratio list.")
  470. #define HDTV_FIX_TEXT N_("Fix HDTV height")
  471. #define HDTV_FIX_LONGTEXT N_( 
  472.     "This allows proper handling of HDTV-1080 video format " 
  473.     "even if broken encoder incorrectly sets height to 1088 lines. " 
  474.     "You should only disable this option if your video has a " 
  475.     "non-standard format requiring all 1088 lines.")
  476. #define MASPECT_RATIO_TEXT N_("Monitor pixel aspect ratio")
  477. #define MASPECT_RATIO_LONGTEXT N_( 
  478.     "This forces the monitor aspect ratio. Most monitors have square " 
  479.     "pixels (1:1). If you have a 16:9 screen, you might need to change this " 
  480.     "to 4:3 in order to keep proportions.")
  481. #define SKIP_FRAMES_TEXT N_("Skip frames")
  482. #define SKIP_FRAMES_LONGTEXT N_( 
  483.     "Enables framedropping on MPEG2 stream. Framedropping " 
  484.     "occurs when your computer is not powerful enough" )
  485. #define DROP_LATE_FRAMES_TEXT N_("Drop late frames")
  486. #define DROP_LATE_FRAMES_LONGTEXT N_( 
  487.     "This drops frames that are late (arrive to the video output after " 
  488.     "their intended display date)." )
  489. #define QUIET_SYNCHRO_TEXT N_("Quiet synchro")
  490. #define QUIET_SYNCHRO_LONGTEXT N_( 
  491.     "This avoids flooding the message log with debug output from the " 
  492.     "video output synchronization mechanism.")
  493. #define VOUT_EVENT_TEXT N_("key and mouse event handling at vout level.")
  494. #define VOUT_EVENT_LONGTEXT N_( 
  495.     "This parameter accepts values : 1 (full event handling support), " 
  496.     "2 (event handling only for fullscreen) or 3 (No event handling). "  
  497.     "Full event handling support is the default value.")
  498. static const int pi_vout_event_values[] = { 1, 2, 3 };
  499. static const char *const ppsz_vout_event_descriptions[] =
  500.      { N_("Full support"), N_("Fullscreen-only"), N_("None") };
  501. /*****************************************************************************
  502.  * Input
  503.  ****************************************************************************/
  504. // Deprecated
  505. #define INPUT_CAT_LONGTEXT N_( 
  506.     "These options allow you to modify the behavior of the input " 
  507.     "subsystem, such as the DVD or VCD device, the network interface " 
  508.     "settings or the subtitle channel.")
  509. #define CR_AVERAGE_TEXT N_("Clock reference average counter")
  510. #define CR_AVERAGE_LONGTEXT N_( 
  511.     "When using the PVR input (or a very irregular source), you should " 
  512.     "set this to 10000.")
  513. #define CLOCK_SYNCHRO_TEXT N_("Clock synchronisation")
  514. #define CLOCK_SYNCHRO_LONGTEXT N_( 
  515.     "It is possible to disable the input clock synchronisation for " 
  516.     "real-time sources. Use this if you experience jerky playback of " 
  517.     "network streams.")
  518. #define NETSYNC_TEXT N_("Network synchronisation" )
  519. #define NETSYNC_LONGTEXT N_( "This allows you to remotely " 
  520.         "synchronise clocks for server and client. The detailed settings " 
  521.         "are available in Advanced / Network Sync." )
  522. static const int pi_clock_values[] = { -1, 0, 1 };
  523. static const char *const ppsz_clock_descriptions[] =
  524. { N_("Default"), N_("Disable"), N_("Enable") };
  525. #define SERVER_PORT_TEXT N_("UDP port")
  526. #define SERVER_PORT_LONGTEXT N_( 
  527.     "This is the default port used for UDP streams. Default is 1234." )
  528. #define MTU_TEXT N_("MTU of the network interface")
  529. #define MTU_LONGTEXT N_( 
  530.     "This is the maximum application-layer packet size that can be " 
  531.     "transmitted over the network (in bytes).")
  532. /* Should be less than 1500 - 8[ppp] - 40[ip6] - 8[udp] in any case. */
  533. #define MTU_DEFAULT 1400
  534. #define TTL_TEXT N_("Hop limit (TTL)")
  535. #define TTL_LONGTEXT N_( 
  536.     "This is the hop limit (also known as "Time-To-Live" or TTL) of " 
  537.     "the multicast packets sent by the stream output (-1 = use operating " 
  538.     "system built-in default).")
  539. #define MIFACE_TEXT N_("Multicast output interface")
  540. #define MIFACE_LONGTEXT N_( 
  541.     "Default multicast interface. This overrides the routing table.")
  542. #define MIFACE_ADDR_TEXT N_("IPv4 multicast output interface address")
  543. #define MIFACE_ADDR_LONGTEXT N_( 
  544.     "IPv4 adress for the default multicast interface. This overrides " 
  545.     "the routing table.")
  546. #define DSCP_TEXT N_("DiffServ Code Point")
  547. #define DSCP_LONGTEXT N_("Differentiated Services Code Point " 
  548.     "for outgoing UDP streams (or IPv4 Type Of Service, " 
  549.     "or IPv6 Traffic Class). This is used for network Quality of Service.")
  550. #define INPUT_PROGRAM_TEXT N_("Program")
  551. #define INPUT_PROGRAM_LONGTEXT N_( 
  552.     "Choose the program to select by giving its Service ID. " 
  553.     "Only use this option if you want to read a multi-program stream " 
  554.     "(like DVB streams for example)." )
  555. #define INPUT_PROGRAMS_TEXT N_("Programs")
  556. #define INPUT_PROGRAMS_LONGTEXT N_( 
  557.     "Choose the programs to select by giving a comma-separated list of " 
  558.     "Service IDs (SIDs). " 
  559.     "Only use this option if you want to read a multi-program stream " 
  560.     "(like DVB streams for example)." )
  561. /// todo Document how to find it
  562. #define INPUT_AUDIOTRACK_TEXT N_("Audio track")
  563. #define INPUT_AUDIOTRACK_LONGTEXT N_( 
  564.     "Stream number of the audio track to use " 
  565.     "(from 0 to n).")
  566. #define INPUT_SUBTRACK_TEXT N_("Subtitles track")
  567. #define INPUT_SUBTRACK_LONGTEXT N_( 
  568.     "Stream number of the subtitle track to use " 
  569.     "(from 0 to n).")
  570. #define INPUT_AUDIOTRACK_LANG_TEXT N_("Audio language")
  571. #define INPUT_AUDIOTRACK_LANG_LONGTEXT N_( 
  572.     "Language of the audio track you want to use " 
  573.     "(comma separated, two or three letter country code).")
  574. #define INPUT_SUBTRACK_LANG_TEXT N_("Subtitle language")
  575. #define INPUT_SUBTRACK_LANG_LONGTEXT N_( 
  576.     "Language of the subtitle track you want to use " 
  577.     "(comma separated, two or three letters country code).")
  578. /// todo Document how to find it
  579. #define INPUT_AUDIOTRACK_ID_TEXT N_("Audio track ID")
  580. #define INPUT_AUDIOTRACK_ID_LONGTEXT N_( 
  581.     "Stream ID of the audio track to use.")
  582. #define INPUT_SUBTRACK_ID_TEXT N_("Subtitles track ID")
  583. #define INPUT_SUBTRACK_ID_LONGTEXT N_( 
  584.     "Stream ID of the subtitle track to use.")
  585. #define INPUT_REPEAT_TEXT N_("Input repetitions")
  586. #define INPUT_REPEAT_LONGTEXT N_( 
  587.     "Number of time the same input will be repeated")
  588. #define START_TIME_TEXT N_("Start time")
  589. #define START_TIME_LONGTEXT N_( 
  590.     "The stream will start at this position (in seconds)." )
  591. #define STOP_TIME_TEXT N_("Stop time")
  592. #define STOP_TIME_LONGTEXT N_( 
  593.     "The stream will stop at this position (in seconds)." )
  594. #define RUN_TIME_TEXT N_("Run time")
  595. #define RUN_TIME_LONGTEXT N_( 
  596.     "The stream will run this duration (in seconds)." )
  597. #define INPUT_FAST_SEEK_TEXT N_("Fast seek")
  598. #define INPUT_FAST_SEEK_LONGTEXT N_( 
  599.     "Favor speed over precision while seeking" )
  600. #define INPUT_LIST_TEXT N_("Input list")
  601. #define INPUT_LIST_LONGTEXT N_( 
  602.     "You can give a comma-separated list " 
  603.     "of inputs that will be concatenated together after the normal one.")
  604. #define INPUT_SLAVE_TEXT N_("Input slave (experimental)")
  605. #define INPUT_SLAVE_LONGTEXT N_( 
  606.     "This allows you to play from several inputs at " 
  607.     "the same time. This feature is experimental, not all formats " 
  608.     "are supported. Use a '#' separated list of inputs.")
  609. #define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
  610. #define BOOKMARKS_LONGTEXT N_( 
  611.     "You can manually give a list of bookmarks for a stream in " 
  612.     "the form "{name=bookmark-name,time=optional-time-offset," 
  613.     "bytes=optional-byte-offset},{...}"")
  614. #define INPUT_RECORD_PATH_TEXT N_("Record directory or filename")
  615. #define INPUT_RECORD_PATH_LONGTEXT N_( 
  616.     "Directory or filename where the records will be stored" )
  617. #define INPUT_RECORD_NATIVE_TEXT N_("Prefer native stream recording")
  618. #define INPUT_RECORD_NATIVE_LONGTEXT N_( 
  619.     "When possible, the input stream will be recorded instead of using " 
  620.     "the stream output module" )
  621. #define INPUT_TIMESHIFT_PATH_TEXT N_("Timeshift directory")
  622. #define INPUT_TIMESHIFT_PATH_LONGTEXT N_( 
  623.     "Directory used to store the timeshift temporary files." )
  624. #define INPUT_TIMESHIFT_GRANULARITY_TEXT N_("Timeshift granularity")
  625. #define INPUT_TIMESHIFT_GRANULARITY_LONGTEXT N_( 
  626.     "This is the maximum size in bytes of the temporary files " 
  627.     "that will be used to store the timeshifted streams." )
  628. // DEPRECATED
  629. #define SUB_CAT_LONGTEXT N_( 
  630.     "These options allow you to modify the behavior of the subpictures " 
  631.     "subsystem. You can for example enable subpictures filters (logo, etc.). " 
  632.     "Enable these filters here and configure them in the " 
  633.     ""subpictures filters" modules section. You can also set many " 
  634.     "miscellaneous subpictures options." )
  635. #define SUB_MARGIN_TEXT N_("Force subtitle position")
  636. #define SUB_MARGIN_LONGTEXT N_( 
  637.     "You can use this option to place the subtitles under the movie, " 
  638.     "instead of over the movie. Try several positions.")
  639. #define SPU_TEXT N_("Enable sub-pictures")
  640. #define SPU_LONGTEXT N_( 
  641.     "You can completely disable the sub-picture processing.")
  642. #define OSD_TEXT N_("On Screen Display")
  643. #define OSD_LONGTEXT N_( 
  644.     "VLC can display messages on the video. This is called OSD (On Screen " 
  645.     "Display).")
  646. #define TEXTRENDERER_TEXT N_("Text rendering module")
  647. #define TEXTRENDERER_LONGTEXT N_( 
  648.     "VLC normally uses Freetype for rendering, but this allows you to use svg for instance.")
  649. #define SUB_FILTER_TEXT N_("Subpictures filter module")
  650. #define SUB_FILTER_LONGTEXT N_( 
  651.     "This adds so-called "subpicture filters". These filters overlay " 
  652.     "some images or text over the video (like a logo, arbitrary text, ...)." )
  653. #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
  654. #define SUB_AUTO_LONGTEXT N_( 
  655.     "Automatically detect a subtitle file, if no subtitle filename is " 
  656.     "specified (based on the filename of the movie).")
  657. #define SUB_FUZZY_TEXT N_("Subtitle autodetection fuzziness")
  658. #define SUB_FUZZY_LONGTEXT N_( 
  659.     "This determines how fuzzy subtitle and movie filename matching " 
  660.     "will be. Options are:n" 
  661.     "0 = no subtitles autodetectedn" 
  662.     "1 = any subtitle filen" 
  663.     "2 = any subtitle file containing the movie namen" 
  664.     "3 = subtitle file matching the movie name with additional charsn" 
  665.     "4 = subtitle file matching the movie name exactly")
  666. #define SUB_PATH_TEXT N_("Subtitle autodetection paths")
  667. #define SUB_PATH_LONGTEXT N_( 
  668.     "Look for a subtitle file in those paths too, if your subtitle " 
  669.     "file was not found in the current directory.")
  670. #define SUB_FILE_TEXT N_("Use subtitle file")
  671. #define SUB_FILE_LONGTEXT N_( 
  672.     "Load this subtitle file. To be used when autodetect cannot detect " 
  673.     "your subtitle file.")
  674. #define DVD_DEV_TEXT N_("DVD device")
  675. #ifdef WIN32
  676. #define DVD_DEV_LONGTEXT N_( 
  677.     "This is the default DVD drive (or file) to use. Don't forget the colon " 
  678.     "after the drive letter (eg. D:)")
  679. #else
  680. #define DVD_DEV_LONGTEXT N_( 
  681.     "This is the default DVD device to use.")
  682. #endif
  683. #define VCD_DEV_TEXT N_("VCD device")
  684. #ifdef HAVE_VCDX
  685. #define VCD_DEV_LONGTEXT N_( 
  686.     "This is the default VCD device to use. " 
  687.     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
  688. #else
  689. #define VCD_DEV_LONGTEXT N_( 
  690.     "This is the default VCD device to use." )
  691. #endif
  692. #define CDAUDIO_DEV_TEXT N_("Audio CD device")
  693. #ifdef HAVE_CDDAX
  694. #define CDAUDIO_DEV_LONGTEXT N_( 
  695.     "This is the default Audio CD device to use. " 
  696.     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
  697. #else
  698. #define CDAUDIO_DEV_LONGTEXT N_( 
  699.     "This is the default Audio CD device to use." )
  700. #endif
  701. #define IPV6_TEXT N_("Force IPv6")
  702. #define IPV6_LONGTEXT N_( 
  703.     "IPv6 will be used by default for all connections.")
  704. #define IPV4_TEXT N_("Force IPv4")
  705. #define IPV4_LONGTEXT N_( 
  706.     "IPv4 will be used by default for all connections.")
  707. #define TIMEOUT_TEXT N_("TCP connection timeout")
  708. #define TIMEOUT_LONGTEXT N_( 
  709.     "Default TCP connection timeout (in milliseconds). " )
  710. #define SOCKS_SERVER_TEXT N_("SOCKS server")
  711. #define SOCKS_SERVER_LONGTEXT N_( 
  712.     "SOCKS proxy server to use. This must be of the form " 
  713.     "address:port. It will be used for all TCP connections" )
  714. #define SOCKS_USER_TEXT N_("SOCKS user name")
  715. #define SOCKS_USER_LONGTEXT N_( 
  716.     "User name to be used for connection to the SOCKS proxy." )
  717. #define SOCKS_PASS_TEXT N_("SOCKS password")
  718. #define SOCKS_PASS_LONGTEXT N_( 
  719.     "Password to be used for connection to the SOCKS proxy." )
  720. #define META_TITLE_TEXT N_("Title metadata")
  721. #define META_TITLE_LONGTEXT N_( 
  722.      "Allows you to specify a "title" metadata for an input.")
  723. #define META_AUTHOR_TEXT N_("Author metadata")
  724. #define META_AUTHOR_LONGTEXT N_( 
  725.      "Allows you to specify an "author" metadata for an input.")
  726. #define META_ARTIST_TEXT N_("Artist metadata")
  727. #define META_ARTIST_LONGTEXT N_( 
  728.      "Allows you to specify an "artist" metadata for an input.")
  729. #define META_GENRE_TEXT N_("Genre metadata")
  730. #define META_GENRE_LONGTEXT N_( 
  731.      "Allows you to specify a "genre" metadata for an input.")
  732. #define META_CPYR_TEXT N_("Copyright metadata")
  733. #define META_CPYR_LONGTEXT N_( 
  734.      "Allows you to specify a "copyright" metadata for an input.")
  735. #define META_DESCR_TEXT N_("Description metadata")
  736. #define META_DESCR_LONGTEXT N_( 
  737.      "Allows you to specify a "description" metadata for an input.")
  738. #define META_DATE_TEXT N_("Date metadata")
  739. #define META_DATE_LONGTEXT N_( 
  740.      "Allows you to specify a "date" metadata for an input.")
  741. #define META_URL_TEXT N_("URL metadata")
  742. #define META_URL_LONGTEXT N_( 
  743.      "Allows you to specify a "url" metadata for an input.")
  744. // DEPRECATED
  745. #define CODEC_CAT_LONGTEXT N_( 
  746.     "This option can be used to alter the way VLC selects " 
  747.     "its codecs (decompression methods). Only advanced users should " 
  748.     "alter this option as it can break playback of all your streams." )
  749. #define CODEC_TEXT N_("Preferred decoders list")
  750. #define CODEC_LONGTEXT N_( 
  751.     "List of codecs that VLC will use in " 
  752.     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " 
  753.     "before trying the other ones. Only advanced users should " 
  754.     "alter this option as it can break playback of all your streams." )
  755. #define ENCODER_TEXT N_("Preferred encoders list")
  756. #define ENCODER_LONGTEXT N_( 
  757.     "This allows you to select a list of encoders that VLC will use in " 
  758.     "priority.")
  759. #define SYSTEM_CODEC_TEXT N_("Prefer system plugins over VLC")
  760. #define SYSTEM_CODEC_LONGTEXT N_( 
  761.     "Indicates whether VLC will prefer native plugins installed " 
  762.     "on system over VLC owns plugins whenever a choice is available." )
  763. /*****************************************************************************
  764.  * Sout
  765.  ****************************************************************************/
  766. // DEPRECATED
  767. #define SOUT_CAT_LONGTEXT N_( 
  768.     "These options allow you to set default global options for the " 
  769.     "stream output subsystem." )
  770. #define SOUT_TEXT N_("Default stream output chain")
  771. #define SOUT_LONGTEXT N_( 
  772.     "You can enter here a default stream output chain. Refer to "
  773.     "the documentation to learn how to build such chains. " 
  774.     "Warning: this chain will be enabled for all streams." )
  775. #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
  776. #define SOUT_ALL_LONGTEXT N_( 
  777.     "Stream all elementary streams (video, audio and subtitles)")
  778. #define SOUT_DISPLAY_TEXT N_("Display while streaming")
  779. #define SOUT_DISPLAY_LONGTEXT N_( 
  780.     "Play locally the stream while streaming it.")
  781. #define SOUT_VIDEO_TEXT N_("Enable video stream output")
  782. #define SOUT_VIDEO_LONGTEXT N_( 
  783.     "Choose whether the video stream should be redirected to " 
  784.     "the stream output facility when this last one is enabled.")
  785. #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
  786. #define SOUT_AUDIO_LONGTEXT N_( 
  787.     "Choose whether the audio stream should be redirected to " 
  788.     "the stream output facility when this last one is enabled.")
  789. #define SOUT_SPU_TEXT N_("Enable SPU stream output")
  790. #define SOUT_SPU_LONGTEXT N_( 
  791.     "Choose whether the SPU streams should be redirected to " 
  792.     "the stream output facility when this last one is enabled.")
  793. #define SOUT_KEEP_TEXT N_("Keep stream output open" )
  794. #define SOUT_KEEP_LONGTEXT N_( 
  795.     "This allows you to keep an unique stream output instance across " 
  796.     "multiple playlist item (automatically insert the gather stream output " 
  797.     "if not specified)" )
  798. #define SOUT_MUX_CACHING_TEXT N_("Stream output muxer caching (ms)")
  799. #define SOUT_MUX_CACHING_LONGTEXT N_( 
  800.     "This allow you to configure the initial caching amount for stream output " 
  801.     " muxer. This value should be set in milliseconds." )
  802. #define PACKETIZER_TEXT N_("Preferred packetizer list")
  803. #define PACKETIZER_LONGTEXT N_( 
  804.     "This allows you to select the order in which VLC will choose its " 
  805.     "packetizers."  )
  806. #define MUX_TEXT N_("Mux module")
  807. #define MUX_LONGTEXT N_( 
  808.     "This is a legacy entry to let you configure mux modules")
  809. #define ACCESS_OUTPUT_TEXT N_("Access output module")
  810. #define ACCESS_OUTPUT_LONGTEXT N_( 
  811.     "This is a legacy entry to let you configure access output modules")
  812. #define ANN_SAPCTRL_TEXT N_("Control SAP flow")
  813. #define ANN_SAPCTRL_LONGTEXT N_( 
  814.     "If this option is enabled, the flow on " 
  815.     "the SAP multicast address will be controlled. This is needed if you " 
  816.     "want to make announcements on the MBone." )
  817. #define ANN_SAPINTV_TEXT N_("SAP announcement interval")
  818. #define ANN_SAPINTV_LONGTEXT N_( 
  819.     "When the SAP flow control is disabled, " 
  820.     "this lets you set the fixed interval between SAP announcements." )
  821. /*****************************************************************************
  822.  * Advanced
  823.  ****************************************************************************/
  824. // DEPRECATED
  825. #define CPU_CAT_LONGTEXT N_( 
  826.     "These options allow you to enable special CPU optimizations. " 
  827.     "You should always leave all these enabled." )
  828. #define FPU_TEXT N_("Enable FPU support")
  829. #define FPU_LONGTEXT N_( 
  830.     "If your processor has a floating point calculation unit, VLC can take " 
  831.     "advantage of it.")
  832. #define MMX_TEXT N_("Enable CPU MMX support")
  833. #define MMX_LONGTEXT N_( 
  834.     "If your processor supports the MMX instructions set, VLC can take " 
  835.     "advantage of them.")
  836. #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
  837. #define THREE_DN_LONGTEXT N_( 
  838.     "If your processor supports the 3D Now! instructions set, VLC can take " 
  839.     "advantage of them.")
  840. #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
  841. #define MMXEXT_LONGTEXT N_( 
  842.     "If your processor supports the MMX EXT instructions set, VLC can take " 
  843.     "advantage of them.")
  844. #define SSE_TEXT N_("Enable CPU SSE support")
  845. #define SSE_LONGTEXT N_( 
  846.     "If your processor supports the SSE instructions set, VLC can take " 
  847.     "advantage of them.")
  848. #define SSE2_TEXT N_("Enable CPU SSE2 support")
  849. #define SSE2_LONGTEXT N_( 
  850.     "If your processor supports the SSE2 instructions set, VLC can take " 
  851.     "advantage of them.")
  852. #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
  853. #define ALTIVEC_LONGTEXT N_( 
  854.     "If your processor supports the AltiVec instructions set, VLC can take " 
  855.     "advantage of them.")
  856. // DEPRECATED
  857. #define MISC_CAT_LONGTEXT N_( 
  858.     "These options allow you to select default modules. Leave these " 
  859.     "alone unless you really know what you are doing." )
  860. #define MEMCPY_TEXT N_("Memory copy module")
  861. #define MEMCPY_LONGTEXT N_( 
  862.     "You can select which memory copy module you want to use. By default " 
  863.     "VLC will select the fastest one supported by your hardware.")
  864. #define ACCESS_TEXT N_("Access module")
  865. #define ACCESS_LONGTEXT N_( 
  866.     "This allows you to force an access module. You can use it if " 
  867.     "the correct access is not automatically detected. You should not "
  868.     "set this as a global option unless you really know what you are doing." )
  869. #define STREAM_FILTER_TEXT N_("Stream filter module")
  870. #define STREAM_FILTER_LONGTEXT N_( 
  871.     "Stream filters are used to modify the stream that is being read. " )
  872. #define DEMUX_TEXT N_("Demux module")
  873. #define DEMUX_LONGTEXT N_( 
  874.     "Demultiplexers are used to separate the "elementary" streams " 
  875.     "(like audio and video streams). You can use it if " 
  876.     "the correct demuxer is not automatically detected. You should not "
  877.     "set this as a global option unless you really know what you are doing." )
  878. #define RT_PRIORITY_TEXT N_("Allow real-time priority")
  879. #define RT_PRIORITY_LONGTEXT N_( 
  880.     "Running VLC in real-time priority will allow for much more precise " 
  881.     "scheduling and yield better, especially when streaming content. " 
  882.     "It can however lock up your whole machine, or make it very very " 
  883.     "slow. You should only activate this if you know what you're " 
  884.     "doing.")
  885. #define RT_OFFSET_TEXT N_("Adjust VLC priority")
  886. #define RT_OFFSET_LONGTEXT N_( 
  887.     "This option adds an offset (positive or negative) to VLC default " 
  888.     "priorities. You can use it to tune VLC priority against other " 
  889.     "programs, or against other VLC instances.")
  890. #define USE_STREAM_IMMEDIATE N_("(Experimental) Don't do caching at the access level.")
  891. #define USE_STREAM_IMMEDIATE_LONGTEXT N_( 
  892.      "This option is useful if you want to lower the latency when " 
  893.      "reading a stream")
  894. #define PLUGIN_PATH_TEXT N_("Modules search path")
  895. #define PLUGIN_PATH_LONGTEXT N_( 
  896.     "Additional path for VLC to look for its modules. You can add " 
  897.     "several paths by concatenating them using " PATH_SEP " as separator")
  898. #define VLM_CONF_TEXT N_("VLM configuration file")
  899. #define VLM_CONF_LONGTEXT N_( 
  900.     "Read a VLM configuration file as soon as VLM is started." )
  901. #define PLUGINS_CACHE_TEXT N_("Use a plugins cache")
  902. #define PLUGINS_CACHE_LONGTEXT N_( 
  903.     "Use a plugins cache which will greatly improve the startup time of VLC.")
  904. #define STATS_TEXT N_("Collect statistics")
  905. #define STATS_LONGTEXT N_( 
  906.      "Collect miscellaneous statistics.")
  907. #define DAEMON_TEXT N_("Run as daemon process")
  908. #define DAEMON_LONGTEXT N_( 
  909.      "Runs VLC as a background daemon process.")
  910. #define PIDFILE_TEXT N_("Write process id to file")
  911. #define PIDFILE_LONGTEXT N_( 
  912.        "Writes process id into specified file.")
  913. #define FILE_LOG_TEXT N_( "Log to file" )
  914. #define FILE_LOG_LONGTEXT N_( 
  915.     "Log all VLC messages to a text file." )
  916. #define SYSLOG_TEXT N_( "Log to syslog" )
  917. #define SYSLOG_LONGTEXT N_( 
  918.     "Log all VLC messages to syslog (UNIX systems)." )
  919. #define ONEINSTANCE_TEXT N_("Allow only one running instance")
  920. #if defined( WIN32 )
  921. #define ONEINSTANCE_LONGTEXT N_( 
  922.     "Allowing only one running instance of VLC can sometimes be useful, " 
  923.     "for example if you associated VLC with some media types and you " 
  924.     "don't want a new instance of VLC to be opened each time you " 
  925.     "double-click on a file in the explorer. This option will allow you " 
  926.     "to play the file with the already running instance or enqueue it.")
  927. #elif defined( HAVE_DBUS )
  928. #define ONEINSTANCE_LONGTEXT N_( 
  929.     "Allowing only one running instance of VLC can sometimes be useful, " 
  930.     "for example if you associated VLC with some media types and you " 
  931.     "don't want a new instance of VLC to be opened each time you " 
  932.     "open a file in your file manager. This option will allow you " 
  933.     "to play the file with the already running instance or enqueue it. " 
  934.     "This option requires the D-Bus session daemon to be active " 
  935.     "and the running instance of VLC to use D-Bus control interface.")
  936. #endif
  937. #define STARTEDFROMFILE_TEXT N_("VLC is started from file association")
  938. #define STARTEDFROMFILE_LONGTEXT N_( 
  939.     "Tell VLC that it is being launched due to a file association in the OS" )
  940. #define ONEINSTANCEWHENSTARTEDFROMFILE_TEXT N_( 
  941.     "One instance when started from file")
  942. #define ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT N_( 
  943.     "Allow only one running instance when started from file.")
  944. #define HPRIORITY_TEXT N_("Increase the priority of the process")
  945. #define HPRIORITY_LONGTEXT N_( 
  946.     "Increasing the priority of the process will very likely improve your " 
  947.     "playing experience as it allows VLC not to be disturbed by other " 
  948.     "applications that could otherwise take too much processor time. " 
  949.     "However be advised that in certain circumstances (bugs) VLC could take " 
  950.     "all the processor time and render the whole system unresponsive which " 
  951.     "might require a reboot of your machine.")
  952. #define PLAYLISTENQUEUE_TEXT N_( 
  953.     "Enqueue items to playlist when in one instance mode")
  954. #define PLAYLISTENQUEUE_LONGTEXT N_( 
  955.     "When using the one instance only option, enqueue items to playlist " 
  956.     "and keep playing current item.")
  957. /*****************************************************************************
  958.  * Playlist
  959.  ****************************************************************************/
  960. // DEPRECATED
  961. #define PLAYLIST_CAT_LONGTEXT N_( 
  962.      "These options define the behavior of the playlist. Some " 
  963.      "of them can be overridden in the playlist dialog box." )
  964. #define PREPARSE_TEXT N_( "Automatically preparse files")
  965. #define PREPARSE_LONGTEXT N_( 
  966.     "Automatically preparse files added to the playlist " 
  967.     "(to retrieve some metadata)." )
  968. #define ALBUM_ART_TEXT N_( "Album art policy" )
  969. #define ALBUM_ART_LONGTEXT N_( 
  970.     "Choose how album art will be downloaded." )
  971. static const int pi_albumart_values[] = { ALBUM_ART_WHEN_ASKED,
  972.                                           ALBUM_ART_WHEN_PLAYED,
  973.                                           ALBUM_ART_ALL };
  974. static const char *const ppsz_albumart_descriptions[] =
  975.     { N_("Manual download only"),
  976.       N_("When track starts playing"),
  977.       N_("As soon as track is added") };
  978. #define SD_TEXT N_( "Services discovery modules")
  979. #define SD_LONGTEXT N_( 
  980.      "Specifies the services discovery modules to load, separated by " 
  981.      "semi-colons. Typical values are sap, hal, ..." )
  982. #define RANDOM_TEXT N_("Play files randomly forever")
  983. #define RANDOM_LONGTEXT N_( 
  984.     "VLC will randomly play files in the playlist until interrupted.")
  985. #define LOOP_TEXT N_("Repeat all")
  986. #define LOOP_LONGTEXT N_( 
  987.     "VLC will keep playing the playlist indefinitely." )
  988. #define REPEAT_TEXT N_("Repeat current item")
  989. #define REPEAT_LONGTEXT N_( 
  990.     "VLC will keep playing the current playlist item." )
  991. #define PAS_TEXT N_("Play and stop")
  992. #define PAS_LONGTEXT N_( 
  993.     "Stop the playlist after each played playlist item." )
  994. #define PAE_TEXT N_("Play and exit")
  995. #define PAE_LONGTEXT N_( 
  996.                 "Exit if there are no more items in the playlist." )
  997. #define ML_TEXT N_("Use media library")
  998. #define ML_LONGTEXT N_( 
  999.     "The media library is automatically saved and reloaded each time you " 
  1000.     "start VLC." )
  1001. #define PLTREE_TEXT N_("Display playlist tree")
  1002. #define PLTREE_LONGTEXT N_( 
  1003.     "The playlist can use a tree to categorize some items, like the " 
  1004.     "contents of a directory." )
  1005. /*****************************************************************************
  1006.  * Hotkeys
  1007.  ****************************************************************************/
  1008. // DEPRECATED
  1009. #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " 
  1010.     "bindings, known as "hotkeys"." )
  1011. #define TOGGLE_FULLSCREEN_KEY_TEXT N_("Fullscreen")
  1012. #define TOGGLE_FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state.")
  1013. #define LEAVE_FULLSCREEN_KEY_TEXT N_("Leave fullscreen")
  1014. #define LEAVE_FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to leave fullscreen state.")
  1015. #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
  1016. #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state.")
  1017. #define PAUSE_KEY_TEXT N_("Pause only")
  1018. #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause.")
  1019. #define PLAY_KEY_TEXT N_("Play only")
  1020. #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play.")
  1021. #define FASTER_KEY_TEXT N_("Faster")
  1022. #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
  1023. #define SLOWER_KEY_TEXT N_("Slower")
  1024. #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
  1025. #define RATE_NORMAL_KEY_TEXT N_("Normal rate")
  1026. #define RATE_NORMAL_KEY_LONGTEXT N_("Select the hotkey to set the playback rate back to normal.")
  1027. #define RATE_FASTER_FINE_KEY_TEXT N_("Faster (fine)")
  1028. #define RATE_FASTER_FINE_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
  1029. #define RATE_SLOWER_FINE_KEY_TEXT N_("Slower (fine)")
  1030. #define RATE_SLOWER_FINE_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
  1031. #define NEXT_KEY_TEXT N_("Next")
  1032. #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist.")
  1033. #define PREV_KEY_TEXT N_("Previous")
  1034. #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist.")
  1035. #define STOP_KEY_TEXT N_("Stop")
  1036. #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop playback.")
  1037. #define POSITION_KEY_TEXT N_("Position")
  1038. #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position.")
  1039. #define JBEXTRASHORT_KEY_TEXT N_("Very short backwards jump")
  1040. #define JBEXTRASHORT_KEY_LONGTEXT 
  1041.     N_("Select the hotkey to make a very short backwards jump.")
  1042. #define JBSHORT_KEY_TEXT N_("Short backwards jump")
  1043. #define JBSHORT_KEY_LONGTEXT 
  1044.     N_("Select the hotkey to make a short backwards jump.")
  1045. #define JBMEDIUM_KEY_TEXT N_("Medium backwards jump")
  1046. #define JBMEDIUM_KEY_LONGTEXT 
  1047.     N_("Select the hotkey to make a medium backwards jump.")
  1048. #define JBLONG_KEY_TEXT N_("Long backwards jump")
  1049. #define JBLONG_KEY_LONGTEXT 
  1050.     N_("Select the hotkey to make a long backwards jump.")
  1051. #define JFEXTRASHORT_KEY_TEXT N_("Very short forward jump")
  1052. #define JFEXTRASHORT_KEY_LONGTEXT 
  1053.     N_("Select the hotkey to make a very short forward jump.")
  1054. #define JFSHORT_KEY_TEXT N_("Short forward jump")
  1055. #define JFSHORT_KEY_LONGTEXT 
  1056.     N_("Select the hotkey to make a short forward jump.")
  1057. #define JFMEDIUM_KEY_TEXT N_("Medium forward jump")
  1058. #define JFMEDIUM_KEY_LONGTEXT 
  1059.     N_("Select the hotkey to make a medium forward jump.")
  1060. #define JFLONG_KEY_TEXT N_("Long forward jump")
  1061. #define JFLONG_KEY_LONGTEXT 
  1062.     N_("Select the hotkey to make a long forward jump.")
  1063. #define FRAME_NEXT_KEY_TEXT N_("Next frame")
  1064. #define FRAME_NEXT_KEY_LONGTEXT 
  1065.     N_("Select the hotkey to got to the next video frame.")
  1066. #define JIEXTRASHORT_TEXT N_("Very short jump length")
  1067. #define JIEXTRASHORT_LONGTEXT N_("Very short jump length, in seconds.")
  1068. #define JISHORT_TEXT N_("Short jump length")
  1069. #define JISHORT_LONGTEXT N_("Short jump length, in seconds.")
  1070. #define JIMEDIUM_TEXT N_("Medium jump length")
  1071. #define JIMEDIUM_LONGTEXT N_("Medium jump length, in seconds.")
  1072. #define JILONG_TEXT N_("Long jump length")
  1073. #define JILONG_LONGTEXT N_("Long jump length, in seconds.")
  1074. #define QUIT_KEY_TEXT N_("Quit")
  1075. #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application.")
  1076. #define NAV_UP_KEY_TEXT N_("Navigate up")
  1077. #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in DVD menus.")
  1078. #define NAV_DOWN_KEY_TEXT N_("Navigate down")
  1079. #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in DVD menus.")
  1080. #define NAV_LEFT_KEY_TEXT N_("Navigate left")
  1081. #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in DVD menus.")
  1082. #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
  1083. #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in DVD menus.")
  1084. #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
  1085. #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in DVD menus.")
  1086. #define DISC_MENU_TEXT N_("Go to the DVD menu")
  1087. #define DISC_MENU_LONGTEXT N_("Select the key to take you to the DVD menu")
  1088. #define TITLE_PREV_TEXT N_("Select previous DVD title")
  1089. #define TITLE_PREV_LONGTEXT N_("Select the key to choose the previous title from the DVD")
  1090. #define TITLE_NEXT_TEXT N_("Select next DVD title")
  1091. #define TITLE_NEXT_LONGTEXT N_("Select the key to choose the next title from the DVD")
  1092. #define CHAPTER_PREV_TEXT N_("Select prev DVD chapter")
  1093. #define CHAPTER_PREV_LONGTEXT N_("Select the key to choose the previous chapter from the DVD")
  1094. #define CHAPTER_NEXT_TEXT N_("Select next DVD chapter")
  1095. #define CHAPTER_NEXT_LONGTEXT N_("Select the key to choose the next chapter from the DVD")
  1096. #define VOL_UP_KEY_TEXT N_("Volume up")
  1097. #define VOL_UP_KEY_LONGTEXT N_("Select the key to increase audio volume.")
  1098. #define VOL_DOWN_KEY_TEXT N_("Volume down")
  1099. #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to decrease audio volume.")
  1100. #define VOL_MUTE_KEY_TEXT N_("Mute")
  1101. #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to mute audio.")
  1102. #define SUBDELAY_UP_KEY_TEXT N_("Subtitle delay up")
  1103. #define SUBDELAY_UP_KEY_LONGTEXT N_("Select the key to increase the subtitle delay.")
  1104. #define SUBDELAY_DOWN_KEY_TEXT N_("Subtitle delay down")
  1105. #define SUBDELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the subtitle delay.")
  1106. #define AUDIODELAY_UP_KEY_TEXT N_("Audio delay up")
  1107. #define AUDIODELAY_UP_KEY_LONGTEXT N_("Select the key to increase the audio delay.")
  1108. #define AUDIODELAY_DOWN_KEY_TEXT N_("Audio delay down")
  1109. #define AUDIODELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the audio delay.")
  1110. #define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter")
  1111. #define ZOOM_HALF_KEY_TEXT N_("1:2 Half")
  1112. #define ZOOM_ORIGINAL_KEY_TEXT N_("1:1 Original")
  1113. #define ZOOM_DOUBLE_KEY_TEXT N_("2:1 Double")
  1114. #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
  1115. #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
  1116. #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
  1117. #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
  1118. #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
  1119. #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
  1120. #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
  1121. #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
  1122. #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
  1123. #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
  1124. #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark.")
  1125. #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
  1126. #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
  1127. #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
  1128. #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
  1129. #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
  1130. #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
  1131. #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
  1132. #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
  1133. #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
  1134. #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
  1135. #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark.")
  1136. #define BOOKMARK1_TEXT N_("Playlist bookmark 1")
  1137. #define BOOKMARK2_TEXT N_("Playlist bookmark 2")
  1138. #define BOOKMARK3_TEXT N_("Playlist bookmark 3")
  1139. #define BOOKMARK4_TEXT N_("Playlist bookmark 4")
  1140. #define BOOKMARK5_TEXT N_("Playlist bookmark 5")
  1141. #define BOOKMARK6_TEXT N_("Playlist bookmark 6")
  1142. #define BOOKMARK7_TEXT N_("Playlist bookmark 7")
  1143. #define BOOKMARK8_TEXT N_("Playlist bookmark 8")
  1144. #define BOOKMARK9_TEXT N_("Playlist bookmark 9")
  1145. #define BOOKMARK10_TEXT N_("Playlist bookmark 10")
  1146. #define BOOKMARK_LONGTEXT N_( 
  1147.       "This allows you to define playlist bookmarks.")
  1148. #define HISTORY_BACK_TEXT N_("Go back in browsing history")
  1149. #define HISTORY_BACK_LONGTEXT N_("Select the key to go back (to the previous media item) in the browsing history.")
  1150. #define HISTORY_FORWARD_TEXT N_("Go forward in browsing history")
  1151. #define HISTORY_FORWARD_LONGTEXT N_("Select the key to go forward (to the next media item) in the browsing history.")
  1152. #define AUDIO_TRACK_KEY_TEXT N_("Cycle audio track")
  1153. #define AUDIO_TRACK_KEY_LONGTEXT N_("Cycle through the available audio tracks(languages).")
  1154. #define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
  1155. #define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks.")
  1156. #define ASPECT_RATIO_KEY_TEXT N_("Cycle source aspect ratio")
  1157. #define ASPECT_RATIO_KEY_LONGTEXT N_("Cycle through a predefined list of source aspect ratios.")
  1158. #define CROP_KEY_TEXT N_("Cycle video crop")
  1159. #define CROP_KEY_LONGTEXT N_("Cycle through a predefined list of crop formats.")
  1160. #define TOGGLE_AUTOSCALE_KEY_TEXT N_("Toggle autoscaling")
  1161. #define TOGGLE_AUTOSCALE_KEY_LONGTEXT N_("Activate or deactivate autoscaling.")
  1162. #define SCALE_UP_KEY_TEXT N_("Increase scale factor")
  1163. #define SCALE_UP_KEY_LONGTEXT N_("Increase scale factor.")
  1164. #define SCALE_DOWN_KEY_TEXT N_("Decrease scale factor")
  1165. #define SCALE_DOWN_KEY_LONGTEXT N_("Decrease scale factor.")
  1166. #define DEINTERLACE_KEY_TEXT N_("Cycle deinterlace modes")
  1167. #define DEINTERLACE_KEY_LONGTEXT N_("Cycle through deinterlace modes.")
  1168. #define INTF_SHOW_KEY_TEXT N_("Show interface")
  1169. #define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows.")
  1170. #define INTF_HIDE_KEY_TEXT N_("Hide interface")
  1171. #define INTF_HIDE_KEY_LONGTEXT N_("Lower the interface below all other windows.")
  1172. #define SNAP_KEY_TEXT N_("Take video snapshot")
  1173. #define SNAP_KEY_LONGTEXT N_("Takes a video snapshot and writes it to disk.")
  1174. #define RECORD_KEY_TEXT N_("Record")
  1175. #define RECORD_KEY_LONGTEXT N_("Record access filter start/stop.")
  1176. #define DUMP_KEY_TEXT N_("Dump")
  1177. #define DUMP_KEY_LONGTEXT N_("Media dump access filter trigger.")
  1178. #define LOOP_KEY_TEXT N_("Normal/Repeat/Loop")
  1179. #define LOOP_KEY_LONGTEXT N_("Toggle Normal/Repeat/Loop playlist modes")
  1180. #define RANDOM_KEY_TEXT N_("Random")
  1181. #define RANDOM_KEY_LONGTEXT N_("Toggle random playlist playback")
  1182. #define ZOOM_KEY_TEXT N_("Zoom")
  1183. #define ZOOM_KEY_LONGTEXT N_("Zoom")
  1184. #define UNZOOM_KEY_TEXT N_("Un-Zoom")
  1185. #define UNZOOM_KEY_LONGTEXT N_("Un-Zoom")
  1186. #define CROP_TOP_KEY_TEXT N_("Crop one pixel from the top of the video")
  1187. #define CROP_TOP_KEY_LONGTEXT N_("Crop one pixel from the top of the video")
  1188. #define UNCROP_TOP_KEY_TEXT N_("Uncrop one pixel from the top of the video")
  1189. #define UNCROP_TOP_KEY_LONGTEXT N_("Uncrop one pixel from the top of the video")
  1190. #define CROP_LEFT_KEY_TEXT N_("Crop one pixel from the left of the video")
  1191. #define CROP_LEFT_KEY_LONGTEXT N_("Crop one pixel from the left of the video")
  1192. #define UNCROP_LEFT_KEY_TEXT N_("Uncrop one pixel from the left of the video")
  1193. #define UNCROP_LEFT_KEY_LONGTEXT N_("Uncrop one pixel from the left of the video")
  1194. #define CROP_BOTTOM_KEY_TEXT N_("Crop one pixel from the bottom of the video")
  1195. #define CROP_BOTTOM_KEY_LONGTEXT N_("Crop one pixel from the bottom of the video")
  1196. #define UNCROP_BOTTOM_KEY_TEXT N_("Uncrop one pixel from the bottom of the video")
  1197. #define UNCROP_BOTTOM_KEY_LONGTEXT N_("Uncrop one pixel from the bottom of the video")
  1198. #define CROP_RIGHT_KEY_TEXT N_("Crop one pixel from the right of the video")
  1199. #define CROP_RIGHT_KEY_LONGTEXT N_("Crop one pixel from the right of the video")
  1200. #define UNCROP_RIGHT_KEY_TEXT N_("Uncrop one pixel from the right of the video")
  1201. #define UNCROP_RIGHT_KEY_LONGTEXT N_("Uncrop one pixel from the right of the video")
  1202. #define WALLPAPER_KEY_TEXT N_("Toggle wallpaper mode in video output")
  1203. #define WALLPAPER_KEY_LONGTEXT N_( 
  1204.     "Toggle wallpaper mode in video output. Only works with the directx " 
  1205.     "video output for the time being." )
  1206. #define MENU_ON_KEY_TEXT N_("Display OSD menu on top of video output")
  1207. #define MENU_ON_KEY_LONGTEXT N_("Display OSD menu on top of video output")
  1208. #define MENU_OFF_KEY_TEXT N_("Do not display OSD menu on video output")
  1209. #define MENU_OFF_KEY_LONGTEXT N_("Do not display OSD menu on top of video output")
  1210. #define MENU_RIGHT_KEY_TEXT N_("Highlight widget on the right")
  1211. #define MENU_RIGHT_KEY_LONGTEXT N_( 
  1212.         "Move OSD menu highlight to the widget on the right")
  1213. #define MENU_LEFT_KEY_TEXT N_("Highlight widget on the left")
  1214. #define MENU_LEFT_KEY_LONGTEXT N_( 
  1215.         "Move OSD menu highlight to the widget on the left")
  1216. #define MENU_UP_KEY_TEXT N_("Highlight widget on top")
  1217. #define MENU_UP_KEY_LONGTEXT N_( 
  1218.         "Move OSD menu highlight to the widget on top")
  1219. #define MENU_DOWN_KEY_TEXT N_("Highlight widget below")
  1220. #define MENU_DOWN_KEY_LONGTEXT N_( 
  1221.         "Move OSD menu highlight to the widget below")
  1222. #define MENU_SELECT_KEY_TEXT N_("Select current widget")
  1223. #define MENU_SELECT_KEY_LONGTEXT N_( 
  1224.         "Selecting current widget performs the associated action.")
  1225. #define AUDI_DEVICE_CYCLE_KEY_TEXT N_("Cycle through audio devices")
  1226. #define AUDI_DEVICE_CYCLE_KEY_LONGTEXT N_("Cycle through available audio devices")
  1227. const char vlc_usage[] = N_(
  1228.     "Usage: %s [options] [stream] ..."
  1229.     "nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
  1230.     "nThe first item specified will be played first."
  1231.     "n"
  1232.     "nOptions-styles:"
  1233.     "n  --option  A global option that is set for the duration of the program."
  1234.     "n   -option  A single letter version of a global --option."
  1235.     "n   :option  An option that only applies to the stream directly before it"
  1236.     "n            and that overrides previous settings."
  1237.     "n"
  1238.     "nStream MRL syntax:"
  1239.     "n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
  1240.     "n"
  1241.     "n  Many of the global --options can also be used as MRL specific :options."
  1242.     "n  Multiple :option=value pairs can be specified."
  1243.     "n"
  1244.     "nURL syntax:"
  1245.     "n  [file://]filename              Plain media file"
  1246.     "n  http://ip:port/file            HTTP URL"
  1247.     "n  ftp://ip:port/file             FTP URL"
  1248.     "n  mms://ip:port/file             MMS URL"
  1249.     "n  screen://                      Screen capture"
  1250.     "n  [dvd://][device][@raw_device]  DVD device"
  1251.     "n  [vcd://][device]               VCD device"
  1252.     "n  [cdda://][device]              Audio CD device"
  1253.     "n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
  1254.     "n                                 UDP stream sent by a streaming server"
  1255.     "n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
  1256.     "n  vlc://quit                     Special item to quit VLC"
  1257.     "n");
  1258. /*
  1259.  * Quick usage guide for the configuration options:
  1260.  *
  1261.  * add_category_hint( N_(text), N_(longtext), b_advanced_option )
  1262.  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option )
  1263.  * add_usage_hint( N_(text), b_advanced_option )
  1264.  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
  1265.                b_advanced_option )
  1266.  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) )
  1267.  * add_module( option_name, psz_value, i_capability, p_callback,
  1268.  *             N_(text), N_(longtext) )
  1269.  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
  1270.                 b_advanced_option )
  1271.  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext),
  1272.              b_advanced_option )
  1273.  */
  1274. vlc_module_begin ()
  1275. /* Audio options */
  1276.     set_category( CAT_AUDIO )
  1277.     set_subcategory( SUBCAT_AUDIO_GENERAL )
  1278.     add_category_hint( N_("Audio"), AOUT_CAT_LONGTEXT , false )
  1279.     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, false )
  1280.         change_safe ()
  1281.     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
  1282.                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
  1283.                             VOLUME_LONGTEXT, false )
  1284.     add_integer_with_range( "volume-step", AOUT_VOLUME_STEP, AOUT_VOLUME_MIN,
  1285.                             AOUT_VOLUME_MAX, NULL, VOLUME_STEP_TEXT,
  1286.                             VOLUME_STEP_LONGTEXT, true )
  1287.     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT,
  1288.                  AOUT_RATE_LONGTEXT, true )
  1289. #if !defined( __APPLE__ )
  1290.     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT,
  1291.               AOUT_RESAMP_LONGTEXT, true )
  1292. #endif
  1293.     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, false )
  1294.     add_integer( "force-dolby-surround", 0, NULL, FORCE_DOLBY_TEXT,
  1295.                  FORCE_DOLBY_LONGTEXT, false )
  1296.         change_integer_list( pi_force_dolby_values, ppsz_force_dolby_descriptions, NULL )
  1297.     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT,
  1298.                  DESYNC_LONGTEXT, true )
  1299.         change_safe ()
  1300.     /* FIXME TODO create a subcat replay gain ? */
  1301.     add_string( "audio-replay-gain-mode", ppsz_replay_gain_mode[0], NULL, AUDIO_REPLAY_GAIN_MODE_TEXT,
  1302.                 AUDIO_REPLAY_GAIN_MODE_LONGTEXT, false )
  1303.         change_string_list( ppsz_replay_gain_mode, ppsz_replay_gain_mode_text, 0 )
  1304.     add_float( "audio-replay-gain-preamp", 0.0, NULL,
  1305.                AUDIO_REPLAY_GAIN_PREAMP_TEXT, AUDIO_REPLAY_GAIN_PREAMP_LONGTEXT, false )
  1306.     add_float( "audio-replay-gain-default", -7.0, NULL,
  1307.                AUDIO_REPLAY_GAIN_DEFAULT_TEXT, AUDIO_REPLAY_GAIN_DEFAULT_LONGTEXT, false )
  1308.     add_bool( "audio-replay-gain-peak-protection", true, NULL,
  1309.               AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT, AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT, true )
  1310.     add_bool( "audio-time-stretch", true, NULL,
  1311.               AUDIO_TIME_STRETCH_TEXT, AUDIO_TIME_STRETCH_LONGTEXT, false )
  1312.     set_subcategory( SUBCAT_AUDIO_AOUT )
  1313.     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
  1314.                 true )
  1315.         change_short('A')
  1316.     set_subcategory( SUBCAT_AUDIO_AFILTER )
  1317.     add_module_list_cat( "audio-filter", SUBCAT_AUDIO_AFILTER, 0,
  1318.                          NULL, AUDIO_FILTER_TEXT,
  1319.                          AUDIO_FILTER_LONGTEXT, false )
  1320.     set_subcategory( SUBCAT_AUDIO_VISUAL )
  1321.     add_module( "audio-visual", "visualization",NULL, NULL,AUDIO_VISUAL_TEXT,
  1322.                 AUDIO_VISUAL_LONGTEXT, false )
  1323. /* Video options */
  1324.     set_category( CAT_VIDEO )
  1325.     set_subcategory( SUBCAT_VIDEO_GENERAL )
  1326.     add_category_hint( N_("Video"), VOUT_CAT_LONGTEXT , false )
  1327.     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, true )
  1328.         change_safe ()
  1329.     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
  1330.               GRAYSCALE_LONGTEXT, true )
  1331.     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
  1332.               FULLSCREEN_LONGTEXT, false )
  1333.         change_short('f')
  1334.         change_safe ()
  1335.     add_bool( "embedded-video", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT,
  1336.               true )
  1337. #ifdef __APPLE__
  1338.        add_deprecated_alias( "macosx-embedded" ) /*deprecated since 0.9.0 */
  1339. #endif
  1340.     add_bool( "drop-late-frames", 1, NULL, DROP_LATE_FRAMES_TEXT,
  1341.               DROP_LATE_FRAMES_LONGTEXT, true )
  1342.     /* Used in vout_synchro */
  1343.     add_bool( "skip-frames", 1, NULL, SKIP_FRAMES_TEXT,
  1344.               SKIP_FRAMES_LONGTEXT, true )
  1345.     add_bool( "quiet-synchro", 0, NULL, QUIET_SYNCHRO_TEXT,
  1346.               QUIET_SYNCHRO_LONGTEXT, true )
  1347.     add_integer( "vout-event", 1, NULL, VOUT_EVENT_TEXT, VOUT_EVENT_LONGTEXT, true )
  1348.         change_safe()
  1349.         change_integer_list( pi_vout_event_values, ppsz_vout_event_descriptions, NULL )
  1350.         add_deprecated_alias( "x11-event" ) /* renamed since 1.0.0 */
  1351. #ifndef __APPLE__
  1352.     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, false )
  1353. #endif
  1354.     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT,
  1355.               VIDEO_ON_TOP_LONGTEXT, false )
  1356.     add_bool( "disable-screensaver", true, NULL, SS_TEXT, SS_LONGTEXT,
  1357.               true )
  1358.     add_bool( "video-title-show", 1, NULL, VIDEO_TITLE_SHOW_TEXT,
  1359.               VIDEO_TITLE_SHOW_LONGTEXT, false )
  1360.         change_safe()
  1361.     add_integer( "video-title-timeout", 5000, NULL, VIDEO_TITLE_TIMEOUT_TEXT,
  1362.                  VIDEO_TITLE_TIMEOUT_LONGTEXT, false )
  1363.         change_safe()
  1364.     add_integer( "video-title-position", 8, NULL, VIDEO_TITLE_POSITION_TEXT,
  1365.                  VIDEO_TITLE_POSITION_LONGTEXT, false )
  1366.         change_safe()
  1367.         change_integer_list( pi_pos_values, ppsz_pos_descriptions, NULL )
  1368.     // autohide after 1.5s
  1369.     add_integer( "mouse-hide-timeout", 1500, NULL, MOUSE_HIDE_TIMEOUT_TEXT,
  1370.                  MOUSE_HIDE_TIMEOUT_LONGTEXT, false )
  1371.     set_section( N_("Snapshot") , NULL )
  1372.     add_directory( "snapshot-path", NULL, NULL, SNAP_PATH_TEXT,
  1373.                    SNAP_PATH_LONGTEXT, false )
  1374.     add_string( "snapshot-prefix", "vlcsnap-", NULL, SNAP_PREFIX_TEXT,
  1375.                    SNAP_PREFIX_LONGTEXT, false )
  1376.     add_string( "snapshot-format", "png", NULL, SNAP_FORMAT_TEXT,
  1377.                    SNAP_FORMAT_LONGTEXT, false )
  1378.         change_string_list( ppsz_snap_formats, NULL, 0 )
  1379.     add_bool( "snapshot-preview", true, NULL, SNAP_PREVIEW_TEXT,
  1380.               SNAP_PREVIEW_LONGTEXT, false )
  1381.     add_bool( "snapshot-sequential", false, NULL, SNAP_SEQUENTIAL_TEXT,
  1382.               SNAP_SEQUENTIAL_LONGTEXT, false )
  1383.     add_integer( "snapshot-width", -1, NULL, SNAP_WIDTH_TEXT,
  1384.                  SNAP_WIDTH_LONGTEXT, true )
  1385.     add_integer( "snapshot-height", -1, NULL, SNAP_HEIGHT_TEXT,
  1386.                  SNAP_HEIGHT_LONGTEXT, true )
  1387.     set_section( N_("Window properties" ), NULL )
  1388.     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, true )
  1389.         change_safe ()
  1390.     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, true )
  1391.         change_safe ()
  1392.     add_integer( "video-x", -1, NULL, VIDEOX_TEXT, VIDEOX_LONGTEXT, true )
  1393.         change_safe ()
  1394.     add_integer( "video-y", -1, NULL, VIDEOY_TEXT, VIDEOY_LONGTEXT, true )
  1395.         change_safe ()
  1396.     add_string( "crop", NULL, NULL, CROP_TEXT, CROP_LONGTEXT, false )
  1397.         change_safe ()
  1398.     add_string( "custom-crop-ratios", NULL, NULL, CUSTOM_CROP_RATIOS_TEXT,
  1399.                 CUSTOM_CROP_RATIOS_LONGTEXT, false )
  1400.     add_string( "aspect-ratio", NULL, NULL,
  1401.                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, false )
  1402.         change_safe ()
  1403.     add_bool( "autoscale", true, NULL, AUTOSCALE_TEXT, AUTOSCALE_LONGTEXT, false )
  1404.         change_safe ()
  1405.     add_float( "scale", 1.0, NULL, SCALEFACTOR_TEXT, SCALEFACTOR_LONGTEXT, false )
  1406.         change_safe ()
  1407.     add_string( "monitor-par", NULL, NULL,
  1408.                 MASPECT_RATIO_TEXT, MASPECT_RATIO_LONGTEXT, true )
  1409.     add_string( "custom-aspect-ratios", NULL, NULL, CUSTOM_ASPECT_RATIOS_TEXT,
  1410.                 CUSTOM_ASPECT_RATIOS_LONGTEXT, false )
  1411.     add_bool( "hdtv-fix", 1, NULL, HDTV_FIX_TEXT, HDTV_FIX_LONGTEXT, true )
  1412.     add_bool( "video-deco", 1, NULL, VIDEO_DECO_TEXT,
  1413.               VIDEO_DECO_LONGTEXT, true )
  1414.     add_string( "video-title", NULL, NULL, VIDEO_TITLE_TEXT,
  1415.                  VIDEO_TITLE_LONGTEXT, true )
  1416.     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, true )
  1417.         change_integer_list( pi_align_values, ppsz_align_descriptions, NULL )
  1418.     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, true )
  1419.     set_subcategory( SUBCAT_VIDEO_VOUT )
  1420.     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
  1421.                 true )
  1422.         change_short('V')
  1423.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  1424.     add_module_list_cat( "video-filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
  1425.                 VIDEO_FILTER_TEXT, VIDEO_FILTER_LONGTEXT, false )
  1426.         add_deprecated_alias( "filter" ) /*deprecated since 0.8.2 */
  1427.     add_module_list_cat( "vout-filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
  1428.                         VOUT_FILTER_TEXT, VOUT_FILTER_LONGTEXT, false )
  1429. #if 0
  1430.     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT )
  1431. #endif
  1432. /* Subpictures options */
  1433.     set_subcategory( SUBCAT_VIDEO_SUBPIC )
  1434.     set_section( N_("On Screen Display") , NULL )
  1435.     add_category_hint( N_("Subpictures"), SUB_CAT_LONGTEXT , false )
  1436.     add_bool( "spu", 1, NULL, SPU_TEXT, SPU_LONGTEXT, true )
  1437.         change_safe ()
  1438.     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, false )
  1439.     add_module( "text-renderer", "text renderer", NULL, NULL, TEXTRENDERER_TEXT,
  1440.                 TEXTRENDERER_LONGTEXT, true )
  1441.     set_section( N_("Subtitles") , NULL )
  1442.     add_file( "sub-file", NULL, NULL, SUB_FILE_TEXT,
  1443.               SUB_FILE_LONGTEXT, false )
  1444.         change_safe()
  1445.     add_bool( "sub-autodetect-file", true, NULL,
  1446.                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, false )
  1447.     add_integer( "sub-autodetect-fuzzy", 3, NULL,
  1448.                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, true )
  1449. #ifdef WIN32
  1450. #   define SUB_PATH ".\subtitles"
  1451. #else
  1452. #   define SUB_PATH "./Subtitles, ./subtitles"
  1453. #endif
  1454.     add_string( "sub-autodetect-path", SUB_PATH, NULL,
  1455.                  SUB_PATH_TEXT, SUB_PATH_LONGTEXT, true )
  1456.     add_integer( "sub-margin", 0, NULL, SUB_MARGIN_TEXT,
  1457.                  SUB_MARGIN_LONGTEXT, true )
  1458.         add_deprecated_alias( "spu-margin" ) /*Deprecated since 0.8.2 */
  1459.     set_section( N_( "Overlays" ) , NULL )
  1460.     add_module_list_cat( "sub-filter", SUBCAT_VIDEO_SUBPIC, NULL, NULL,
  1461.                 SUB_FILTER_TEXT, SUB_FILTER_LONGTEXT, false )
  1462. /* Input options */
  1463.     set_category( CAT_INPUT )
  1464.     set_subcategory( SUBCAT_INPUT_GENERAL )
  1465.     set_section( N_( "Track settings" ), NULL )
  1466.     add_integer( "program", 0, NULL,
  1467.                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, true )
  1468.         change_safe ()
  1469.     add_string( "programs", "", NULL,
  1470.                 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, true )
  1471.         change_safe ()
  1472.     add_integer( "audio-track", -1, NULL,
  1473.                  INPUT_AUDIOTRACK_TEXT, INPUT_AUDIOTRACK_LONGTEXT, true )
  1474.         change_safe ()
  1475.         add_deprecated_alias( "audio-channel" ) /*deprecated since 0.8.2 */
  1476.     add_integer( "sub-track", -1, NULL,
  1477.                  INPUT_SUBTRACK_TEXT, INPUT_SUBTRACK_LONGTEXT, true )
  1478.         change_safe ()
  1479.         add_deprecated_alias("spu-channel" ) /*deprecated since 0.8.2*/
  1480.     add_string( "audio-language", "", NULL,
  1481.                  INPUT_AUDIOTRACK_LANG_TEXT, INPUT_AUDIOTRACK_LANG_LONGTEXT,
  1482.                   false )
  1483.         change_safe ()
  1484.     add_string( "sub-language", "", NULL,
  1485.                  INPUT_SUBTRACK_LANG_TEXT, INPUT_SUBTRACK_LANG_LONGTEXT,
  1486.                   false )
  1487.         change_safe ()
  1488.     add_integer( "audio-track-id", -1, NULL, INPUT_AUDIOTRACK_ID_TEXT,
  1489.                  INPUT_AUDIOTRACK_ID_LONGTEXT, true )
  1490.         change_safe ()
  1491.     add_integer( "sub-track-id", -1, NULL,
  1492.                  INPUT_SUBTRACK_ID_TEXT, INPUT_SUBTRACK_ID_LONGTEXT, true )
  1493.         change_safe ()
  1494.     set_section( N_( "Playback control" ) , NULL)
  1495.     add_integer( "input-repeat", 0, NULL,
  1496.                  INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, false )
  1497.         change_safe ()
  1498.     add_float( "start-time", 0, NULL,
  1499.                START_TIME_TEXT, START_TIME_LONGTEXT, true )
  1500.         change_safe ()
  1501.     add_float( "stop-time", 0, NULL,
  1502.                STOP_TIME_TEXT, STOP_TIME_LONGTEXT, true )
  1503.         change_safe ()
  1504.     add_float( "run-time", 0, NULL,
  1505.                RUN_TIME_TEXT, RUN_TIME_LONGTEXT, true )
  1506.         change_safe ()
  1507.     add_bool( "input-fast-seek", false, NULL,
  1508.               INPUT_FAST_SEEK_TEXT, INPUT_FAST_SEEK_LONGTEXT, false )
  1509.         change_safe ()
  1510.     add_string( "input-list", NULL, NULL,
  1511.                  INPUT_LIST_TEXT, INPUT_LIST_LONGTEXT, true )
  1512.     add_string( "input-slave", NULL, NULL,
  1513.                  INPUT_SLAVE_TEXT, INPUT_SLAVE_LONGTEXT, true )
  1514.     add_string( "bookmarks", NULL, NULL,
  1515.                  BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, true )
  1516.     set_section( N_( "Default devices") , NULL )
  1517.     add_file( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT,
  1518.               false )
  1519.     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT,
  1520.               false )
  1521.     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT,
  1522.               CDAUDIO_DEV_LONGTEXT, false )
  1523.     set_section( N_( "Network settings" ), NULL )
  1524.     add_integer( "server-port", 1234, NULL,
  1525.                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, false )
  1526.     add_integer( "mtu", MTU_DEFAULT, NULL, MTU_TEXT, MTU_LONGTEXT, true )
  1527.     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, false )
  1528.         change_short('6')
  1529.     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, false )
  1530.         change_short('4')
  1531.     add_integer( "ipv4-timeout", 5 * 1000, NULL, TIMEOUT_TEXT,
  1532.                  TIMEOUT_LONGTEXT, true )
  1533.     set_section( N_( "Socks proxy") , NULL )
  1534.     add_string( "socks", NULL, NULL,
  1535.                  SOCKS_SERVER_TEXT, SOCKS_SERVER_LONGTEXT, true )
  1536.     add_string( "socks-user", NULL, NULL,
  1537.                  SOCKS_USER_TEXT, SOCKS_USER_LONGTEXT, true )
  1538.     add_string( "socks-pwd", NULL, NULL,
  1539.                  SOCKS_PASS_TEXT, SOCKS_PASS_LONGTEXT, true )
  1540.     set_section( N_("Metadata" ) , NULL )
  1541.     add_string( "meta-title", NULL, NULL, META_TITLE_TEXT,
  1542.                 META_TITLE_LONGTEXT, true )
  1543.         change_safe()
  1544.     add_string( "meta-author", NULL, NULL, META_AUTHOR_TEXT,
  1545.                 META_AUTHOR_LONGTEXT, true )
  1546.         change_safe()
  1547.     add_string( "meta-artist", NULL, NULL, META_ARTIST_TEXT,
  1548.                 META_ARTIST_LONGTEXT, true )
  1549.         change_safe()
  1550.     add_string( "meta-genre", NULL, NULL, META_GENRE_TEXT,
  1551.                 META_GENRE_LONGTEXT, true )
  1552.         change_safe()
  1553.     add_string( "meta-copyright", NULL, NULL, META_CPYR_TEXT,
  1554.                 META_CPYR_LONGTEXT, true )
  1555.         change_safe()
  1556.     add_string( "meta-description", NULL, NULL, META_DESCR_TEXT,
  1557.                 META_DESCR_LONGTEXT, true )
  1558.         change_safe()
  1559.     add_string( "meta-date", NULL, NULL, META_DATE_TEXT,
  1560.                 META_DATE_LONGTEXT, true )
  1561.         change_safe()
  1562.     add_string( "meta-url", NULL, NULL, META_URL_TEXT,
  1563.                 META_URL_LONGTEXT, true )
  1564.         change_safe()
  1565.     set_section( N_( "Advanced" ), NULL )
  1566.     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
  1567.                  CR_AVERAGE_LONGTEXT, true )
  1568.     add_integer( "clock-synchro", -1, NULL, CLOCK_SYNCHRO_TEXT,
  1569.                  CLOCK_SYNCHRO_LONGTEXT, true )
  1570.         change_integer_list( pi_clock_values, ppsz_clock_descriptions, NULL )
  1571.     add_bool( "network-synchronisation", false, NULL, NETSYNC_TEXT,
  1572.               NETSYNC_LONGTEXT, true )
  1573.     add_string( "input-record-path", NULL, NULL, INPUT_RECORD_PATH_TEXT,
  1574.                 INPUT_RECORD_PATH_LONGTEXT, true )
  1575.     add_bool( "input-record-native", true, NULL, INPUT_RECORD_NATIVE_TEXT,
  1576.               INPUT_RECORD_NATIVE_LONGTEXT, true )
  1577.     add_string( "input-timeshift-path", NULL, NULL, INPUT_TIMESHIFT_PATH_TEXT,
  1578.                 INPUT_TIMESHIFT_PATH_LONGTEXT, true )
  1579.     add_integer( "input-timeshift-granularity", -1, NULL, INPUT_TIMESHIFT_GRANULARITY_TEXT,
  1580.                  INPUT_TIMESHIFT_GRANULARITY_LONGTEXT, true )
  1581. /* Decoder options */
  1582.     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , true )
  1583.     add_string( "codec", NULL, NULL, CODEC_TEXT,
  1584.                 CODEC_LONGTEXT, true )
  1585.     add_string( "encoder",  NULL, NULL, ENCODER_TEXT,
  1586.                 ENCODER_LONGTEXT, true )
  1587.     set_subcategory( SUBCAT_INPUT_ACCESS )
  1588.     add_category_hint( N_("Input"), INPUT_CAT_LONGTEXT , false )
  1589.     add_module( "access", "access", NULL, NULL, ACCESS_TEXT,
  1590.                 ACCESS_LONGTEXT, true )
  1591.     set_subcategory( SUBCAT_INPUT_DEMUX )
  1592.     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT,
  1593.                 DEMUX_LONGTEXT, true )
  1594.     set_subcategory( SUBCAT_INPUT_VCODEC )
  1595.     set_subcategory( SUBCAT_INPUT_ACODEC )
  1596.     set_subcategory( SUBCAT_INPUT_SCODEC )
  1597.     add_bool( "prefer-system-codecs", false, NULL, SYSTEM_CODEC_TEXT,
  1598.                                 SYSTEM_CODEC_LONGTEXT, false )
  1599.     set_subcategory( SUBCAT_INPUT_STREAM_FILTER )
  1600.     add_module_list_cat( "stream-filter", SUBCAT_INPUT_STREAM_FILTER, NULL, NULL,
  1601.                 STREAM_FILTER_TEXT, STREAM_FILTER_LONGTEXT, false )
  1602. /* Stream output options */
  1603.     set_category( CAT_SOUT )
  1604.     set_subcategory( SUBCAT_SOUT_GENERAL )
  1605.     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , true )
  1606.     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, true )
  1607.     add_bool( "sout-display", false, NULL, SOUT_DISPLAY_TEXT,
  1608.                                 SOUT_DISPLAY_LONGTEXT, true )
  1609.     add_bool( "sout-keep", false, NULL, SOUT_KEEP_TEXT,
  1610.                                 SOUT_KEEP_LONGTEXT, true )
  1611.     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
  1612.                                 SOUT_ALL_LONGTEXT, true )
  1613.     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
  1614.                                 SOUT_AUDIO_LONGTEXT, true )
  1615.     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
  1616.                                 SOUT_VIDEO_LONGTEXT, true )
  1617.     add_bool( "sout-spu", 1, NULL, SOUT_SPU_TEXT,
  1618.                                 SOUT_SPU_LONGTEXT, true )
  1619.     add_integer( "sout-mux-caching", 1500, NULL, SOUT_MUX_CACHING_TEXT,
  1620.                                 SOUT_MUX_CACHING_LONGTEXT, true )
  1621.     set_section( N_("VLM"), NULL )
  1622.     add_string( "vlm-conf", NULL, NULL, VLM_CONF_TEXT,
  1623.                     VLM_CONF_LONGTEXT, true )
  1624.     set_subcategory( SUBCAT_SOUT_STREAM )
  1625.     set_subcategory( SUBCAT_SOUT_MUX )
  1626.     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
  1627.                                 MUX_LONGTEXT, true )
  1628.     set_subcategory( SUBCAT_SOUT_ACO )
  1629.     add_module( "access_output", "sout access", NULL, NULL,
  1630.                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, true )
  1631.     add_integer( "ttl", -1, NULL, TTL_TEXT, TTL_LONGTEXT, true )
  1632.     add_string( "miface", NULL, NULL, MIFACE_TEXT, MIFACE_LONGTEXT, true )
  1633.     add_string( "miface-addr", NULL, NULL, MIFACE_ADDR_TEXT, MIFACE_ADDR_LONGTEXT, true )
  1634.     add_integer( "dscp", 0, NULL, DSCP_TEXT, DSCP_LONGTEXT, true )
  1635.     set_subcategory( SUBCAT_SOUT_PACKETIZER )
  1636.     add_module( "packetizer","packetizer", NULL, NULL,
  1637.                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, true )
  1638.     set_subcategory( SUBCAT_SOUT_SAP )
  1639.     add_obsolete_bool( "sap-flow-control" )
  1640.     add_integer( "sap-interval", 5, NULL, ANN_SAPINTV_TEXT,
  1641.                                ANN_SAPINTV_LONGTEXT, true )
  1642.     set_subcategory( SUBCAT_SOUT_VOD )
  1643. /* CPU options */
  1644.     set_category( CAT_ADVANCED )
  1645.     set_subcategory( SUBCAT_ADVANCED_CPU )
  1646.     add_category_hint( N_("CPU"), CPU_CAT_LONGTEXT, true )
  1647.     add_bool( "fpu", 1, NULL, FPU_TEXT, FPU_LONGTEXT, true )
  1648.         change_need_restart ()
  1649. #if defined( __i386__ ) || defined( __x86_64__ )
  1650.     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, true )
  1651.         change_need_restart ()
  1652.     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, true )
  1653.         change_need_restart ()
  1654.     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, true )
  1655.         change_need_restart ()
  1656.     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, true )
  1657.         change_need_restart ()
  1658.     add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, true )
  1659.         change_need_restart ()
  1660. #endif
  1661. #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
  1662.     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, true )
  1663.         change_need_restart ()
  1664. #endif
  1665. /* Misc options */
  1666.     set_subcategory( SUBCAT_ADVANCED_MISC )
  1667.     set_section( N_("Special modules"), NULL )
  1668.     add_category_hint( N_("Miscellaneous"), MISC_CAT_LONGTEXT, true )
  1669.     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT,
  1670.                 MEMCPY_LONGTEXT, true )
  1671.         change_need_restart ()
  1672.     set_section( N_("Plugins" ), NULL )
  1673.     add_bool( "plugins-cache", true, NULL, PLUGINS_CACHE_TEXT,
  1674.               PLUGINS_CACHE_LONGTEXT, true )
  1675.         change_need_restart ()
  1676.     add_directory( "plugin-path", NULL, NULL, PLUGIN_PATH_TEXT,
  1677.                    PLUGIN_PATH_LONGTEXT, true )
  1678.         change_need_restart ()
  1679.     set_section( N_("Performance options"), NULL )
  1680.     add_obsolete_bool( "minimize-threads" )
  1681.     add_obsolete_bool( "use-stream-immediate" )
  1682.     add_obsolete_bool( "auto-adjust-pts-delay" )
  1683. #if !defined(__APPLE__) && !defined(SYS_BEOS) && defined(LIBVLC_USE_PTHREAD)
  1684.     add_bool( "rt-priority", false, NULL, RT_PRIORITY_TEXT,
  1685.               RT_PRIORITY_LONGTEXT, true )
  1686.         change_need_restart ()
  1687. #endif
  1688. #if !defined(SYS_BEOS) && defined(LIBVLC_USE_PTHREAD)
  1689.     add_integer( "rt-offset", 0, NULL, RT_OFFSET_TEXT,
  1690.                  RT_OFFSET_LONGTEXT, true )
  1691.         change_need_restart ()
  1692. #endif
  1693. #if defined(HAVE_DBUS)
  1694.     add_bool( "inhibit", 1, NULL, INHIBIT_TEXT,
  1695.               INHIBIT_LONGTEXT, true )
  1696. #endif
  1697. #if defined(WIN32) || defined(HAVE_DBUS)
  1698.     add_bool( "one-instance", 0, NULL, ONEINSTANCE_TEXT,
  1699.               ONEINSTANCE_LONGTEXT, true )
  1700.     add_bool( "started-from-file", 0, NULL, STARTEDFROMFILE_TEXT,
  1701.               STARTEDFROMFILE_LONGTEXT, true )
  1702.         change_internal ()
  1703.         change_unsaveable ()
  1704.     add_bool( "one-instance-when-started-from-file", 1, NULL,
  1705.               ONEINSTANCEWHENSTARTEDFROMFILE_TEXT,
  1706.               ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT, true )
  1707.     add_bool( "playlist-enqueue", 0, NULL, PLAYLISTENQUEUE_TEXT,
  1708.               PLAYLISTENQUEUE_LONGTEXT, true )
  1709.         change_unsaveable ()
  1710. #endif
  1711. #if defined(WIN32)
  1712.     add_bool( "high-priority", 0, NULL, HPRIORITY_TEXT,
  1713.               HPRIORITY_LONGTEXT, false )
  1714.         change_need_restart ()
  1715. #endif
  1716. /* Playlist options */
  1717.     set_category( CAT_PLAYLIST )
  1718.     set_subcategory( SUBCAT_PLAYLIST_GENERAL )
  1719.     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , false )
  1720.     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, false )
  1721.         change_short('Z')
  1722.         change_safe()
  1723.     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, false )
  1724.         change_short('L')
  1725.         change_safe()
  1726.     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, false )
  1727.         change_short('R')
  1728.         change_safe()
  1729.     add_bool( "play-and-exit", 0, NULL, PAE_TEXT, PAE_LONGTEXT, false )
  1730.     add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, false )
  1731.         change_safe()
  1732.     add_bool( "media-library", 1, NULL, ML_TEXT, ML_LONGTEXT, false )
  1733.     add_bool( "playlist-tree", 0, NULL, PLTREE_TEXT, PLTREE_LONGTEXT, false )
  1734.     add_string( "open", "", NULL, OPEN_TEXT, OPEN_LONGTEXT, false )
  1735.         change_need_restart ()
  1736.     add_bool( "auto-preparse", true, NULL, PREPARSE_TEXT,
  1737.               PREPARSE_LONGTEXT, false )
  1738.     add_integer( "album-art", ALBUM_ART_WHEN_ASKED, NULL, ALBUM_ART_TEXT,
  1739.                  ALBUM_ART_LONGTEXT, false )
  1740.         change_integer_list( pi_albumart_values,
  1741.                              ppsz_albumart_descriptions, 0 )
  1742.     set_subcategory( SUBCAT_PLAYLIST_SD )
  1743.     add_module_list_cat( "services-discovery", SUBCAT_PLAYLIST_SD, NULL,
  1744.                           NULL, SD_TEXT, SD_LONGTEXT, false )
  1745.         change_short('S')
  1746.         change_need_restart ()
  1747. /* Interface options */
  1748.     set_category( CAT_INTERFACE )
  1749.     set_subcategory( SUBCAT_INTERFACE_GENERAL )
  1750.     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
  1751.                  false )
  1752.         change_short('v')
  1753.     add_string( "verbose-objects", 0, NULL, VERBOSE_OBJECTS_TEXT, VERBOSE_OBJECTS_LONGTEXT,
  1754.                  false )
  1755.     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, true )
  1756.         change_short('q')
  1757. #if !defined(WIN32)
  1758.     add_bool( "daemon", 0, NULL, DAEMON_TEXT, DAEMON_LONGTEXT, true )
  1759.         change_short('d')
  1760.         change_need_restart ()
  1761.     add_string( "pidfile", NULL, NULL, PIDFILE_TEXT, PIDFILE_LONGTEXT,
  1762.                                        false )
  1763.         change_need_restart ()
  1764. #endif
  1765.     add_bool( "file-logging", false, NULL, FILE_LOG_TEXT, FILE_LOG_LONGTEXT,
  1766.               true )
  1767.         change_need_restart ()
  1768. #ifdef HAVE_SYSLOG_H
  1769.     add_bool ( "syslog", false, NULL, SYSLOG_TEXT, SYSLOG_LONGTEXT,
  1770.                true )
  1771.         change_need_restart ()
  1772. #endif
  1773. #if defined (WIN32) || defined (__APPLE__)
  1774.     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
  1775.                 false )
  1776.         change_string_list( ppsz_language, ppsz_language_text, 0 )
  1777.         change_need_restart ()
  1778. #endif
  1779.     add_bool( "color", true, NULL, COLOR_TEXT, COLOR_LONGTEXT, true )
  1780.     add_bool( "advanced", false, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT,
  1781.                     false )
  1782.         change_need_restart ()
  1783.     add_bool( "interact", true, NULL, INTERACTION_TEXT,
  1784.               INTERACTION_LONGTEXT, false )
  1785.     add_bool( "show-intf", false, NULL, SHOWINTF_TEXT, SHOWINTF_LONGTEXT,
  1786.               false )
  1787.         change_need_restart ()
  1788.     add_bool ( "stats", true, NULL, STATS_TEXT, STATS_LONGTEXT, true )
  1789.         change_need_restart ()
  1790.     set_subcategory( SUBCAT_INTERFACE_MAIN )
  1791.     add_module_cat( "intf", SUBCAT_INTERFACE_MAIN, NULL, NULL, INTF_TEXT,
  1792.                 INTF_LONGTEXT, false )
  1793.         change_short('I')
  1794.         change_need_restart ()
  1795.     add_module_list_cat( "extraintf", SUBCAT_INTERFACE_MAIN,
  1796.                          NULL, NULL, EXTRAINTF_TEXT,
  1797.                          EXTRAINTF_LONGTEXT, false )
  1798.         change_need_restart ()
  1799.     set_subcategory( SUBCAT_INTERFACE_CONTROL )
  1800.     add_module_list_cat( "control", SUBCAT_INTERFACE_CONTROL, NULL, NULL,
  1801.                          CONTROL_TEXT, CONTROL_LONGTEXT, false )
  1802.         change_need_restart ()
  1803. /* Hotkey options*/
  1804.     set_subcategory( SUBCAT_INTERFACE_HOTKEYS )
  1805.     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , false )
  1806. #if defined(__APPLE__)
  1807. /* Don't use the following combo's */
  1808. /*  copy                          KEY_MODIFIER_COMMAND|'c'
  1809.  *  cut                           KEY_MODIFIER_COMMAND|'x'
  1810.  *  paste                         KEY_MODIFIER_COMMAND|'v'
  1811.  *  select all                    KEY_MODIFIER_COMMAND|'a'
  1812.  *  preferences                   KEY_MODIFIER_COMMAND|','
  1813.  *  hide vlc                      KEY_MODIFIER_COMMAND|'h'
  1814.  *  hide other                    KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'h'
  1815.  *  open file                     KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'o'
  1816.  *  open                          KEY_MODIFIER_COMMAND|'o'
  1817.  *  open disk                     KEY_MODIFIER_COMMAND|'d'
  1818.  *  open network                  KEY_MODIFIER_COMMAND|'n'
  1819.  *  open capture                  KEY_MODIFIER_COMMAND|'r'
  1820.  *  save playlist                 KEY_MODIFIER_COMMAND|'s'
  1821.  *  playlist random               KEY_MODIFIER_COMMAND|'z'
  1822.  *  playlist repeat all           KEY_MODIFIER_COMMAND|'l'
  1823.  *  playlist repeat               KEY_MODIFIER_COMMAND|'r'
  1824.  *  video half size               KEY_MODIFIER_COMMAND|'0'
  1825.  *  video normal size             KEY_MODIFIER_COMMAND|'1'
  1826.  *  video double size             KEY_MODIFIER_COMMAND|'2'
  1827.  *  video fit to screen           KEY_MODIFIER_COMMAND|'3'
  1828.  *  minimize window               KEY_MODIFIER_COMMAND|'m'
  1829.  *  quit application              KEY_MODIFIER_COMMAND|'q'
  1830.  *  close window                  KEY_MODIFIER_COMMAND|'w'
  1831.  *  streaming wizard              KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'w'
  1832.  *  show controller               KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'c'
  1833.  *  show playlist                 KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'p'
  1834.  *  show info                     KEY_MODIFIER_COMMAND|'i'
  1835.  *  show extended controls        KEY_MODIFIER_COMMAND|'e'
  1836.  *  show equaliser                KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'e'
  1837.  *  show bookmarks                KEY_MODIFIER_COMMAND|'b'
  1838.  *  show messages                 KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m'
  1839.  *  show errors and warnings      KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|'m'
  1840.  *  help                          KEY_MODIFIER_COMMAND|'?'
  1841.  *  readme / FAQ                  KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'?'
  1842.  */
  1843. #   define KEY_TOGGLE_FULLSCREEN  KEY_MODIFIER_COMMAND|'f'
  1844. #   define KEY_LEAVE_FULLSCREEN   KEY_ESC
  1845. #   define KEY_PLAY_PAUSE         KEY_MODIFIER_COMMAND|'p'
  1846. #   define KEY_PAUSE              KEY_UNSET
  1847. #   define KEY_PLAY               KEY_UNSET
  1848. #   define KEY_FASTER             KEY_MODIFIER_COMMAND|'='
  1849. #   define KEY_SLOWER             KEY_MODIFIER_COMMAND|'-'
  1850. #   define KEY_RATE_NORMAL        KEY_UNSET
  1851. #   define KEY_RATE_FASTER_FINE   KEY_UNSET
  1852. #   define KEY_RATE_SLOWER_FINE   KEY_UNSET
  1853. #   define KEY_NEXT               KEY_MODIFIER_COMMAND|KEY_RIGHT
  1854. #   define KEY_PREV               KEY_MODIFIER_COMMAND|KEY_LEFT
  1855. #   define KEY_STOP               KEY_MODIFIER_COMMAND|'.'
  1856. #   define KEY_POSITION           't'
  1857. #   define KEY_JUMP_MEXTRASHORT   KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|KEY_LEFT
  1858. #   define KEY_JUMP_PEXTRASHORT   KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|KEY_RIGHT
  1859. #   define KEY_JUMP_MSHORT        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT
  1860. #   define KEY_JUMP_PSHORT        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT
  1861. #   define KEY_JUMP_MMEDIUM       KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT
  1862. #   define KEY_JUMP_PMEDIUM       KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT
  1863. #   define KEY_JUMP_MLONG         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT
  1864. #   define KEY_JUMP_PLONG         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT
  1865. #   define KEY_FRAME_NEXT         'e'
  1866. #   define KEY_NAV_ACTIVATE       KEY_ENTER
  1867. #   define KEY_NAV_UP             KEY_UP
  1868. #   define KEY_NAV_DOWN           KEY_DOWN
  1869. #   define KEY_NAV_LEFT           KEY_LEFT
  1870. #   define KEY_NAV_RIGHT          KEY_RIGHT
  1871. #   define KEY_QUIT               KEY_MODIFIER_COMMAND|'q'
  1872. #   define KEY_VOL_UP             KEY_MODIFIER_COMMAND|KEY_UP
  1873. #   define KEY_VOL_DOWN           KEY_MODIFIER_COMMAND|KEY_DOWN
  1874. #   define KEY_VOL_MUTE           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_DOWN
  1875. #   define KEY_SUBDELAY_UP        'j'
  1876. #   define KEY_SUBDELAY_DOWN      'h'
  1877. #   define KEY_AUDIODELAY_UP      'g'
  1878. #   define KEY_AUDIODELAY_DOWN    'f'
  1879. #   define KEY_AUDIO_TRACK        'l'
  1880. #   define KEY_SUBTITLE_TRACK     's'
  1881. #   define KEY_ASPECT_RATIO       'a'
  1882. #   define KEY_CROP               'c'
  1883. #   define KEY_TOGGLE_AUTOSCALE   'o'
  1884. #   define KEY_SCALE_UP           KEY_MODIFIER_ALT|'o'
  1885. #   define KEY_SCALE_DOWN         KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|'o'
  1886. #   define KEY_DEINTERLACE        'd'
  1887. #   define KEY_INTF_SHOW          'i'
  1888. #   define KEY_INTF_HIDE          KEY_MODIFIER_SHIFT|'i'
  1889. #   define KEY_DISC_MENU          KEY_MODIFIER_CTRL|'m'
  1890. #   define KEY_TITLE_PREV         KEY_MODIFIER_CTRL|'p'
  1891. #   define KEY_TITLE_NEXT         KEY_MODIFIER_CTRL|'n'
  1892. #   define KEY_CHAPTER_PREV       KEY_MODIFIER_CTRL|'u'
  1893. #   define KEY_CHAPTER_NEXT       KEY_MODIFIER_CTRL|'d'
  1894. #   define KEY_SNAPSHOT           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'s'
  1895. #   define KEY_ZOOM               'z'
  1896. #   define KEY_UNZOOM             KEY_MODIFIER_SHIFT|'z'
  1897. #   define KEY_RANDOM             'r'
  1898. #   define KEY_LOOP               KEY_MODIFIER_SHIFT|'l'
  1899. #   define KEY_CROP_TOP           KEY_MODIFIER_ALT|'i'
  1900. #   define KEY_UNCROP_TOP         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'i'
  1901. #   define KEY_CROP_LEFT          KEY_MODIFIER_ALT|'j'
  1902. #   define KEY_UNCROP_LEFT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'j'
  1903. #   define KEY_CROP_BOTTOM        KEY_MODIFIER_ALT|'k'
  1904. #   define KEY_UNCROP_BOTTOM      KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'k'
  1905. #   define KEY_CROP_RIGHT         KEY_MODIFIER_ALT|'l'
  1906. #   define KEY_UNCROP_RIGHT       KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'l'
  1907. /* the macosx-interface already has bindings */
  1908. #   define KEY_ZOOM_QUARTER       KEY_UNSET
  1909. #   define KEY_ZOOM_HALF          KEY_UNSET
  1910. #   define KEY_ZOOM_ORIGINAL      KEY_UNSET
  1911. #   define KEY_ZOOM_DOUBLE        KEY_UNSET
  1912. #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_COMMAND|KEY_F1
  1913. #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_COMMAND|KEY_F2
  1914. #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_COMMAND|KEY_F3
  1915. #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_COMMAND|KEY_F4
  1916. #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_COMMAND|KEY_F5
  1917. #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_COMMAND|KEY_F6
  1918. #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_COMMAND|KEY_F7
  1919. #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_COMMAND|KEY_F8
  1920. #   define KEY_SET_BOOKMARK9      KEY_UNSET
  1921. #   define KEY_SET_BOOKMARK10     KEY_UNSET
  1922. #   define KEY_PLAY_BOOKMARK1     KEY_F1
  1923. #   define KEY_PLAY_BOOKMARK2     KEY_F2
  1924. #   define KEY_PLAY_BOOKMARK3     KEY_F3
  1925. #   define KEY_PLAY_BOOKMARK4     KEY_F4
  1926. #   define KEY_PLAY_BOOKMARK5     KEY_F5
  1927. #   define KEY_PLAY_BOOKMARK6     KEY_F6
  1928. #   define KEY_PLAY_BOOKMARK7     KEY_F7
  1929. #   define KEY_PLAY_BOOKMARK8     KEY_F8
  1930. #   define KEY_PLAY_BOOKMARK9     KEY_UNSET
  1931. #   define KEY_PLAY_BOOKMARK10    KEY_UNSET
  1932. #   define KEY_HISTORY_BACK       KEY_MODIFIER_COMMAND|'['
  1933. #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_COMMAND|']'
  1934. #   define KEY_RECORD             KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'r'
  1935. #   define KEY_DUMP               KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'d'
  1936. #   define KEY_WALLPAPER          KEY_MODIFIER_COMMAND|'w'
  1937. #   define KEY_MENU_ON            KEY_MODIFIER_ALT|'m'
  1938. #   define KEY_MENU_OFF           KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'m'
  1939. #   define KEY_MENU_RIGHT         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_RIGHT
  1940. #   define KEY_MENU_LEFT          KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_LEFT
  1941. #   define KEY_MENU_UP            KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_UP
  1942. #   define KEY_MENU_DOWN          KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_DOWN
  1943. #   define KEY_MENU_SELECT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_ENTER
  1944. #   define KEY_AUDIODEVICE_CYCLE  KEY_MODIFIER_SHIFT|'a'
  1945. #else /* Non Mac OS X */
  1946.     /*
  1947.        You should try to avoid Ctrl + letter key, because they are usually for
  1948.        dialogs showing and interface related stuffs.
  1949.        It would be nice (less important than previous rule) to try to avoid
  1950.        alt + letter key, because they are usually for menu accelerators and you
  1951.        don't know how the translator is going to do it.
  1952.      */
  1953. #   define KEY_TOGGLE_FULLSCREEN  'f'
  1954. #   define KEY_LEAVE_FULLSCREEN   KEY_ESC
  1955. #   define KEY_PLAY_PAUSE         KEY_SPACE
  1956. #   define KEY_PAUSE              KEY_UNSET
  1957. #   define KEY_PLAY               KEY_UNSET
  1958. #   define KEY_FASTER             '+'
  1959. #   define KEY_SLOWER             '-'
  1960. #   define KEY_RATE_NORMAL        '='
  1961. #   define KEY_RATE_FASTER_FINE   ']'
  1962. #   define KEY_RATE_SLOWER_FINE   '['
  1963. #   define KEY_NEXT               'n'
  1964. #   define KEY_PREV               'p'
  1965. #   define KEY_STOP               's'
  1966. #   define KEY_POSITION           't'
  1967. #   define KEY_JUMP_MEXTRASHORT   KEY_MODIFIER_SHIFT|KEY_LEFT
  1968. #   define KEY_JUMP_PEXTRASHORT   KEY_MODIFIER_SHIFT|KEY_RIGHT
  1969. #   define KEY_JUMP_MSHORT        KEY_MODIFIER_ALT|KEY_LEFT
  1970. #   define KEY_JUMP_PSHORT        KEY_MODIFIER_ALT|KEY_RIGHT
  1971. #   define KEY_JUMP_MMEDIUM       KEY_MODIFIER_CTRL|KEY_LEFT
  1972. #   define KEY_JUMP_PMEDIUM       KEY_MODIFIER_CTRL|KEY_RIGHT
  1973. #   define KEY_JUMP_MLONG         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT
  1974. #   define KEY_JUMP_PLONG         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT
  1975. #   define KEY_FRAME_NEXT         'e'
  1976. #   define KEY_NAV_ACTIVATE       KEY_ENTER
  1977. #   define KEY_NAV_UP             KEY_UP
  1978. #   define KEY_NAV_DOWN           KEY_DOWN
  1979. #   define KEY_NAV_LEFT           KEY_LEFT
  1980. #   define KEY_NAV_RIGHT          KEY_RIGHT
  1981. #   define KEY_QUIT               KEY_MODIFIER_CTRL|'q'
  1982. #   define KEY_VOL_UP             KEY_MODIFIER_CTRL|KEY_UP
  1983. #   define KEY_VOL_DOWN           KEY_MODIFIER_CTRL|KEY_DOWN
  1984. #   define KEY_VOL_MUTE           'm'
  1985. #   define KEY_SUBDELAY_UP        'h'
  1986. #   define KEY_SUBDELAY_DOWN      'g'
  1987. #   define KEY_AUDIODELAY_UP      'k'
  1988. #   define KEY_AUDIODELAY_DOWN    'j'
  1989. #   define KEY_RANDOM             'r'
  1990. #   define KEY_LOOP               'l'
  1991. #   define KEY_AUDIO_TRACK        'b'
  1992. #   define KEY_SUBTITLE_TRACK     'v'
  1993. #   define KEY_ASPECT_RATIO       'a'
  1994. #   define KEY_CROP               'c'
  1995. #   define KEY_TOGGLE_AUTOSCALE   'o'
  1996. #   define KEY_SCALE_UP           KEY_MODIFIER_ALT|'o'
  1997. #   define KEY_SCALE_DOWN         KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|'o'
  1998. #   define KEY_DEINTERLACE        'd'
  1999. #   define KEY_INTF_SHOW          'i'
  2000. #   define KEY_INTF_HIDE          KEY_MODIFIER_SHIFT|'i'
  2001. #   define KEY_DISC_MENU          KEY_MODIFIER_SHIFT|'m'
  2002. #   define KEY_TITLE_PREV         KEY_MODIFIER_SHIFT|'o'
  2003. #   define KEY_TITLE_NEXT         KEY_MODIFIER_SHIFT|'b'
  2004. #   define KEY_CHAPTER_PREV       KEY_MODIFIER_SHIFT|'p'
  2005. #   define KEY_CHAPTER_NEXT       KEY_MODIFIER_SHIFT|'n'
  2006. #   define KEY_SNAPSHOT           KEY_MODIFIER_SHIFT|'s'
  2007. #   define KEY_ZOOM               'z'
  2008. #   define KEY_UNZOOM             KEY_MODIFIER_SHIFT|'z'
  2009. #   define KEY_AUDIODEVICE_CYCLE  KEY_MODIFIER_SHIFT|'a'
  2010. #   define KEY_HISTORY_BACK       KEY_MODIFIER_SHIFT|'g'
  2011. #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_SHIFT|'h'
  2012. #   define KEY_RECORD             KEY_MODIFIER_SHIFT|'r'
  2013. #   define KEY_DUMP               KEY_MODIFIER_SHIFT|'d'
  2014. #   define KEY_WALLPAPER          'w'
  2015. /* Cropping */
  2016. #   define KEY_CROP_TOP           KEY_MODIFIER_ALT|'r'
  2017. #   define KEY_UNCROP_TOP         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'r'
  2018. #   define KEY_CROP_LEFT          KEY_MODIFIER_ALT|'d'
  2019. #   define KEY_UNCROP_LEFT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'d'
  2020. #   define KEY_CROP_BOTTOM        KEY_MODIFIER_ALT|'c'
  2021. #   define KEY_UNCROP_BOTTOM      KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'c'
  2022. #   define KEY_CROP_RIGHT         KEY_MODIFIER_ALT|'f'
  2023. #   define KEY_UNCROP_RIGHT       KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'f'
  2024. /* Zooming */
  2025. #   define KEY_ZOOM_QUARTER       KEY_MODIFIER_CTRL|'1'
  2026. #   define KEY_ZOOM_HALF          KEY_MODIFIER_CTRL|'2'
  2027. #   define KEY_ZOOM_ORIGINAL      KEY_MODIFIER_CTRL|'3'
  2028. #   define KEY_ZOOM_DOUBLE        KEY_MODIFIER_CTRL|'4'
  2029. /* Bookmarks */
  2030. #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_CTRL|KEY_F1
  2031. #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_CTRL|KEY_F2
  2032. #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_CTRL|KEY_F3
  2033. #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_CTRL|KEY_F4
  2034. #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_CTRL|KEY_F5
  2035. #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_CTRL|KEY_F6
  2036. #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_CTRL|KEY_F7
  2037. #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_CTRL|KEY_F8
  2038. #   define KEY_SET_BOOKMARK9      KEY_MODIFIER_CTRL|KEY_F9
  2039. #   define KEY_SET_BOOKMARK10     KEY_MODIFIER_CTRL|KEY_F10
  2040. #   define KEY_PLAY_BOOKMARK1     KEY_F1
  2041. #   define KEY_PLAY_BOOKMARK2     KEY_F2
  2042. #   define KEY_PLAY_BOOKMARK3     KEY_F3
  2043. #   define KEY_PLAY_BOOKMARK4     KEY_F4
  2044. #   define KEY_PLAY_BOOKMARK5     KEY_F5
  2045. #   define KEY_PLAY_BOOKMARK6     KEY_F6
  2046. #   define KEY_PLAY_BOOKMARK7     KEY_F7
  2047. #   define KEY_PLAY_BOOKMARK8     KEY_F8
  2048. #   define KEY_PLAY_BOOKMARK9     KEY_F9
  2049. #   define KEY_PLAY_BOOKMARK10    KEY_F10
  2050. /* OSD menu */
  2051. #   define KEY_MENU_ON            KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'m'
  2052. #   define KEY_MENU_OFF           KEY_MODIFIER_ALT|KEY_MODIFIER_CTRL|'m'
  2053. #   define KEY_MENU_RIGHT         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_RIGHT
  2054. #   define KEY_MENU_LEFT          KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_LEFT
  2055. #   define KEY_MENU_UP            KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_UP
  2056. #   define KEY_MENU_DOWN          KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_DOWN
  2057. #   define KEY_MENU_SELECT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|KEY_ENTER
  2058. #endif
  2059.     add_key( "key-toggle-fullscreen", KEY_TOGGLE_FULLSCREEN, NULL, TOGGLE_FULLSCREEN_KEY_TEXT,
  2060.              TOGGLE_FULLSCREEN_KEY_LONGTEXT, false )
  2061.        add_deprecated_alias( "key-fullscreen" ) /*deprecated since 0.9.0 */
  2062.     add_key( "key-leave-fullscreen", KEY_LEAVE_FULLSCREEN, NULL, LEAVE_FULLSCREEN_KEY_TEXT,
  2063.              LEAVE_FULLSCREEN_KEY_LONGTEXT, false )
  2064.     add_key( "key-play-pause", KEY_PLAY_PAUSE, NULL, PLAY_PAUSE_KEY_TEXT,
  2065.              PLAY_PAUSE_KEY_LONGTEXT, false )
  2066.     add_key( "key-pause", KEY_PAUSE, NULL, PAUSE_KEY_TEXT,
  2067.              PAUSE_KEY_LONGTEXT, true )
  2068.     add_key( "key-play", KEY_PLAY, NULL, PLAY_KEY_TEXT,
  2069.              PLAY_KEY_LONGTEXT, true )
  2070.     add_key( "key-faster", KEY_FASTER, NULL, FASTER_KEY_TEXT,
  2071.              FASTER_KEY_LONGTEXT, false )
  2072.     add_key( "key-slower", KEY_SLOWER, NULL, SLOWER_KEY_TEXT,
  2073.              SLOWER_KEY_LONGTEXT, false )
  2074.     add_key( "key-rate-normal", KEY_RATE_NORMAL, NULL, RATE_NORMAL_KEY_TEXT,
  2075.              RATE_NORMAL_KEY_LONGTEXT, false )
  2076.     add_key( "key-rate-faster-fine", KEY_RATE_FASTER_FINE, NULL, RATE_FASTER_FINE_KEY_TEXT,
  2077.              RATE_FASTER_FINE_KEY_LONGTEXT, false )
  2078.     add_key( "key-rate-slower-fine", KEY_RATE_SLOWER_FINE, NULL, RATE_SLOWER_FINE_KEY_TEXT,
  2079.              RATE_SLOWER_FINE_KEY_LONGTEXT, false )
  2080.     add_key( "key-next", KEY_NEXT, NULL, NEXT_KEY_TEXT,
  2081.              NEXT_KEY_LONGTEXT, false )
  2082.     add_key( "key-prev", KEY_PREV, NULL, PREV_KEY_TEXT,
  2083.              PREV_KEY_LONGTEXT, false )
  2084.     add_key( "key-stop", KEY_STOP, NULL, STOP_KEY_TEXT,
  2085.              STOP_KEY_LONGTEXT, false )
  2086.     add_key( "key-position", KEY_POSITION, NULL, POSITION_KEY_TEXT,
  2087.              POSITION_KEY_LONGTEXT, true )
  2088.     add_key( "key-jump-extrashort", KEY_JUMP_MEXTRASHORT, NULL,
  2089.              JBEXTRASHORT_KEY_TEXT, JBEXTRASHORT_KEY_LONGTEXT, false )
  2090.     add_key( "key-jump+extrashort", KEY_JUMP_PEXTRASHORT, NULL,
  2091.              JFEXTRASHORT_KEY_TEXT, JFEXTRASHORT_KEY_LONGTEXT, false )
  2092.     add_key( "key-jump-short", KEY_JUMP_MSHORT, NULL, JBSHORT_KEY_TEXT,
  2093.              JBSHORT_KEY_LONGTEXT, false )
  2094.     add_key( "key-jump+short", KEY_JUMP_PSHORT, NULL, JFSHORT_KEY_TEXT,
  2095.              JFSHORT_KEY_LONGTEXT, false )
  2096.     add_key( "key-jump-medium", KEY_JUMP_MMEDIUM, NULL, JBMEDIUM_KEY_TEXT,
  2097.              JBMEDIUM_KEY_LONGTEXT, false )
  2098.     add_key( "key-jump+medium", KEY_JUMP_PMEDIUM, NULL, JFMEDIUM_KEY_TEXT,
  2099.              JFMEDIUM_KEY_LONGTEXT, false )
  2100.     add_key( "key-jump-long", KEY_JUMP_MLONG, NULL, JBLONG_KEY_TEXT,
  2101.              JBLONG_KEY_LONGTEXT, false )
  2102.     add_key( "key-jump+long", KEY_JUMP_PLONG, NULL, JFLONG_KEY_TEXT,
  2103.              JFLONG_KEY_LONGTEXT, false )
  2104.     add_key( "key-frame-next", KEY_FRAME_NEXT, NULL, FRAME_NEXT_KEY_TEXT,
  2105.              FRAME_NEXT_KEY_LONGTEXT, false )
  2106.     add_key( "key-nav-activate", KEY_NAV_ACTIVATE, NULL, NAV_ACTIVATE_KEY_TEXT,
  2107.              NAV_ACTIVATE_KEY_LONGTEXT, true )
  2108.     add_key( "key-nav-up", KEY_NAV_UP, NULL, NAV_UP_KEY_TEXT,
  2109.              NAV_UP_KEY_LONGTEXT, true )
  2110.     add_key( "key-nav-down", KEY_NAV_DOWN, NULL, NAV_DOWN_KEY_TEXT,
  2111.              NAV_DOWN_KEY_LONGTEXT, true )
  2112.     add_key( "key-nav-left", KEY_NAV_LEFT, NULL, NAV_LEFT_KEY_TEXT,
  2113.              NAV_LEFT_KEY_LONGTEXT, true )
  2114.     add_key( "key-nav-right", KEY_NAV_RIGHT, NULL, NAV_RIGHT_KEY_TEXT,
  2115.              NAV_RIGHT_KEY_LONGTEXT, true )
  2116.     add_key( "key-disc-menu", KEY_DISC_MENU, NULL, DISC_MENU_TEXT,
  2117.              DISC_MENU_LONGTEXT, true )
  2118.     add_key( "key-title-prev", KEY_TITLE_PREV, NULL, TITLE_PREV_TEXT,
  2119.              TITLE_PREV_LONGTEXT, true )
  2120.     add_key( "key-title-next", KEY_TITLE_NEXT, NULL, TITLE_NEXT_TEXT,
  2121.              TITLE_NEXT_LONGTEXT, true )
  2122.     add_key( "key-chapter-prev", KEY_CHAPTER_PREV, NULL, CHAPTER_PREV_TEXT,
  2123.              CHAPTER_PREV_LONGTEXT, true )
  2124.     add_key( "key-chapter-next", KEY_CHAPTER_NEXT, NULL, CHAPTER_NEXT_TEXT,
  2125.              CHAPTER_NEXT_LONGTEXT, true )
  2126.     add_key( "key-quit", KEY_QUIT, NULL, QUIT_KEY_TEXT,
  2127.              QUIT_KEY_LONGTEXT, false )
  2128.     add_key( "key-vol-up", KEY_VOL_UP, NULL, VOL_UP_KEY_TEXT,
  2129.              VOL_UP_KEY_LONGTEXT, false )
  2130.     add_key( "key-vol-down", KEY_VOL_DOWN, NULL, VOL_DOWN_KEY_TEXT,
  2131.              VOL_DOWN_KEY_LONGTEXT, false )
  2132.     add_key( "key-vol-mute", KEY_VOL_MUTE, NULL, VOL_MUTE_KEY_TEXT,
  2133.              VOL_MUTE_KEY_LONGTEXT, false )
  2134.     add_key( "key-subdelay-up", KEY_SUBDELAY_UP, NULL,
  2135.              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, true )
  2136.     add_key( "key-subdelay-down", KEY_SUBDELAY_DOWN, NULL,
  2137.              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, true )
  2138.     add_key( "key-audiodelay-up", KEY_AUDIODELAY_UP, NULL,
  2139.              AUDIODELAY_UP_KEY_TEXT, AUDIODELAY_UP_KEY_LONGTEXT, true )
  2140.     add_key( "key-audiodelay-down", KEY_AUDIODELAY_DOWN, NULL,
  2141.              AUDIODELAY_DOWN_KEY_TEXT, AUDIODELAY_DOWN_KEY_LONGTEXT, true )
  2142.     add_key( "key-audio-track", KEY_AUDIO_TRACK, NULL, AUDIO_TRACK_KEY_TEXT,
  2143.              AUDIO_TRACK_KEY_LONGTEXT, false )
  2144.     add_key( "key-audiodevice-cycle", KEY_AUDIODEVICE_CYCLE, NULL, AUDI_DEVICE_CYCLE_KEY_TEXT,
  2145.              AUDI_DEVICE_CYCLE_KEY_LONGTEXT, false )
  2146.     add_key( "key-subtitle-track", KEY_SUBTITLE_TRACK, NULL,
  2147.              SUBTITLE_TRACK_KEY_TEXT, SUBTITLE_TRACK_KEY_LONGTEXT, false )
  2148.     add_key( "key-aspect-ratio", KEY_ASPECT_RATIO, NULL,
  2149.              ASPECT_RATIO_KEY_TEXT, ASPECT_RATIO_KEY_LONGTEXT, false )
  2150.     add_key( "key-crop", KEY_CROP, NULL,
  2151.              CROP_KEY_TEXT, CROP_KEY_LONGTEXT, false )
  2152.     add_key( "key-toggle-autoscale", KEY_TOGGLE_AUTOSCALE, NULL,
  2153.              TOGGLE_AUTOSCALE_KEY_TEXT, TOGGLE_AUTOSCALE_KEY_LONGTEXT, false )
  2154.     add_key( "key-incr-scalefactor", KEY_SCALE_UP, NULL,
  2155.              SCALE_UP_KEY_TEXT, SCALE_UP_KEY_LONGTEXT, false )
  2156.     add_key( "key-decr-scalefactor", KEY_SCALE_DOWN, NULL,
  2157.              SCALE_DOWN_KEY_TEXT, SCALE_DOWN_KEY_LONGTEXT, false )
  2158.     add_key( "key-deinterlace", KEY_DEINTERLACE, NULL,
  2159.              DEINTERLACE_KEY_TEXT, DEINTERLACE_KEY_LONGTEXT, false )
  2160.     add_key( "key-intf-show", KEY_INTF_SHOW, NULL,
  2161.              INTF_SHOW_KEY_TEXT, INTF_SHOW_KEY_LONGTEXT, true )
  2162.     add_key( "key-intf-hide", KEY_INTF_HIDE, NULL,
  2163.              INTF_HIDE_KEY_TEXT, INTF_HIDE_KEY_LONGTEXT, true )
  2164.     add_key( "key-snapshot", KEY_SNAPSHOT, NULL,
  2165.         SNAP_KEY_TEXT, SNAP_KEY_LONGTEXT, true )
  2166.     add_key( "key-history-back", KEY_HISTORY_BACK, NULL, HISTORY_BACK_TEXT,
  2167.              HISTORY_BACK_LONGTEXT, true )
  2168.     add_key( "key-history-forward", KEY_HISTORY_FORWARD, NULL,
  2169.              HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, true )
  2170.     add_key( "key-record", KEY_RECORD, NULL,
  2171.              RECORD_KEY_TEXT, RECORD_KEY_LONGTEXT, true )
  2172.     add_key( "key-dump", KEY_DUMP, NULL,
  2173.              DUMP_KEY_TEXT, DUMP_KEY_LONGTEXT, true )
  2174.     add_key( "key-zoom", KEY_ZOOM, NULL,
  2175.              ZOOM_KEY_TEXT, ZOOM_KEY_LONGTEXT, true )
  2176.     add_key( "key-unzoom", KEY_UNZOOM, NULL,
  2177.              UNZOOM_KEY_TEXT, UNZOOM_KEY_LONGTEXT, true )
  2178.     add_key( "key-wallpaper", KEY_WALLPAPER, NULL, WALLPAPER_KEY_TEXT,
  2179.              WALLPAPER_KEY_LONGTEXT, false )
  2180.     add_key( "key-menu-on", KEY_MENU_ON, NULL,
  2181.              MENU_ON_KEY_TEXT, MENU_ON_KEY_LONGTEXT, true )
  2182.     add_key( "key-menu-off", KEY_MENU_OFF, NULL,
  2183.              MENU_OFF_KEY_TEXT, MENU_OFF_KEY_LONGTEXT, true )
  2184.     add_key( "key-menu-right", KEY_MENU_RIGHT, NULL,
  2185.              MENU_RIGHT_KEY_TEXT, MENU_RIGHT_KEY_LONGTEXT, true )
  2186.     add_key( "key-menu-left", KEY_MENU_LEFT, NULL,
  2187.              MENU_LEFT_KEY_TEXT, MENU_LEFT_KEY_LONGTEXT, true )
  2188.     add_key( "key-menu-up", KEY_MENU_UP, NULL,
  2189.              MENU_UP_KEY_TEXT, MENU_UP_KEY_LONGTEXT, true )
  2190.     add_key( "key-menu-down", KEY_MENU_DOWN, NULL,
  2191.              MENU_DOWN_KEY_TEXT, MENU_DOWN_KEY_LONGTEXT, true )
  2192.     add_key( "key-menu-select", KEY_MENU_SELECT, NULL,
  2193.              MENU_SELECT_KEY_TEXT, MENU_SELECT_KEY_LONGTEXT, true )
  2194.     add_key( "key-crop-top", KEY_CROP_TOP, NULL,
  2195.              CROP_TOP_KEY_TEXT, CROP_TOP_KEY_LONGTEXT, true )
  2196.     add_key( "key-uncrop-top", KEY_UNCROP_TOP, NULL,
  2197.              UNCROP_TOP_KEY_TEXT, UNCROP_TOP_KEY_LONGTEXT, true )
  2198.     add_key( "key-crop-left", KEY_CROP_LEFT, NULL,
  2199.              CROP_LEFT_KEY_TEXT, CROP_LEFT_KEY_LONGTEXT, true )
  2200.     add_key( "key-uncrop-left", KEY_UNCROP_LEFT, NULL,
  2201.              UNCROP_LEFT_KEY_TEXT, UNCROP_LEFT_KEY_LONGTEXT, true )
  2202.     add_key( "key-crop-bottom", KEY_CROP_BOTTOM, NULL,
  2203.              CROP_BOTTOM_KEY_TEXT, CROP_BOTTOM_KEY_LONGTEXT, true )
  2204.     add_key( "key-uncrop-bottom", KEY_UNCROP_BOTTOM, NULL,
  2205.              UNCROP_BOTTOM_KEY_TEXT, UNCROP_BOTTOM_KEY_LONGTEXT, true )
  2206.     add_key( "key-crop-right", KEY_CROP_RIGHT, NULL,
  2207.              CROP_RIGHT_KEY_TEXT, CROP_RIGHT_KEY_LONGTEXT, true )
  2208.     add_key( "key-uncrop-right", KEY_UNCROP_RIGHT, NULL,
  2209.              UNCROP_RIGHT_KEY_TEXT, UNCROP_RIGHT_KEY_LONGTEXT, true )
  2210.     add_key( "key-random", KEY_RANDOM, NULL,
  2211.              RANDOM_KEY_TEXT, RANDOM_KEY_LONGTEXT, false )
  2212.     add_key( "key-loop", KEY_LOOP, NULL,
  2213.              LOOP_KEY_TEXT, LOOP_KEY_LONGTEXT, false )
  2214.     set_section ( N_("Zoom" ), NULL )
  2215.     add_key( "key-zoom-quarter",  KEY_ZOOM_QUARTER, NULL,
  2216.         ZOOM_QUARTER_KEY_TEXT,  NULL, false )
  2217.     add_key( "key-zoom-half",     KEY_ZOOM_HALF, NULL,
  2218.         ZOOM_HALF_KEY_TEXT,     NULL, false )
  2219.     add_key( "key-zoom-original", KEY_ZOOM_ORIGINAL, NULL,
  2220.         ZOOM_ORIGINAL_KEY_TEXT, NULL, false )
  2221.     add_key( "key-zoom-double",   KEY_ZOOM_DOUBLE, NULL,
  2222.         ZOOM_DOUBLE_KEY_TEXT,   NULL, false )
  2223.     set_section ( N_("Jump sizes" ), NULL )
  2224.     add_integer( "extrashort-jump-size", 3, NULL, JIEXTRASHORT_TEXT,
  2225.                                     JIEXTRASHORT_LONGTEXT, false )
  2226.     add_integer( "short-jump-size", 10, NULL, JISHORT_TEXT,
  2227.                                     JISHORT_LONGTEXT, false )
  2228.     add_integer( "medium-jump-size", 60, NULL, JIMEDIUM_TEXT,
  2229.                                     JIMEDIUM_LONGTEXT, false )
  2230.     add_integer( "long-jump-size", 300, NULL, JILONG_TEXT,
  2231.                                     JILONG_LONGTEXT, false )
  2232.     /* HACK so these don't get displayed */
  2233.     set_category( -1 )
  2234.     set_subcategory( -1 )
  2235.     add_key( "key-set-bookmark1", KEY_SET_BOOKMARK1, NULL,
  2236.              SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2237.     add_key( "key-set-bookmark2", KEY_SET_BOOKMARK2, NULL,
  2238.              SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2239.     add_key( "key-set-bookmark3", KEY_SET_BOOKMARK3, NULL,
  2240.              SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2241.     add_key( "key-set-bookmark4", KEY_SET_BOOKMARK4, NULL,
  2242.              SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2243.     add_key( "key-set-bookmark5", KEY_SET_BOOKMARK5, NULL,
  2244.              SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2245.     add_key( "key-set-bookmark6", KEY_SET_BOOKMARK6, NULL,
  2246.              SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2247.     add_key( "key-set-bookmark7", KEY_SET_BOOKMARK7, NULL,
  2248.              SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2249.     add_key( "key-set-bookmark8", KEY_SET_BOOKMARK8, NULL,
  2250.              SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2251.     add_key( "key-set-bookmark9", KEY_SET_BOOKMARK9, NULL,
  2252.              SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2253.     add_key( "key-set-bookmark10", KEY_SET_BOOKMARK10, NULL,
  2254.              SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, true )
  2255.     add_key( "key-play-bookmark1", KEY_PLAY_BOOKMARK1, NULL,
  2256.              PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2257.     add_key( "key-play-bookmark2", KEY_PLAY_BOOKMARK2, NULL,
  2258.              PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2259.     add_key( "key-play-bookmark3", KEY_PLAY_BOOKMARK3, NULL,
  2260.              PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2261.     add_key( "key-play-bookmark4", KEY_PLAY_BOOKMARK4, NULL,
  2262.              PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2263.     add_key( "key-play-bookmark5", KEY_PLAY_BOOKMARK5, NULL,
  2264.              PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2265.     add_key( "key-play-bookmark6", KEY_PLAY_BOOKMARK6, NULL,
  2266.              PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2267.     add_key( "key-play-bookmark7", KEY_PLAY_BOOKMARK7, NULL,
  2268.              PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2269.     add_key( "key-play-bookmark8", KEY_PLAY_BOOKMARK8, NULL,
  2270.              PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2271.     add_key( "key-play-bookmark9", KEY_PLAY_BOOKMARK9, NULL,
  2272.              PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2273.     add_key( "key-play-bookmark10", KEY_PLAY_BOOKMARK10, NULL,
  2274.              PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, true )
  2275.     add_string( "bookmark1", NULL, NULL,
  2276.              BOOKMARK1_TEXT, BOOKMARK_LONGTEXT, false )
  2277.     add_string( "bookmark2", NULL, NULL,
  2278.              BOOKMARK2_TEXT, BOOKMARK_LONGTEXT, false )
  2279.     add_string( "bookmark3", NULL, NULL,
  2280.              BOOKMARK3_TEXT, BOOKMARK_LONGTEXT, false )
  2281.     add_string( "bookmark4", NULL, NULL,
  2282.              BOOKMARK4_TEXT, BOOKMARK_LONGTEXT, false )
  2283.     add_string( "bookmark5", NULL, NULL,
  2284.              BOOKMARK5_TEXT, BOOKMARK_LONGTEXT, false )
  2285.     add_string( "bookmark6", NULL, NULL,
  2286.              BOOKMARK6_TEXT, BOOKMARK_LONGTEXT, false )
  2287.     add_string( "bookmark7", NULL, NULL,
  2288.              BOOKMARK7_TEXT, BOOKMARK_LONGTEXT, false )
  2289.     add_string( "bookmark8", NULL, NULL,
  2290.              BOOKMARK8_TEXT, BOOKMARK_LONGTEXT, false )
  2291.     add_string( "bookmark9", NULL, NULL,
  2292.              BOOKMARK9_TEXT, BOOKMARK_LONGTEXT, false )
  2293.     add_string( "bookmark10", NULL, NULL,
  2294.               BOOKMARK10_TEXT, BOOKMARK_LONGTEXT, false )
  2295. #define HELP_TEXT 
  2296.     N_("print help for VLC (can be combined with --advanced and " 
  2297.        "--help-verbose)")
  2298. #define FULL_HELP_TEXT 
  2299.     N_("Exhaustive help for VLC and its modules")
  2300. #define LONGHELP_TEXT 
  2301.     N_("print help for VLC and all its modules (can be combined with " 
  2302.        "--advanced and --help-verbose)")
  2303. #define HELP_VERBOSE_TEXT 
  2304.     N_("ask for extra verbosity when displaying help")
  2305. #define LIST_TEXT 
  2306.     N_("print a list of available modules")
  2307. #define LIST_VERBOSE_TEXT 
  2308.     N_("print a list of available modules with extra detail")
  2309. #define MODULE_TEXT 
  2310.     N_("print help on a specific module (can be combined with --advanced " 
  2311.        "and --help-verbose). Prefix the module name with = for strict " 
  2312.        "matches.")
  2313. #define IGNORE_CONFIG_TEXT 
  2314.     N_("no configuration option will be loaded nor saved to config file")
  2315. #define SAVE_CONFIG_TEXT 
  2316.     N_("save the current command line options in the config")
  2317. #define RESET_CONFIG_TEXT 
  2318.     N_("reset the current config to the default values")
  2319. #define CONFIG_TEXT 
  2320.     N_("use alternate config file")
  2321. #define RESET_PLUGINS_CACHE_TEXT 
  2322.     N_("resets the current plugins cache")
  2323. #define VERSION_TEXT 
  2324.     N_("print version information")
  2325.     add_bool( "help", false, NULL, HELP_TEXT, "", false )
  2326.         change_short( 'h' )
  2327.         change_internal ()
  2328.         change_unsaveable ()
  2329.     add_bool( "full-help", false, NULL, FULL_HELP_TEXT, "", false )
  2330.         change_short( 'H' )
  2331.         change_internal ()
  2332.         change_unsaveable ()
  2333.     add_bool( "longhelp", false, NULL, LONGHELP_TEXT, "", false )
  2334.         change_internal ()
  2335.         change_unsaveable ()
  2336.     add_bool( "help-verbose", false, NULL, HELP_VERBOSE_TEXT, "",
  2337.               false )
  2338.         change_internal ()
  2339.         change_unsaveable ()
  2340.     add_bool( "list", false, NULL, LIST_TEXT, "", false )
  2341.         change_short( 'l' )
  2342.         change_internal ()
  2343.         change_unsaveable ()
  2344.     add_bool( "list-verbose", false, NULL, LIST_VERBOSE_TEXT, "",
  2345.               false )
  2346.         change_internal ()
  2347.         change_unsaveable ()
  2348.     add_string( "module", NULL, NULL, MODULE_TEXT, "", false )
  2349.         change_short( 'p' )
  2350.         change_internal ()
  2351.         change_unsaveable ()
  2352.     add_bool( "ignore-config", false, NULL, IGNORE_CONFIG_TEXT, "", false )
  2353.         change_internal ()
  2354.         change_unsaveable ()
  2355.     add_bool( "save-config", false, NULL, SAVE_CONFIG_TEXT, "",
  2356.               false )
  2357.         change_internal ()
  2358.         change_unsaveable ()
  2359.     add_bool( "reset-config", false, NULL, RESET_CONFIG_TEXT, "", false )
  2360.         change_internal ()
  2361.         change_unsaveable ()
  2362.     add_bool( "reset-plugins-cache", false, NULL,
  2363.               RESET_PLUGINS_CACHE_TEXT, "", false )
  2364.         change_internal ()
  2365.         change_unsaveable ()
  2366.     add_bool( "version", false, NULL, VERSION_TEXT, "", false )
  2367.         change_internal ()
  2368.         change_unsaveable ()
  2369.     add_string( "config", NULL, NULL, CONFIG_TEXT, "", false )
  2370.         change_internal ()
  2371.         change_unsaveable ()
  2372.     add_bool( "version", false, NULL, VERSION_TEXT, "", false )
  2373.         change_internal ()
  2374.         change_unsaveable ()
  2375.    /* Usage (mainly useful for cmd line stuff) */
  2376.     /* add_usage_hint( PLAYLIST_USAGE ) */
  2377.     set_description( N_("main program") )
  2378.     set_capability( "main", 100 )
  2379. vlc_module_end ()
  2380. /*****************************************************************************
  2381.  * End configuration.
  2382.  *****************************************************************************/
  2383. /*****************************************************************************
  2384.  * Initializer for the libvlc instance structure
  2385.  * storing the action / key associations
  2386.  *****************************************************************************/
  2387. const struct action libvlc_actions[] =
  2388. {
  2389.     { "key-quit", ACTIONID_QUIT, },
  2390.     { "key-play-pause", ACTIONID_PLAY_PAUSE, },
  2391.     { "key-play", ACTIONID_PLAY, },
  2392.     { "key-pause", ACTIONID_PAUSE, },
  2393.     { "key-stop", ACTIONID_STOP, },
  2394.     { "key-position", ACTIONID_POSITION, },
  2395.     { "key-jump-extrashort", ACTIONID_JUMP_BACKWARD_EXTRASHORT, },
  2396.     { "key-jump+extrashort", ACTIONID_JUMP_FORWARD_EXTRASHORT, },
  2397.     { "key-jump-short", ACTIONID_JUMP_BACKWARD_SHORT, },
  2398.     { "key-jump+short", ACTIONID_JUMP_FORWARD_SHORT, },
  2399.     { "key-jump-medium", ACTIONID_JUMP_BACKWARD_MEDIUM, },
  2400.     { "key-jump+medium", ACTIONID_JUMP_FORWARD_MEDIUM, },
  2401.     { "key-jump-long", ACTIONID_JUMP_BACKWARD_LONG, },
  2402.     { "key-jump+long", ACTIONID_JUMP_FORWARD_LONG, },
  2403.     { "key-frame-next", ACTIONID_FRAME_NEXT, },
  2404.     { "key-prev", ACTIONID_PREV, },
  2405.     { "key-next", ACTIONID_NEXT, },
  2406.     { "key-faster", ACTIONID_FASTER, },
  2407.     { "key-slower", ACTIONID_SLOWER, },
  2408.     { "key-rate-normal", ACTIONID_RATE_NORMAL, },
  2409.     { "key-rate-faster-fine", ACTIONID_RATE_FASTER_FINE, },
  2410.     { "key-rate-slower-fine", ACTIONID_RATE_SLOWER_FINE, },
  2411.     { "key-toggle-fullscreen", ACTIONID_TOGGLE_FULLSCREEN, },
  2412.     { "key-leave-fullscreen", ACTIONID_LEAVE_FULLSCREEN, },
  2413.     { "key-vol-up", ACTIONID_VOL_UP, },
  2414.     { "key-vol-down", ACTIONID_VOL_DOWN, },
  2415.     { "key-vol-mute", ACTIONID_VOL_MUTE, },
  2416.     { "key-subdelay-down", ACTIONID_SUBDELAY_DOWN, },
  2417.     { "key-subdelay-up", ACTIONID_SUBDELAY_UP, },
  2418.     { "key-audiodelay-down", ACTIONID_AUDIODELAY_DOWN, },
  2419.     { "key-audiodelay-up", ACTIONID_AUDIODELAY_UP, },
  2420.     { "key-audio-track", ACTIONID_AUDIO_TRACK, },
  2421.     { "key-subtitle-track", ACTIONID_SUBTITLE_TRACK, },
  2422.     { "key-aspect-ratio", ACTIONID_ASPECT_RATIO, },
  2423.     { "key-crop", ACTIONID_CROP, },
  2424.     { "key-deinterlace", ACTIONID_DEINTERLACE, },
  2425.     { "key-intf-show", ACTIONID_INTF_SHOW, },
  2426.     { "key-intf-hide", ACTIONID_INTF_HIDE, },
  2427.     { "key-snapshot", ACTIONID_SNAPSHOT, },
  2428.     { "key-zoom", ACTIONID_ZOOM, },
  2429.     { "key-unzoom", ACTIONID_UNZOOM, },
  2430.     { "key-crop-top", ACTIONID_CROP_TOP, },
  2431.     { "key-uncrop-top", ACTIONID_UNCROP_TOP, },
  2432.     { "key-crop-left", ACTIONID_CROP_LEFT, },
  2433.     { "key-uncrop-left", ACTIONID_UNCROP_LEFT, },
  2434.     { "key-crop-bottom", ACTIONID_CROP_BOTTOM, },
  2435.     { "key-uncrop-bottom", ACTIONID_UNCROP_BOTTOM, },
  2436.     { "key-crop-right", ACTIONID_CROP_RIGHT, },
  2437.     { "key-uncrop-right", ACTIONID_UNCROP_RIGHT, },
  2438.     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, },
  2439.     { "key-nav-up", ACTIONID_NAV_UP, },
  2440.     { "key-nav-down", ACTIONID_NAV_DOWN, },
  2441.     { "key-nav-left", ACTIONID_NAV_LEFT, },
  2442.     { "key-nav-right", ACTIONID_NAV_RIGHT, },
  2443.     { "key-disc-menu", ACTIONID_DISC_MENU, },
  2444.     { "key-title-prev", ACTIONID_TITLE_PREV, },
  2445.     { "key-title-next", ACTIONID_TITLE_NEXT, },
  2446.     { "key-chapter-prev", ACTIONID_CHAPTER_PREV, },
  2447.     { "key-chapter-next", ACTIONID_CHAPTER_NEXT, },
  2448.     { "key-zoom-quarter", ACTIONID_ZOOM_QUARTER, },
  2449.     { "key-zoom-half", ACTIONID_ZOOM_HALF, },
  2450.     { "key-zoom-original", ACTIONID_ZOOM_ORIGINAL, },
  2451.     { "key-zoom-double", ACTIONID_ZOOM_DOUBLE, },
  2452.     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, },
  2453.     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, },
  2454.     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, },
  2455.     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, },
  2456.     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, },
  2457.     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, },
  2458.     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, },
  2459.     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, },
  2460.     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, },
  2461.     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, },
  2462.     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, },
  2463.     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, },
  2464.     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, },
  2465.     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, },
  2466.     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, },
  2467.     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, },
  2468.     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, },
  2469.     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, },
  2470.     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, },
  2471.     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, },
  2472.     { "key-history-back", ACTIONID_HISTORY_BACK, },
  2473.     { "key-history-forward", ACTIONID_HISTORY_FORWARD, },
  2474.     { "key-record", ACTIONID_RECORD, },
  2475.     { "key-dump", ACTIONID_DUMP, },
  2476.     { "key-random", ACTIONID_RANDOM, },
  2477.     { "key-loop", ACTIONID_LOOP, },
  2478.     { "key-wallpaper", ACTIONID_WALLPAPER, },
  2479.     { "key-menu-on", ACTIONID_MENU_ON, },
  2480.     { "key-menu-off", ACTIONID_MENU_OFF, },
  2481.     { "key-menu-right", ACTIONID_MENU_RIGHT, },
  2482.     { "key-menu-left", ACTIONID_MENU_LEFT, },
  2483.     { "key-menu-up", ACTIONID_MENU_UP, },
  2484.     { "key-menu-down", ACTIONID_MENU_DOWN, },
  2485.     { "key-menu-select", ACTIONID_MENU_SELECT, },
  2486.     { "key-audiodevice-cycle", ACTIONID_AUDIODEVICE_CYCLE, },
  2487.     { "key-toggle-autoscale", ACTIONID_TOGGLE_AUTOSCALE, },
  2488.     { "key-incr-scalefactor", ACTIONID_SCALE_UP, },
  2489.     { "key-decr-scalefactor", ACTIONID_SCALE_DOWN, },
  2490. };
  2491. const size_t libvlc_actions_count =
  2492.     sizeof (libvlc_actions) / sizeof (libvlc_actions[0]);