Changeset ffc45b9454e212908669d2370f5e5bf1da8d8c9e
- Timestamp:
- 11/10/05 19:16:13 (3 years ago)
- git-parent:
- Files:
-
- include/vlc_config_cat.h (modified) (1 diff)
- modules/access/dshow/dshow.cpp (modified) (1 diff)
- modules/access/http.c (modified) (1 diff)
- modules/access/mms/mms.c (modified) (1 diff)
- modules/access/rtsp/access.c (modified) (1 diff)
- modules/audio_filter/channel_mixer/headphone.c (modified) (1 diff)
- modules/codec/twolame.c (modified) (3 diffs)
- modules/codec/x264.c (modified) (1 diff)
- modules/demux/avi/avi.c (modified) (2 diffs)
- modules/demux/livedotcom.cpp (modified) (1 diff)
- modules/demux/playlist/playlist.c (modified) (1 diff)
- modules/video_filter/blend.c (modified) (1 diff)
- modules/video_filter/clone.c (modified) (1 diff)
- modules/video_filter/deinterlace.c (modified) (2 diffs)
- modules/video_filter/logo.c (modified) (1 diff)
- modules/video_filter/marq.c (modified) (2 diffs)
- modules/video_filter/osdmenu.c (modified) (1 diff)
- modules/video_filter/rss.c (modified) (2 diffs)
- modules/video_filter/rv32.c (modified) (1 diff)
- modules/video_filter/time.c (modified) (1 diff)
- modules/video_filter/wall.c (modified) (1 diff)
- src/libvlc.h (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
include/vlc_config_cat.h
rfe087a3 rffc45b9 98 98 #define ACCESS_TITLE N_( "Access modules" ) 99 99 #define ACCESS_HELP N_( \ 100 "Settings related to the various access methods used by VLC. \n" \100 "Settings related to the various access methods used by VLC. " \ 101 101 "Common settings you may want to alter are HTTP proxy or " \ 102 102 "caching settings." ) 103 103 104 #define ACCESS_FILTER_TITLE N_( "Access filter modules" )104 #define ACCESS_FILTER_TITLE N_( "Access filters" ) 105 105 #define ACCESS_FILTER_HELP N_( \ 106 "Settings related to the various access filter used by VLC.\n" ) 106 "Access filters are special modules that allow advanced operations on " \ 107 "the input side of VLC. You should not touch anything here unless you " \ 108 "know what you are doing.\n" ) 107 109 108 110 #define DEMUX_TITLE N_("Demuxers") modules/access/dshow/dshow.cpp
r9f7cb30 rffc45b9 159 159 160 160 add_bool( "dshow-config", VLC_FALSE, NULL, CONFIG_TEXT, CONFIG_LONGTEXT, 161 VLC_ FALSE );161 VLC_TRUE ); 162 162 163 163 add_bool( "dshow-tuner", VLC_FALSE, NULL, TUNER_TEXT, TUNER_LONGTEXT, 164 VLC_ FALSE );164 VLC_TRUE ); 165 165 166 166 add_integer( "dshow-tuner-channel", 0, NULL, CHANNEL_TEXT, modules/access/http.c
r9e45d8e rffc45b9 78 78 CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE ); 79 79 add_string( "http-user-agent", COPYRIGHT_MESSAGE , NULL, AGENT_TEXT, 80 AGENT_LONGTEXT, VLC_ FALSE );80 AGENT_LONGTEXT, VLC_TRUE ); 81 81 add_bool( "http-reconnect", 0, NULL, RECONNECT_TEXT, 82 82 RECONNECT_LONGTEXT, VLC_TRUE ); modules/access/mms/mms.c
r19f7be5 rffc45b9 51 51 #define ALL_TEXT N_("Force selection of all streams") 52 52 53 #define BITRATE_TEXT N_( "Select maximum bitrate stream")53 #define BITRATE_TEXT N_( "Maximum bitrate" ) 54 54 #define BITRATE_LONGTEXT N_( \ 55 "Always select the stream with the maximum bitrate." ) 55 "If this is set, the stream with the maximum bitrate under that limit \ 56 will be selected" ) 56 57 57 58 vlc_module_begin(); modules/access/rtsp/access.c
r880f95f rffc45b9 44 44 45 45 vlc_module_begin(); 46 set_description( _(" Standard filesystem file input") );46 set_description( _("Real RTSP") ); 47 47 set_shortname( _("Real RTSP") ); 48 48 set_category( CAT_INPUT ); modules/audio_filter/channel_mixer/headphone.c
r435dc16 rffc45b9 77 77 78 78 add_integer( "headphone-dim", 10, NULL, HEADPHONE_DIM_TEXT, 79 HEADPHONE_DIM_LONGTEXT, VLC_ FALSE );79 HEADPHONE_DIM_LONGTEXT, VLC_TRUE ); 80 80 add_bool( "headphone-compensate", 0, NULL, HEADPHONE_COMPENSATE_TEXT, 81 81 HEADPHONE_COMPENSATE_LONGTEXT, VLC_TRUE ); modules/codec/twolame.c
r62e5a2b rffc45b9 54 54 "This will produce a VBR stream." ) 55 55 #define ENC_MODE_TEXT N_("Stereo mode") 56 #define ENC_MODE_LONGTEXT N_( \ 57 "[0=stereo, 1=dual-mono, 2=joint-stereo]" ) 56 #define ENC_MODE_LONGTEXT N_( "Select how stereo streams will be handled" ) 58 57 #define ENC_VBR_TEXT N_("VBR mode") 59 58 #define ENC_VBR_LONGTEXT N_( \ … … 62 61 #define ENC_PSY_LONGTEXT N_( \ 63 62 "Integer from -1 (no model) to 4." ) 63 64 static int pi_stereo_values[] = { 0, 1, 2 }; 65 static char *ppsz_stereo_descriptions[] = 66 { N_("Stereo"), N_("Dual mono"), N_("Joint stereo") }; 67 64 68 65 69 vlc_module_begin(); … … 75 79 add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT, 76 80 ENC_MODE_LONGTEXT, VLC_FALSE ); 81 change_integer_list( pi_stereo_values, ppsz_stereo_descriptions, 0 ); 77 82 add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT, 78 83 ENC_VBR_LONGTEXT, VLC_FALSE ); modules/codec/x264.c
r92c873f rffc45b9 126 126 127 127 vlc_module_begin(); 128 set_description( _(" h264 video encoder using x264 library"));128 set_description( _("H264 encoder (using x264 library)")); 129 129 set_capability( "encoder", 200 ); 130 130 set_callbacks( Open, Close ); modules/demux/avi/avi.c
r08be58d rffc45b9 43 43 #define INDEX_TEXT N_("Force index creation") 44 44 #define INDEX_LONGTEXT N_( \ 45 "Recreate a index for the AVI file so we can seek trough it more reliably." ) 45 "Recreate a index for the AVI file. Use this if your AVI file is damaged "\ 46 "or incomplete (not seekable)" ) 46 47 47 48 static int Open ( vlc_object_t * ); … … 58 59 INTERLEAVE_TEXT, INTERLEAVE_LONGTEXT, VLC_TRUE ); 59 60 add_bool( "avi-index", 0, NULL, 60 INDEX_TEXT, INDEX_LONGTEXT, VLC_ TRUE );61 INDEX_TEXT, INDEX_LONGTEXT, VLC_FALSE ); 61 62 62 63 set_callbacks( Open, Close ); modules/demux/livedotcom.cpp
r4285aae rffc45b9 70 70 71 71 vlc_module_begin(); 72 set_description( _(" live.com (RTSP/RTP/SDP) demuxer" ) );72 set_description( _("RTP/RTSP/SDP demuxer (using Live.com)" ) ); 73 73 set_capability( "demux2", 50 ); 74 set_shortname( " Live.comRTP/RTSP");74 set_shortname( "RTP/RTSP"); 75 75 set_callbacks( Open, Close ); 76 76 add_shortcut( "live" ); modules/demux/playlist/playlist.c
r2f6ff2a rffc45b9 47 47 48 48 set_shortname( _("Playlist") ); 49 set_description( _(" Old playlist open") );49 set_description( _("Playlist") ); 50 50 add_shortcut( "old-open" ); 51 51 set_capability( "demux2", 10 ); modules/video_filter/blend.c
rfe087a3 rffc45b9 66 66 vlc_module_begin(); 67 67 set_description( _("Video pictures blending") ); 68 set_category( CAT_VIDEO );69 set_subcategory( SUBCAT_VIDEO_VFILTER );70 68 set_capability( "video blending", 100 ); 71 69 set_callbacks( OpenFilter, CloseFilter ); modules/video_filter/clone.c
rfe087a3 rffc45b9 68 68 69 69 add_integer( "clone-count", 2, NULL, COUNT_TEXT, COUNT_LONGTEXT, VLC_FALSE ); 70 add_string ( "clone-vout-list", NULL, NULL, VOUTLIST_TEXT, VOUTLIST_LONGTEXT, VLC_ FALSE );70 add_string ( "clone-vout-list", NULL, NULL, VOUTLIST_TEXT, VOUTLIST_LONGTEXT, VLC_TRUE ); 71 71 72 72 add_shortcut( "clone" ); modules/video_filter/deinterlace.c
r673c5d8 rffc45b9 101 101 *****************************************************************************/ 102 102 #define MODE_TEXT N_("Deinterlace mode") 103 #define MODE_LONGTEXT N_("You can choose the default deinterlace mode") 103 #define MODE_LONGTEXT N_("Default deinterlace method to use for local playback") 104 105 #define SOUT_MODE_TEXT N_("Deinterlace mode") 106 #define SOUT_MODE_LONGTEXT N_("Default deinterlace methode to use for streaming") 104 107 105 108 #define FILTER_CFG_PREFIX "sout-deinterlace-" … … 127 130 set_capability( "video filter2", 0 ); 128 131 set_section( N_("Streaming"),NULL); 129 add_string( FILTER_CFG_PREFIX "mode", "blend", NULL, MODE_TEXT,130 MODE_LONGTEXT, VLC_FALSE );132 add_string( FILTER_CFG_PREFIX "mode", "blend", NULL, SOUT_MODE_TEXT, 133 SOUT_MODE_LONGTEXT, VLC_FALSE ); 131 134 change_string_list( mode_list, mode_list_text, 0 ); 132 135 set_callbacks( OpenFilter, CloseFilter ); modules/video_filter/logo.c
ra92603f rffc45b9 96 96 97 97 add_file( "logo-file", NULL, NULL, FILE_TEXT, FILE_LONGTEXT, VLC_FALSE ); 98 add_integer( "logo-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_ FALSE );99 add_integer( "logo-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_ FALSE );98 add_integer( "logo-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_TRUE ); 99 add_integer( "logo-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_TRUE ); 100 100 add_integer_with_range( "logo-transparency", 255, 0, 255, NULL, 101 101 TRANS_TEXT, TRANS_LONGTEXT, VLC_FALSE ); 102 add_integer( "logo-position", 6, NULL, POS_TEXT, POS_LONGTEXT, VLC_ TRUE );102 add_integer( "logo-position", 6, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE ); 103 103 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 ); 104 104 modules/video_filter/marq.c
ra92603f rffc45b9 116 116 set_category( CAT_VIDEO ); 117 117 set_subcategory( SUBCAT_VIDEO_SUBPIC ); 118 add_string( "marq-marquee", "Marquee", NULL, MSG_TEXT, MSG_LONGTEXT, VLC_FALSE ); 118 add_string( "marq-marquee", "VLC", NULL, MSG_TEXT, MSG_LONGTEXT, 119 VLC_FALSE ); 119 120 120 121 set_section( N_("Position"), NULL ); 121 add_integer( "marq-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_ FALSE );122 add_integer( "marq-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_ FALSE );123 add_integer( "marq-position", 5, NULL, POS_TEXT, POS_LONGTEXT, VLC_ TRUE );122 add_integer( "marq-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_TRUE ); 123 add_integer( "marq-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_TRUE ); 124 add_integer( "marq-position", 5, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE ); 124 125 125 126 set_section( N_("Font"), NULL ); … … 128 129 add_integer_with_range( "marq-opacity", 255, 0, 255, NULL, 129 130 OPACITY_TEXT, OPACITY_LONGTEXT, VLC_FALSE ); 130 add_integer( "marq-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE ); 131 add_integer( "marq-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, 132 VLC_FALSE ); 131 133 change_integer_list( pi_color_values, ppsz_color_descriptions, 0 ); 132 134 add_integer( "marq-size", -1, NULL, SIZE_TEXT, SIZE_LONGTEXT, VLC_FALSE ); modules/video_filter/osdmenu.c
rdaf8622 rffc45b9 117 117 set_shortname( N_("OSD menu") ); 118 118 add_shortcut( "osdmenu" ); 119 /* 119 120 set_category( CAT_VIDEO ); 120 121 set_subcategory( SUBCAT_VIDEO_SUBPIC ); 122 */ 121 123 set_callbacks( CreateFilter, DestroyFilter ); 122 124 vlc_module_end(); modules/video_filter/rss.c
ra92603f rffc45b9 157 157 158 158 set_section( N_("Position"), NULL ); 159 add_integer( "rss-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE ); 160 add_integer( "rss-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE ); 161 add_integer( "rss-position", 5, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE ); 159 add_integer( "rss-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_TRUE ); 160 add_integer( "rss-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_TRUE ); 161 add_integer( "rss-position", 5, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE ); 162 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 ); 162 163 163 164 set_section( N_("Font"), NULL ); 164 165 /* 5 sets the default to top [1] left [4] */ 165 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );166 166 add_integer_with_range( "rss-opacity", 255, 0, 255, NULL, 167 167 OPACITY_TEXT, OPACITY_LONGTEXT, VLC_FALSE ); 168 add_integer( "rss-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE ); 168 add_integer( "rss-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, 169 VLC_FALSE ); 169 170 change_integer_list( pi_color_values, ppsz_color_descriptions, 0 ); 170 171 add_integer( "rss-size", -1, NULL, SIZE_TEXT, SIZE_LONGTEXT, VLC_FALSE ); … … 175 176 add_integer( "rss-length", 60, NULL, LENGTH_TEXT, LENGTH_LONGTEXT, 176 177 VLC_FALSE ); 177 add_integer( "rss-ttl", 900, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_FALSE );178 179 set_description( _("RSS feed display sub filter") );178 add_integer( "rss-ttl", 1800, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_FALSE ); 179 180 set_description( _("RSS feed display") ); 180 181 add_shortcut( "rss" ); 181 182 vlc_module_end(); modules/video_filter/rv32.c
r9eb39c5 rffc45b9 52 52 set_description( _("RV32 conversion filter") ); 53 53 set_capability( "video filter2", 1 ); 54 set_category( CAT_VIDEO );55 set_subcategory( SUBCAT_VIDEO_VFILTER );56 54 set_callbacks( OpenFilter, CloseFilter ); 57 55 vlc_module_end(); modules/video_filter/time.c
ra92603f rffc45b9 106 106 set_subcategory( SUBCAT_VIDEO_SUBPIC ); 107 107 set_callbacks( CreateFilter, DestroyFilter ); 108 add_string( "time-format", "%Y-%m-%d %H:%M:%S", NULL, MSG_TEXT, MSG_LONGTEXT, VLC_FALSE ); 109 add_integer( "time-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE ); 110 add_integer( "time-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE ); 111 add_integer( "time-position", 9, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE ); 108 add_string( "time-format", "%Y-%m-%d %H:%M:%S", NULL, MSG_TEXT, 109 MSG_LONGTEXT, VLC_TRUE ); 110 add_integer( "time-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_TRUE ); 111 add_integer( "time-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_TRUE ); 112 add_integer( "time-position", 9, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE ); 112 113 /* 9 sets the default to bottom-left, minimizing jitter */ 113 114 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 ); 114 115 add_integer_with_range( "time-opacity", 255, 0, 255, NULL, 115 116 OPACITY_TEXT, OPACITY_LONGTEXT, VLC_FALSE ); 116 add_integer( "time-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE ); 117 add_integer( "time-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT, 118 VLC_FALSE ); 117 119 change_integer_list( pi_color_values, ppsz_color_descriptions, 0 ); 118 120 add_integer( "time-size", -1, NULL, SIZE_TEXT, SIZE_LONGTEXT, VLC_FALSE ); modules/video_filter/wall.c
rfe087a3 rffc45b9 75 75 add_integer( "wall-cols", 3, NULL, COLS_TEXT, COLS_LONGTEXT, VLC_FALSE ); 76 76 add_integer( "wall-rows", 3, NULL, ROWS_TEXT, ROWS_LONGTEXT, VLC_FALSE ); 77 add_string( "wall-active", NULL, NULL, ACTIVE_TEXT, ACTIVE_LONGTEXT, VLC_FALSE ); 77 add_string( "wall-active", NULL, NULL, ACTIVE_TEXT, ACTIVE_LONGTEXT, 78 VLC_TRUE ); 78 79 add_string( "wall-element-aspect", "4:3", NULL, ASPECT_TEXT, ASPECT_LONGTEXT, VLC_FALSE ); 79 80 src/libvlc.h
r435dc16 rffc45b9 75 75 "This option turns off all warning and information messages.") 76 76 77 #define OPEN_TEXT N_(" Open MRL")77 #define OPEN_TEXT N_("Default stream") 78 78 #define OPEN_LONGTEXT N_( \ 79 "This option allows you to open a default MRL on start-up.")79 "This option allows you to always open a default stream on start-up." ) 80 80 81 81 #define LANGUAGE_TEXT N_("Language") … … 116 116 #define MONO_LONGTEXT N_("This will force a mono audio output.") 117 117 118 #define VOLUME_TEXT N_(" Audio outputvolume")118 #define VOLUME_TEXT N_("Default audio volume") 119 119 #define VOLUME_LONGTEXT N_( \ 120 120 "You can set the default audio output volume here, in a range from 0 to " \ … … 297 297 #define SKIP_FRAMES_TEXT N_("Skip frames") 298 298 #define SKIP_FRAMES_LONGTEXT N_( \ 299 "Disable this option to disable frame drops on MPEG-2 streams.") 299 "This option enables framedropping on MPEG2 stream. Framedropping " \ 300 "occurs when your computer is not powerful enough" ) 300 301 301 302 #define QUIET_SYNCHRO_TEXT N_("Quiet synchro") … … 337 338 "the stream output.") 338 339 339 #define INPUT_PROGRAM_TEXT N_(" Choose program (SID)")340 #define INPUT_PROGRAM_TEXT N_("Program to select") 340 341 #define INPUT_PROGRAM_LONGTEXT N_( \ 341 342 "Choose the program to select by giving its Service ID.\n" \ … … 343 344 "(like DVB streams for example)." ) 344 345 345 #define INPUT_PROGRAMS_TEXT N_(" Choose programs")346 #define INPUT_PROGRAMS_TEXT N_("Programs to select") 346 347 #define INPUT_PROGRAMS_LONGTEXT N_( \ 347 348 "Choose the programs to select by giving a comma-separated list of " \ … … 350 351 "(like DVB streams for example)." ) 351 352 352 #define INPUT_AUDIOTRACK_TEXT N_(" Choose audio track")353 #define INPUT_AUDIOTRACK_TEXT N_("Audio track") 353 354 #define INPUT_AUDIOTRACK_LONGTEXT N_( \ 354 355 "Give the stream number of the audio track you want to use" \ 355 356 "(from 0 to n).") 356 357 357 #define INPUT_SUBTRACK_TEXT N_(" Choose subtitles track")358 #define INPUT_SUBTRACK_TEXT N_("Subtitles track") 358 359 #define INPUT_SUBTRACK_LONGTEXT N_( \ 359 360 "Give the stream number of the subtitle track you want to use " \ 360 361 "(from 0 to n).") 361 362 362 #define INPUT_AUDIOTRACK_LANG_TEXT N_(" Choose audio language")363 #define INPUT_AUDIOTRACK_LANG_TEXT N_("Audio language") 363 364 #define INPUT_AUDIOTRACK_LANG_LONGTEXT N_( \ 364 365 "Give the language of the audio track you want to use " \ 365 366 "(comma separted, two or tree letter country code).") 366 367 367 #define INPUT_SUBTRACK_LANG_TEXT N_(" Choose subtitle language")368 #define INPUT_SUBTRACK_LANG_TEXT N_("Subtitle language") 368 369 #define INPUT_SUBTRACK_LANG_LONGTEXT N_( \ 369 370 "Give the language of the subtitle track you want to use " \ … … 382 383 #define INPUT_LIST_TEXT N_("Input list") 383 384 #define INPUT_LIST_LONGTEXT N_("Allows you to specify a comma-separated list " \ 384 "of inputs that will be concatenated .")385 "of inputs that will be concatenated after the normal one.") 385 386 386 387 #define INPUT_SLAVE_TEXT N_("Input slave (experimental)") 387 #define INPUT_SLAVE_LONGTEXT N_("Allows you to play from several files at " \388 #define INPUT_SLAVE_LONGTEXT N_("Allows you to play from several streams at " \ 388 389 "the same time. This feature is experimental, not all formats " \ 389 "are supported.")390 "are supported.") 390 391 391 392 #define BOOKMARKS_TEXT N_("Bookmarks list for a stream") … … 681 682 #define ACCESS_TEXT N_("Access module") 682 683 #define ACCESS_LONGTEXT N_( \ 683 "This is a legacy entry to let you configure access modules.") 684 "This allows you to force an access module. You can use it if " \ 685 "the correct access is not automatically detected. You should not "\ 686 "set this as a global option unless you really know what you are doing." ) 684 687 685 688 #define ACCESS_FILTER_TEXT N_("Access filter module") … … 959 962 AOUT_RESAMP_LONGTEXT, VLC_TRUE ); 960 963 #endif 961 add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_ FALSE );964 add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_TRUE ); 962 965 add_integer( "force-dolby-surround", 0, NULL, FORCE_DOLBY_TEXT, 963 FORCE_DOLBY_LONGTEXT, VLC_ FALSE );966 FORCE_DOLBY_LONGTEXT, VLC_TRUE ); 964 967 change_integer_list( pi_force_dolby_values, ppsz_force_dolby_descriptions, 0 ); 965 968 add_integer( "audio-desync", 0, NULL, DESYNC_TEXT, … … 988 991 change_short('f'); 989 992 add_bool( "skip-frames", 1, NULL, SKIP_FRAMES_TEXT, 990 SKIP_FRAMES_LONGTEXT, VLC_ FALSE );993 SKIP_FRAMES_LONGTEXT, VLC_TRUE ); 991 994 add_bool( "quiet-synchro", 0, NULL, QUIET_SYNCHRO_TEXT, 992 995 QUIET_SYNCHRO_LONGTEXT, VLC_TRUE ); … … 1088 1091 INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE ); 1089 1092 add_string( "programs", "", NULL, 1090 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, VLC_ FALSE );1093 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, VLC_TRUE ); 1091 1094 add_integer( "audio-track", -1, NULL, 1092 INPUT_AUDIOTRACK_TEXT, INPUT_AUDIOTRACK_LONGTEXT, VLC_ FALSE );1095 INPUT_AUDIOTRACK_TEXT, INPUT_AUDIOTRACK_LONGTEXT, VLC_TRUE ); 1093 1096 add_deprecated( "audio-channel", VLC_FALSE ); /*deprecated since 0.8.2 */ 1094 1097 add_integer( "sub-track", -1, NULL, 1095 INPUT_SUBTRACK_TEXT, INPUT_SUBTRACK_LONGTEXT, VLC_ FALSE );1098 INPUT_SUBTRACK_TEXT, INPUT_SUBTRACK_LONGTEXT, VLC_TRUE ); 1096 1099 add_deprecated("spu-channel",VLC_FALSE); /*deprecated since 0.8.2*/ 1097 1100 add_string( "audio-language", "", NULL, … … 1102 1105 VLC_FALSE ); 1103 1106 1104 1105 1107 set_section( N_( "Playback control" ) , NULL); 1106 1108 add_integer( "input-repeat", 0, NULL, 1107 INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_ TRUE );1109 INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_FALSE ); 1108 1110 add_integer( "start-time", 0, NULL, 1109 1111 START_TIME_TEXT, START_TIME_LONGTEXT, VLC_TRUE );
