Mercurial > mplayer.hg
annotate cfg-common-opts.h @ 31323:c674bb16fa6d
Install error handler as early as possible to avoid crashing.
author | reimar |
---|---|
date | Sun, 13 Jun 2010 17:59:59 +0000 |
parents | cc43f6d8bb6b |
children |
rev | line source |
---|---|
30429
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
1 /* |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
2 * This file is part of MPlayer. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
3 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
7 * (at your option) any later version. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
8 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
12 * GNU General Public License for more details. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
13 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
17 */ |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29826
diff
changeset
|
18 |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
19 #ifndef MPLAYER_CFG_COMMON_OPTS_H |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
20 #define MPLAYER_CFG_COMMON_OPTS_H |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
21 |
31220
002cdc635c03
Use the -a52drc option also for the libavcodec decoder.
reimar
parents:
31157
diff
changeset
|
22 // you may _not_ include any files here since this is included |
002cdc635c03
Use the -a52drc option also for the libavcodec decoder.
reimar
parents:
31157
diff
changeset
|
23 // in the middle of an array declaration |
28485
3f597aacbb69
Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
28210
diff
changeset
|
24 |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
25 // ------------------------- common options -------------------- |
31077 | 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}, | |
27393 | 35 #ifdef CONFIG_ICONV |
31077 | 36 {"msgcharset", &mp_msg_charset, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
37 #endif |
31077 | 38 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, |
28485
3f597aacbb69
Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
28210
diff
changeset
|
39 #ifdef CONFIG_PRIORITY |
31077 | 40 {"priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
41 #endif |
31077 | 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}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
44 |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
45 // ------------------------- stream options -------------------- |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
46 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
47 #ifdef CONFIG_STREAM_CACHE |
31077 | 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}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
52 #else |
31077 | 53 {"cache", "MPlayer was compiled without cache2 support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
54 #endif /* CONFIG_STREAM_CACHE */ |
31077 | 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}, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
58 #ifdef CONFIG_DVDREAD |
31077 | 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}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
64 #else |
31077 | 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}, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
68 #endif /* CONFIG_DVDREAD */ |
31077 | 69 {"alang", &audio_lang, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
70 {"slang", &dvdsub_lang, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
71 |
31077 | 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}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
75 |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
76 #ifdef CONFIG_NETWORK |
31077 | 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}, | |
31222
d739cbeb0e38
Add a referrer option to set the HTTP Referer field.
reimar
parents:
31220
diff
changeset
|
81 {"referrer", &network_referrer, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
31077 | 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}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
89 #ifdef HAVE_AF_INET6 |
31077 | 90 {"prefer-ipv6", &network_prefer_ipv4, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
91 #else |
31077 | 92 {"prefer-ipv6", "MPlayer was compiled without IPv6 support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
93 #endif /* HAVE_AF_INET6 */ |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
94 |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
95 #else |
31077 | 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}, | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
100 #endif /* CONFIG_NETWORK */ |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
101 |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
102 #ifdef CONFIG_LIVE555 |
31077 | 103 {"sdp", "-sdp has been removed, use sdp://file instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
31281 | 104 {"rtsp-stream-over-http", &rtsp_transport_http, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
105 #else | |
106 {"rtsp-stream-over-http", "-rtsp-stream-over-http requires the \"LIVE555 Streaming Media\" library.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
29279
b4bbf02afc53
Make sure -rtsp-stream-with-sctp is supported while building with libnemesi
lu_zero
parents:
29263
diff
changeset
|
107 #endif /* CONFIG_LIVE555 */ |
29303
4f26b760cb37
CONFIG_LIBNEMESI and CONFIG_LIVE555 are not defined to 0/1 values.
diego
parents:
29280
diff
changeset
|
108 #if defined(CONFIG_LIBNEMESI) || defined(CONFIG_LIVE555) |
31077 | 109 // -rtsp-stream-over-tcp option, specifying TCP streaming of RTP/RTCP |
110 {"rtsp-stream-over-tcp", &rtsp_transport_tcp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
29279
b4bbf02afc53
Make sure -rtsp-stream-with-sctp is supported while building with libnemesi
lu_zero
parents:
29263
diff
changeset
|
111 #else |
31077 | 112 {"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}, |
29303
4f26b760cb37
CONFIG_LIBNEMESI and CONFIG_LIVE555 are not defined to 0/1 values.
diego
parents:
29280
diff
changeset
|
113 #endif /* defined(CONFIG_LIBNEMESI) || defined(CONFIG_LIVE555) */ |
29279
b4bbf02afc53
Make sure -rtsp-stream-with-sctp is supported while building with libnemesi
lu_zero
parents:
29263
diff
changeset
|
114 #ifdef CONFIG_LIBNEMESI |
31077 | 115 {"rtsp-stream-over-sctp", &rtsp_transport_sctp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
116 #else |
31077 | 117 {"rtsp-stream-over-sctp", "-rtsp-stream-over-sctp requires the \"libnemesi\" library\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
29279
b4bbf02afc53
Make sure -rtsp-stream-with-sctp is supported while building with libnemesi
lu_zero
parents:
29263
diff
changeset
|
118 #endif /* CONFIG_LIBNEMESI */ |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
119 #ifdef CONFIG_NETWORK |
31077 | 120 {"rtsp-port", &rtsp_port, CONF_TYPE_INT, CONF_RANGE, -1, 65535, NULL}, |
121 {"rtsp-destination", &rtsp_destination, CONF_TYPE_STRING, CONF_MIN, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
122 #else |
31077 | 123 {"rtsp-port", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
124 {"rtsp-destination", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
125 #endif /* CONFIG_NETWORK */ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28485
diff
changeset
|
126 |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
127 // ------------------------- demuxer options -------------------- |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
128 |
31077 | 129 // number of frames to play/convert |
130 {"frames", &play_n_frames_mf, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
131 |
31077 | 132 // seek to byte/seconds position |
133 {"sb", &seek_to_byte, CONF_TYPE_POSITION, CONF_MIN, 0, 0, NULL}, | |
134 {"ss", &seek_to_sec, CONF_TYPE_TIME, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
135 |
31077 | 136 // stop at given position |
137 {"endpos", &end_at, CONF_TYPE_TIME_SIZE, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
138 |
31077 | 139 {"edl", &edl_filename, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
140 |
31077 | 141 // AVI specific: force non-interleaved mode |
142 {"ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
143 {"noni", &force_ni, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
144 |
31077 | 145 // AVI and Ogg only: (re)build index at startup |
146 {"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0, NULL}, | |
147 {"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1, NULL}, | |
148 {"forceidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 2, NULL}, | |
149 {"saveidx", &index_file_save, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
150 {"loadidx", &index_file_load, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
151 |
31077 | 152 // select audio/video/subtitle stream |
153 {"aid", &audio_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL}, | |
154 {"ausid", &audio_substream_id, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
155 {"vid", &video_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL}, | |
156 {"sid", &dvdsub_id, CONF_TYPE_INT, CONF_RANGE, -2, 8190, NULL}, | |
157 {"nosub", &dvdsub_id, CONF_TYPE_FLAG, 0, -1, -2, NULL}, | |
158 {"novideo", &video_id, CONF_TYPE_FLAG, 0, -1, -2, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
159 |
31077 | 160 { "hr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
161 { "nohr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
162 |
31077 | 163 { "rawaudio", &demux_rawaudio_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
164 { "rawvideo", &demux_rawvideo_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
165 |
27391
1d2faa1020fb
Rename a bunch of miscellaneous preprocessor directives.
diego
parents:
27370
diff
changeset
|
166 #ifdef CONFIG_CDDA |
31077 | 167 { "cdda", &cdda_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
168 #endif |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
169 |
31077 | 170 // demuxer.c - select audio/sub file/demuxer |
171 { "audiofile", &audio_stream, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
172 { "audiofile-cache", &audio_stream_cache, CONF_TYPE_INT, CONF_RANGE, 50, 65536, NULL}, | |
173 { "subfile", &sub_stream, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
174 { "demuxer", &demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
175 { "audio-demuxer", &audio_demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
176 { "sub-demuxer", &sub_demuxer_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
177 { "extbased", &extension_parsing, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
178 { "noextbased", &extension_parsing, CONF_TYPE_FLAG, 0, 1, 0, NULL }, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
179 |
31077 | 180 {"mf", mfopts_conf, CONF_TYPE_SUBCONFIG, 0,0,0, NULL}, |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
181 #ifdef CONFIG_RADIO |
31077 | 182 {"radio", radioopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
183 #else |
31077 | 184 {"radio", "MPlayer was compiled without Radio interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
185 #endif /* CONFIG_RADIO */ |
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
186 #ifdef CONFIG_TV |
31077 | 187 {"tv", tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
188 #else |
31077 | 189 {"tv", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
190 #endif /* CONFIG_TV */ |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27363
diff
changeset
|
191 #ifdef CONFIG_PVR |
31077 | 192 {"pvr", pvropts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
193 #else |
31077 | 194 {"pvr", "MPlayer was compiled without V4L2/PVR interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27363
diff
changeset
|
195 #endif /* CONFIG_PVR */ |
31077 | 196 {"vivo", vivoopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27363
diff
changeset
|
197 #ifdef CONFIG_DVBIN |
31077 | 198 {"dvbin", dvbin_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
199 #endif |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
200 |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
201 // ------------------------- a-v sync options -------------------- |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
202 |
31077 | 203 // AVI specific: A-V sync mode (bps vs. interleaving) |
204 {"bps", &pts_from_bps, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
205 {"nobps", &pts_from_bps, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
206 |
31077 | 207 // set A-V sync correction speed (0=disables it): |
208 {"mc", &default_max_pts_correction, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL}, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28485
diff
changeset
|
209 |
31077 | 210 // force video/audio rate: |
211 {"fps", &force_fps, CONF_TYPE_DOUBLE, CONF_MIN, 0, 0, NULL}, | |
212 {"srate", &force_srate, CONF_TYPE_INT, CONF_RANGE, 1000, 8*48000, NULL}, | |
213 {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 1, 8, NULL}, | |
214 {"format", &audio_output_format, CONF_TYPE_AFMT, 0, 0, 0, NULL}, | |
215 {"speed", &playback_speed, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 100.0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
216 |
31077 | 217 // set a-v distance |
218 {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -100.0, 100.0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
219 |
31077 | 220 // ignore header-specified delay (dwStart) |
221 {"ignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
222 {"noignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
223 |
31226
1f607394598a
Extend the range of the -a52drc range up to two, as a experimental feature
reimar
parents:
31225
diff
changeset
|
224 {"a52drc", &drc_level, CONF_TYPE_FLOAT, CONF_RANGE, 0, 2, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
225 |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
226 // ------------------------- codec/vfilter options -------------------- |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
227 |
31077 | 228 // MP3-only: select stereo/left/right |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
229 #ifdef CONFIG_FAKE_MONO |
31077 | 230 {"stereo", &fakemono, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
231 #endif |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
232 |
31077 | 233 // disable audio |
234 {"sound", &audio_id, CONF_TYPE_FLAG, 0, -2, -1, NULL}, | |
235 {"nosound", &audio_id, CONF_TYPE_FLAG, 0, -1, -2, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
236 |
31077 | 237 {"af*", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, |
238 {"af-adv", audio_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
239 |
31077 | 240 {"vop", "-vop has been removed, use -vf instead.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL}, |
241 {"vf*", &vf_settings, CONF_TYPE_OBJ_SETTINGS_LIST, 0, 0, 0, &vf_obj_list}, | |
242 // select audio/video codec (by name) or codec family (by number): | |
243 {"afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
244 {"vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
245 {"ac", &audio_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
246 {"vc", &video_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
247 |
31077 | 248 // postprocessing: |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
249 #ifdef CONFIG_LIBAVCODEC |
31077 | 250 {"pp", &divx_quality, CONF_TYPE_INT, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
251 #endif |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
252 #ifdef CONFIG_LIBPOSTPROC |
31077 | 253 {"pphelp", &pp_help, CONF_TYPE_PRINT_INDIRECT, CONF_NOCFG, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
254 #endif |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
255 |
31077 | 256 // scaling: |
257 {"sws", &sws_flags, CONF_TYPE_INT, 0, 0, 2, NULL}, | |
258 {"ssf", scaler_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, | |
259 {"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
260 {"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
261 {"aspect", &movie_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL}, | |
262 {"noaspect", &movie_aspect, CONF_TYPE_FLAG, 0, 0, 0, NULL}, | |
263 {"xy", &screen_size_xy, CONF_TYPE_FLOAT, CONF_RANGE, 0.001, 4096, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
264 |
31077 | 265 {"flip", &flip, CONF_TYPE_FLAG, 0, -1, 1, NULL}, |
266 {"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0, NULL}, | |
267 {"tsfastparse", "-tsfastparse is no longer a valid option.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
268 }, |
31077 | 269 {"tsprog", &ts_prog, CONF_TYPE_INT, CONF_RANGE, 0, 65534, NULL}, |
270 {"tsprobe", &ts_probe, CONF_TYPE_POSITION, 0, 0, TS_MAX_PROBE_SIZE, NULL}, | |
271 {"psprobe", &ps_probe, CONF_TYPE_POSITION, 0, 0, TS_MAX_PROBE_SIZE, NULL}, | |
272 {"tskeepbroken", &ts_keep_broken, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
273 |
31077 | 274 // draw by slices or whole frame (useful with libmpeg2/libavcodec) |
275 {"slices", &vd_use_slices, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
276 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
277 {"field-dominance", &field_dominance, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
278 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
279 #ifdef CONFIG_LIBAVCODEC |
31077 | 280 {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
281 #endif |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
282 #ifdef CONFIG_LIBAVFORMAT |
31077 | 283 {"lavfdopts", lavfdopts_conf, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
284 #endif |
27363
40057010b1fa
Change a bunch of codec-specific preprocessor directives from a HAVE_
diego
parents:
27362
diff
changeset
|
285 #ifdef CONFIG_XVID4 |
31077 | 286 {"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
287 #endif |
31077 | 288 {"codecs-file", &codecs_file, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
289 // ------------------------- subtitles options -------------------- |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
290 |
31077 | 291 {"sub", &sub_name, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, |
27393 | 292 #ifdef CONFIG_FRIBIDI |
31077 | 293 {"fribidi-charset", &fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
294 {"flip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
295 {"noflip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
296 {"flip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
297 {"noflip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28485
diff
changeset
|
298 #else |
31077 | 299 {"fribidi-charset", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
300 {"flip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
301 {"noflip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
302 {"flip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
303 {"noflip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
27393 | 304 #endif /* CONFIG_FRIBIDI */ |
305 #ifdef CONFIG_ICONV | |
31077 | 306 {"subcp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28485
diff
changeset
|
307 #endif |
31077 | 308 {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL}, |
309 {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL}, | |
310 {"autosub", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
311 {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
312 {"unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
313 {"nounicode", &sub_unicode, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
314 {"utf8", &sub_utf8, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
315 {"noutf8", &sub_utf8, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
316 {"forcedsubsonly", &forced_subs_only, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
317 // specify IFO file for VOBSUB subtitle | |
318 {"ifo", &spudec_ifo, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
319 // enable Closed Captioning display | |
320 {"subcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
321 {"nosubcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
322 {"overlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 2, NULL}, | |
323 {"nooverlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL}, | |
324 {"sub-bg-color", &sub_bg_color, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL}, | |
325 {"sub-bg-alpha", &sub_bg_alpha, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL}, | |
326 {"sub-no-text-pp", &sub_no_text_pp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
327 {"sub-fuzziness", &sub_match_fuzziness, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
328 {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
329 {"subfont", &sub_font_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
330 {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL}, | |
331 {"subpos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
332 {"subalign", &sub_alignment, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
333 {"subwidth", &sub_width_p, CONF_TYPE_INT, CONF_RANGE, 10, 100, NULL}, | |
334 {"spualign", &spu_alignment, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL}, | |
335 {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL}, | |
336 {"spugauss", &spu_gaussvar, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 3.0, NULL}, | |
27393 | 337 #ifdef CONFIG_FREETYPE |
31077 | 338 {"subfont-encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
339 {"subfont-text-scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL}, | |
340 {"subfont-osd-scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL}, | |
341 {"subfont-blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL}, | |
342 {"subfont-outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL}, | |
343 {"subfont-autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
344 #endif |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26416
diff
changeset
|
345 #ifdef CONFIG_ASS |
31077 | 346 {"ass", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
347 {"noass", &ass_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
348 {"ass-font-scale", &ass_font_scale, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL}, | |
349 {"ass-line-spacing", &ass_line_spacing, CONF_TYPE_FLOAT, CONF_RANGE, -1000, 1000, NULL}, | |
350 {"ass-top-margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
351 {"ass-bottom-margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
352 {"ass-use-margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
353 {"noass-use-margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
354 {"embeddedfonts", &extract_embedded_fonts, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
355 {"noembeddedfonts", &extract_embedded_fonts, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
356 {"ass-force-style", &ass_force_style_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
357 {"ass-color", &ass_color, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
358 {"ass-border-color", &ass_border_color, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
359 {"ass-styles", &ass_styles_file, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
360 {"ass-hinting", &ass_hinting, CONF_TYPE_INT, CONF_RANGE, 0, 7, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
361 #endif |
27393 | 362 #ifdef CONFIG_FONTCONFIG |
31077 | 363 {"fontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, -1, 1, NULL}, |
364 {"nofontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, 1, -1, NULL}, | |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
365 #else |
31077 | 366 {"fontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
367 {"nofontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
27393 | 368 #endif /* CONFIG_FONTCONFIG */ |
26360
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
369 |
a48df598c055
Split cfg-common.h into two separate header files. It was being included twice
diego
parents:
diff
changeset
|
370 #endif /* MPLAYER_CFG_COMMON_OPTS_H */ |