Fix compilation after FFmpeg r23485.
[mplayer/glamo.git] / cfg-common-opts.h
blobe783a79e9a86e276f3ab8e283bd9b0ae51b2e7da
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_CFG_COMMON_OPTS_H
20 #define MPLAYER_CFG_COMMON_OPTS_H
22 // you may _not_ include any files here since this is included
23 // in the middle of an array declaration
25 // ------------------------- common options --------------------
26 {"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
27 {"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
28 {"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_PRE_PARSE, 0, -10, NULL},
29 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOSAVE, 0, 0, NULL},
30 {"msglevel", msgl_config, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
31 {"msgcolor", &mp_msg_color, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
32 {"nomsgcolor", &mp_msg_color, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
33 {"msgmodule", &mp_msg_module, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
34 {"nomsgmodule", &mp_msg_module, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
35 #ifdef CONFIG_ICONV
36 {"msgcharset", &mp_msg_charset, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
37 #endif
38 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL},
39 #ifdef CONFIG_PRIORITY
40 {"priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL},
41 #endif
42 {"codecpath", &codec_path, CONF_TYPE_STRING, 0, 0, 0, NULL},
43 {"noconfig", noconfig_opts, CONF_TYPE_SUBCONFIG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 0, NULL},
45 // ------------------------- stream options --------------------
47 #ifdef CONFIG_STREAM_CACHE
48 {"cache", &stream_cache_size, CONF_TYPE_INT, CONF_RANGE, 32, 1048576, NULL},
49 {"nocache", &stream_cache_size, CONF_TYPE_FLAG, 0, 1, 0, NULL},
50 {"cache-min", &stream_cache_min_percent, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
51 {"cache-seek-min", &stream_cache_seek_min_percent, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
52 #else
53 {"cache", "MPlayer was compiled without cache2 support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
54 #endif /* CONFIG_STREAM_CACHE */
55 {"vcd", "-vcd N has been removed, use vcd://N instead.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL},
56 {"cuefile", "-cuefile has been removed, use cue://filename:N where N is the track number.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
57 {"cdrom-device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
58 #ifdef CONFIG_DVDREAD
59 {"dvd-device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
60 {"dvd-speed", &dvd_speed, CONF_TYPE_INT, 0, 0, 0, NULL},
61 {"dvd", "-dvd N has been removed, use dvd://N instead.\n" , CONF_TYPE_PRINT, 0, 0, 0, NULL},
62 {"dvdangle", &dvd_angle, CONF_TYPE_INT, CONF_RANGE, 1, 99, NULL},
63 {"chapter", dvd_parse_chapter_range, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL},
64 #else
65 {"dvd-device", "MPlayer was compiled without libdvdread support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
66 {"dvd-speed", "MPlayer was compiled without libdvdread support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
67 {"dvd", "MPlayer was compiled without libdvdread support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
68 #endif /* CONFIG_DVDREAD */
69 {"alang", &audio_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
70 {"slang", &dvdsub_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
72 {"dvdauth", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
73 {"dvdkey", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
74 {"csslib", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
76 #ifdef CONFIG_NETWORK
77 {"user", &network_username, CONF_TYPE_STRING, 0, 0, 0, NULL},
78 {"passwd", &network_password, CONF_TYPE_STRING, 0, 0, 0, NULL},
79 {"bandwidth", &network_bandwidth, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
80 {"user-agent", &network_useragent, CONF_TYPE_STRING, 0, 0, 0, NULL},
81 {"referrer", &network_referrer, CONF_TYPE_STRING, 0, 0, 0, NULL},
82 {"cookies", &network_cookies_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
83 {"nocookies", &network_cookies_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL},
84 {"cookies-file", &cookies_file, CONF_TYPE_STRING, 0, 0, 0, NULL},
85 {"prefer-ipv4", &network_prefer_ipv4, CONF_TYPE_FLAG, 0, 0, 1, NULL},
86 {"ipv4-only-proxy", &network_ipv4_only_proxy, CONF_TYPE_FLAG, 0, 0, 1, NULL},
87 {"reuse-socket", &reuse_socket, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
88 {"noreuse-socket", &reuse_socket, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
89 #ifdef HAVE_AF_INET6
90 {"prefer-ipv6", &network_prefer_ipv4, CONF_TYPE_FLAG, 0, 1, 0, NULL},
91 #else
92 {"prefer-ipv6", "MPlayer was compiled without IPv6 support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
93 #endif /* HAVE_AF_INET6 */
95 #else
96 {"user", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
97 {"passwd", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
98 {"bandwidth", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
99 {"user-agent", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
100 #endif /* CONFIG_NETWORK */
102 #ifdef CONFIG_LIVE555
103 {"sdp", "-sdp has been removed, use sdp://file instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
104 #endif /* CONFIG_LIVE555 */
105 #if defined(CONFIG_LIBNEMESI) || defined(CONFIG_LIVE555)
106 // -rtsp-stream-over-tcp option, specifying TCP streaming of RTP/RTCP
107 {"rtsp-stream-over-tcp", &rtsp_transport_tcp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
108 #else
109 {"rtsp-stream-over-tcp", "-rtsp-stream-over-tcp requires the \"LIVE555 Streaming Media\" or \"libnemesi\" libraries.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
110 #endif /* defined(CONFIG_LIBNEMESI) || defined(CONFIG_LIVE555) */
111 #ifdef CONFIG_LIBNEMESI
112 {"rtsp-stream-over-sctp", &rtsp_transport_sctp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
113 #else
114 {"rtsp-stream-over-sctp", "-rtsp-stream-over-sctp requires the \"libnemesi\" library\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
115 #endif /* CONFIG_LIBNEMESI */
116 #ifdef CONFIG_NETWORK
117 {"rtsp-port", &rtsp_port, CONF_TYPE_INT, CONF_RANGE, -1, 65535, NULL},
118 {"rtsp-destination", &rtsp_destination, CONF_TYPE_STRING, CONF_MIN, 0, 0, NULL},
119 #else
120 {"rtsp-port", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
121 {"rtsp-destination", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
122 #endif /* CONFIG_NETWORK */
124 // ------------------------- demuxer options --------------------
126 // number of frames to play/convert
127 {"frames", &play_n_frames_mf, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
129 // seek to byte/seconds position
130 {"sb", &seek_to_byte, CONF_TYPE_POSITION, CONF_MIN, 0, 0, NULL},
131 {"ss", &seek_to_sec, CONF_TYPE_TIME, 0, 0, 0, NULL},
133 // stop at given position
134 {"endpos", &end_at, CONF_TYPE_TIME_SIZE, 0, 0, 0, NULL},
136 {"edl", &edl_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
138 // AVI specific: force non-interleaved mode
139 {"ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL},
140 {"noni", &force_ni, CONF_TYPE_FLAG, 0, 1, 0, NULL},
142 // AVI and Ogg only: (re)build index at startup
143 {"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0, NULL},
144 {"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1, NULL},
145 {"forceidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 2, NULL},
146 {"saveidx", &index_file_save, CONF_TYPE_STRING, 0, 0, 0, NULL},
147 {"loadidx", &index_file_load, CONF_TYPE_STRING, 0, 0, 0, NULL},
149 // select audio/video/subtitle stream
150 {"aid", &audio_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL},
151 {"ausid", &audio_substream_id, CONF_TYPE_INT, 0, 0, 0, NULL},
152 {"vid", &video_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL},
153 {"sid", &dvdsub_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL},
154 {"nosub", &dvdsub_id, CONF_TYPE_FLAG, 0, -1, -2, NULL},
155 {"novideo", &video_id, CONF_TYPE_FLAG, 0, -1, -2, NULL},
157 { "hr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 0, 1, NULL },
158 { "nohr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 1, 0, NULL},
160 { "rawaudio", &demux_rawaudio_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
161 { "rawvideo", &demux_rawvideo_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
163 #ifdef CONFIG_CDDA
164 { "cdda", &cdda_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
165 #endif
167 // demuxer.c - select audio/sub file/demuxer
168 { "audiofile", &audio_stream, CONF_TYPE_STRING, 0, 0, 0, NULL },
169 { "audiofile-cache", &audio_stream_cache, CONF_TYPE_INT, CONF_RANGE, 50, 65536, NULL},
170 { "subfile", &sub_stream, CONF_TYPE_STRING, 0, 0, 0, NULL },
171 { "demuxer", &demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL },
172 { "audio-demuxer", &audio_demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL },
173 { "sub-demuxer", &sub_demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL },
174 { "extbased", &extension_parsing, CONF_TYPE_FLAG, 0, 0, 1, NULL },
175 { "noextbased", &extension_parsing, CONF_TYPE_FLAG, 0, 1, 0, NULL },
177 {"mf", mfopts_conf, CONF_TYPE_SUBCONFIG, 0,0,0, NULL},
178 #ifdef CONFIG_RADIO
179 {"radio", radioopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
180 #else
181 {"radio", "MPlayer was compiled without Radio interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
182 #endif /* CONFIG_RADIO */
183 #ifdef CONFIG_TV
184 {"tv", tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
185 #else
186 {"tv", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
187 #endif /* CONFIG_TV */
188 #ifdef CONFIG_PVR
189 {"pvr", pvropts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
190 #else
191 {"pvr", "MPlayer was compiled without V4L2/PVR interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
192 #endif /* CONFIG_PVR */
193 {"vivo", vivoopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
194 #ifdef CONFIG_DVBIN
195 {"dvbin", dvbin_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
196 #endif
198 // ------------------------- a-v sync options --------------------
200 // AVI specific: A-V sync mode (bps vs. interleaving)
201 {"bps", &pts_from_bps, CONF_TYPE_FLAG, 0, 0, 1, NULL},
202 {"nobps", &pts_from_bps, CONF_TYPE_FLAG, 0, 1, 0, NULL},
204 // set A-V sync correction speed (0=disables it):
205 {"mc", &default_max_pts_correction, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
207 // force video/audio rate:
208 {"fps", &force_fps, CONF_TYPE_DOUBLE, CONF_MIN, 0, 0, NULL},
209 {"srate", &force_srate, CONF_TYPE_INT, CONF_RANGE, 1000, 8*48000, NULL},
210 {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 1, 8, NULL},
211 {"format", &audio_output_format, CONF_TYPE_AFMT, 0, 0, 0, NULL},
212 {"speed", &playback_speed, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 100.0, NULL},
214 // set a-v distance
215 {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -100.0, 100.0, NULL},
217 // ignore header-specified delay (dwStart)
218 {"ignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 0, 1, NULL},
219 {"noignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 1, 0, NULL},
221 {"a52drc", &drc_level, CONF_TYPE_FLOAT, CONF_RANGE, 0, 2, NULL},
223 // ------------------------- codec/vfilter options --------------------
225 // MP3-only: select stereo/left/right
226 #ifdef CONFIG_FAKE_MONO
227 {"stereo", &fakemono, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
228 #endif
230 // disable audio
231 {"sound", &audio_id, CONF_TYPE_FLAG, 0, -2, -1, NULL},
232 {"nosound", &audio_id, CONF_TYPE_FLAG, 0, -1, -2, NULL},
234 {"af*", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
235 {"af-adv", audio_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
237 {"vop", "-vop has been removed, use -vf instead.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL},
238 {"vf*", &vf_settings, CONF_TYPE_OBJ_SETTINGS_LIST, 0, 0, 0, &vf_obj_list},
239 // select audio/video codec (by name) or codec family (by number):
240 {"afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
241 {"vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
242 {"ac", &audio_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
243 {"vc", &video_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
245 // postprocessing:
246 #ifdef CONFIG_LIBAVCODEC
247 {"pp", &divx_quality, CONF_TYPE_INT, 0, 0, 0, NULL},
248 #endif
249 #ifdef CONFIG_LIBPOSTPROC
250 {"pphelp", &pp_help, CONF_TYPE_PRINT_INDIRECT, CONF_NOCFG, 0, 0, NULL},
251 #endif
253 // scaling:
254 {"sws", &sws_flags, CONF_TYPE_INT, 0, 0, 2, NULL},
255 {"ssf", scaler_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
256 {"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1, NULL},
257 {"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0, NULL},
258 {"aspect", &movie_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
259 {"noaspect", &movie_aspect, CONF_TYPE_FLAG, 0, 0, 0, NULL},
260 {"xy", &screen_size_xy, CONF_TYPE_FLOAT, CONF_RANGE, 0.001, 4096, NULL},
262 {"flip", &flip, CONF_TYPE_FLAG, 0, -1, 1, NULL},
263 {"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0, NULL},
264 {"tsfastparse", "-tsfastparse is no longer a valid option.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL
266 {"tsprog", &ts_prog, CONF_TYPE_INT, CONF_RANGE, 0, 65534, NULL},
267 {"tsprobe", &ts_probe, CONF_TYPE_POSITION, 0, 0, TS_MAX_PROBE_SIZE, NULL},
268 {"psprobe", &ps_probe, CONF_TYPE_POSITION, 0, 0, TS_MAX_PROBE_SIZE, NULL},
269 {"tskeepbroken", &ts_keep_broken, CONF_TYPE_FLAG, 0, 0, 1, NULL},
271 // draw by slices or whole frame (useful with libmpeg2/libavcodec)
272 {"slices", &vd_use_slices, CONF_TYPE_FLAG, 0, 0, 1, NULL},
273 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL},
274 {"field-dominance", &field_dominance, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL},
276 #ifdef CONFIG_LIBAVCODEC
277 {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
278 #endif
279 #ifdef CONFIG_LIBAVFORMAT
280 {"lavfdopts", lavfdopts_conf, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
281 #endif
282 #ifdef CONFIG_XVID4
283 {"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
284 #endif
285 {"codecs-file", &codecs_file, CONF_TYPE_STRING, 0, 0, 0, NULL},
286 // ------------------------- subtitles options --------------------
288 {"sub", &sub_name, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
289 #ifdef CONFIG_FRIBIDI
290 {"fribidi-charset", &fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL},
291 {"flip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL},
292 {"noflip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL},
293 {"flip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 1, 0, NULL},
294 {"noflip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 0, 1, NULL},
295 #else
296 {"fribidi-charset", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
297 {"flip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
298 {"noflip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
299 {"flip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
300 {"noflip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
301 #endif /* CONFIG_FRIBIDI */
302 #ifdef CONFIG_ICONV
303 {"subcp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL},
304 #endif
305 {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL},
306 {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL},
307 {"autosub", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL},
308 {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0, NULL},
309 {"unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
310 {"nounicode", &sub_unicode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
311 {"utf8", &sub_utf8, CONF_TYPE_FLAG, 0, 0, 1, NULL},
312 {"noutf8", &sub_utf8, CONF_TYPE_FLAG, 0, 1, 0, NULL},
313 {"forcedsubsonly", &forced_subs_only, CONF_TYPE_FLAG, 0, 0, 1, NULL},
314 // specify IFO file for VOBSUB subtitle
315 {"ifo", &spudec_ifo, CONF_TYPE_STRING, 0, 0, 0, NULL},
316 // enable Closed Captioning display
317 {"subcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
318 {"nosubcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL},
319 {"overlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 2, NULL},
320 {"nooverlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL},
321 {"sub-bg-color", &sub_bg_color, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
322 {"sub-bg-alpha", &sub_bg_alpha, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
323 {"sub-no-text-pp", &sub_no_text_pp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
324 {"sub-fuzziness", &sub_match_fuzziness, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
325 {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
326 {"subfont", &sub_font_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
327 {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL},
328 {"subpos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
329 {"subalign", &sub_alignment, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
330 {"subwidth", &sub_width_p, CONF_TYPE_INT, CONF_RANGE, 10, 100, NULL},
331 {"spualign", &spu_alignment, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL},
332 {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
333 {"spugauss", &spu_gaussvar, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 3.0, NULL},
334 #ifdef CONFIG_FREETYPE
335 {"subfont-encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL},
336 {"subfont-text-scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
337 {"subfont-osd-scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
338 {"subfont-blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL},
339 {"subfont-outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL},
340 {"subfont-autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
341 #endif
342 #ifdef CONFIG_ASS
343 {"ass", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
344 {"noass", &ass_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL},
345 {"ass-font-scale", &ass_font_scale, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
346 {"ass-line-spacing", &ass_line_spacing, CONF_TYPE_FLOAT, CONF_RANGE, -1000, 1000, NULL},
347 {"ass-top-margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
348 {"ass-bottom-margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
349 {"ass-use-margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL},
350 {"noass-use-margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 1, 0, NULL},
351 {"embeddedfonts", &extract_embedded_fonts, CONF_TYPE_FLAG, 0, 0, 1, NULL},
352 {"noembeddedfonts", &extract_embedded_fonts, CONF_TYPE_FLAG, 0, 1, 0, NULL},
353 {"ass-force-style", &ass_force_style_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
354 {"ass-color", &ass_color, CONF_TYPE_STRING, 0, 0, 0, NULL},
355 {"ass-border-color", &ass_border_color, CONF_TYPE_STRING, 0, 0, 0, NULL},
356 {"ass-styles", &ass_styles_file, CONF_TYPE_STRING, 0, 0, 0, NULL},
357 {"ass-hinting", &ass_hinting, CONF_TYPE_INT, CONF_RANGE, 0, 7, NULL},
358 #endif
359 #ifdef CONFIG_FONTCONFIG
360 {"fontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, -1, 1, NULL},
361 {"nofontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, 1, -1, NULL},
362 #else
363 {"fontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
364 {"nofontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
365 #endif /* CONFIG_FONTCONFIG */
367 #endif /* MPLAYER_CFG_COMMON_OPTS_H */