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