annotate cfg-common.h @ 14944:7e7b077b7a50

Oded's patch for -speed in mencoder. This can be used for purposes like converting back and forth between PAL and FILM (or NTSC-FILM) framerates, or whatever else you like. Doesn't work with -oac copy. Someone give Oded some cola for the error message and fill in a sane one. :))))
author rfelker
date Tue, 15 Mar 2005 04:10:57 +0000
parents 099ed4814603
children 92e234f53156
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
1 #ifdef MAIN_CONF /* this will be included in conf[] */
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
2
11922
b2f7ad678181 Duplicate -include option moved to cfg-common.h.
diego
parents: 11875
diff changeset
3 // ------------------------- common options --------------------
11875
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
4 {"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
5 {"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
6 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE|CONF_GLOBAL, 0, 100, NULL},
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
7 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOSAVE, 0, 0, NULL},
11922
b2f7ad678181 Duplicate -include option moved to cfg-common.h.
diego
parents: 11875
diff changeset
8 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL},
11875
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
9
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
10 // ------------------------- stream options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
11
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
12 #ifdef USE_STREAM_CACHE
12835
4235ae5a2d60 cache min fill adjustment, based on patch by Jeremy Huddleston
iive
parents: 12533
diff changeset
13 {"cache", &stream_cache_size, CONF_TYPE_INT, CONF_RANGE, 32, 1048576, NULL},
5387
44661cb881d0 Allow cache to be disabled at commandline.
atmos4
parents: 5380
diff changeset
14 {"nocache", &stream_cache_size, CONF_TYPE_FLAG, 0, 1, 0, NULL},
12835
4235ae5a2d60 cache min fill adjustment, based on patch by Jeremy Huddleston
iive
parents: 12533
diff changeset
15 {"cache-min", &stream_cache_min_percent, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
4235ae5a2d60 cache min fill adjustment, based on patch by Jeremy Huddleston
iive
parents: 12533
diff changeset
16 {"cache-prefill", &stream_cache_prefill_percent, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
17 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
18 {"cache", "MPlayer was compiled without cache2 support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
19 #endif
9753
cd3b8691e930 -vcd, -dvd, -dvdnav, -tv on, -cuefile and -mf on are deprecated
albeu
parents: 9711
diff changeset
20 {"vcd", "-vcd N is deprecated, use vcd://N instead.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL},
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
21 {"cuefile", "-cuefile is deprecated, use cue://filename:N where N is the track number.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
4220
fe2c20d52a25 Fixed a few bugs and added support for VCD/DVD/TV in playlist using virtual url
albeu
parents: 4157
diff changeset
22 {"cdrom-device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
5380
8a01cde9cf39 DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents: 5352
diff changeset
23 #ifdef USE_DVDNAV
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
24 {"dvdnav", "-dvdnav is deprecated, use dvdnav:// instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL},
5475
5d2aa5a4d8cb new dvdnav option: -skipopening - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents: 5436
diff changeset
25 {"skipopening", &dvd_nav_skip_opening, CONF_TYPE_FLAG, 0, 0, 1, NULL},
10485
c09a68c1b949 some missing 'no' pairs of flags
alex
parents: 10338
diff changeset
26 {"noskipopening", &dvd_nav_skip_opening, CONF_TYPE_FLAG, 0, 1, 0, NULL},
5380
8a01cde9cf39 DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents: 5352
diff changeset
27 #endif
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
28 #ifdef USE_DVDREAD
4220
fe2c20d52a25 Fixed a few bugs and added support for VCD/DVD/TV in playlist using virtual url
albeu
parents: 4157
diff changeset
29 {"dvd-device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
9753
cd3b8691e930 -vcd, -dvd, -dvdnav, -tv on, -cuefile and -mf on are deprecated
albeu
parents: 9711
diff changeset
30 {"dvd", "-dvd N is deprecated, use dvd://N instead.\n" , CONF_TYPE_PRINT, 0, 0, 0, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
31 {"dvdangle", &dvd_angle, CONF_TYPE_INT, CONF_RANGE, 1, 99, NULL},
4343
b0c8eed7473c Extended DVD chapter specification. Remove -last-chapter option.
kmkaplan
parents: 4297
diff changeset
32 {"chapter", dvd_parse_chapter_range, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
33 #else
14540
b13b7088f1d9 Print warning message when using -dvd-device without libdvdread support.
diego
parents: 13679
diff changeset
34 {"dvd-device", "MPlayer was compiled without libdvdread support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
35 {"dvd", "MPlayer was compiled without libdvdread support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
36 #endif
13544
b11c66fc5ace -alang is not limited to the libdvdread dependant code anymore but used in other demuxers as well. Therefore it should not be inside a "#ifdef USE_DVDREAD".
mosu
parents: 12835
diff changeset
37 {"alang", &audio_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9841
diff changeset
38 {"slang", &dvdsub_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
39
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
40 {"dvdauth", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
41 {"dvdkey", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
12408
ad1a2bad9248 typos, wording and mistakes pointed out by the wanderer
diego
parents: 12407
diff changeset
42 {"csslib", "libcss is obsolete. Try libdvdread instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
43
10121
d42177a0da2a Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents: 9959
diff changeset
44 #ifdef MPLAYER_NETWORK
6559
e7c244db6174 Added -user -pass options for http authentication.
bertrand
parents: 6265
diff changeset
45 {"user", &network_username, CONF_TYPE_STRING, 0, 0, 0, NULL},
6569
39a7509868de 10l to me and bertrand ;) Fix clash of -pass for http auth with -pass of mencoder.
atmos4
parents: 6559
diff changeset
46 {"passwd", &network_password, CONF_TYPE_STRING, 0, 0, 0, NULL},
6646
6cfc8fd31299 Added the bandwidth option
bertrand
parents: 6590
diff changeset
47 {"bandwidth", &network_bandwidth, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
11228
f25d54466044 User settable http user-agent. Patch by Per Wigren
alex
parents: 11190
diff changeset
48 {"user-agent", &network_useragent, CONF_TYPE_STRING, 0, 0, 0, NULL},
11583
2af52902e7dc Send HTTP Cookies (reading from mozilla/netscape files) support by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>. Disabled by default.
alex
parents: 11582
diff changeset
49 {"cookies", &network_cookies_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
2af52902e7dc Send HTTP Cookies (reading from mozilla/netscape files) support by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>. Disabled by default.
alex
parents: 11582
diff changeset
50 {"nocookies", &network_cookies_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL},
2af52902e7dc Send HTTP Cookies (reading from mozilla/netscape files) support by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>. Disabled by default.
alex
parents: 11582
diff changeset
51 {"cookies-file", &cookies_file, CONF_TYPE_STRING, 0, 0, 0, NULL},
9691
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
52 {"prefer-ipv4", &network_prefer_ipv4, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
53 {"ipv4-only-proxy", &network_ipv4_only_proxy, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
54 #ifdef HAVE_AF_INET6
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
55 {"prefer-ipv6", &network_prefer_ipv4, CONF_TYPE_FLAG, 0, 1, 0, NULL},
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
56 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
57 {"prefer-ipv6", "MPlayer was compiled without IPv6 support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
9691
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
58 #endif
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
59
6559
e7c244db6174 Added -user -pass options for http authentication.
bertrand
parents: 6265
diff changeset
60 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
61 {"user", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
62 {"passwd", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
63 {"bandwidth", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
64 {"user-agent", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
6559
e7c244db6174 Added -user -pass options for http authentication.
bertrand
parents: 6265
diff changeset
65 #endif
9691
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
66
6559
e7c244db6174 Added -user -pass options for http authentication.
bertrand
parents: 6265
diff changeset
67
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
68 // ------------------------- demuxer options --------------------
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
69
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
70 // number of frames to play/convert
6590
bfc209bb3f48 -frames 0 fix, multifile frames support by tibcu
alex
parents: 6569
diff changeset
71 {"frames", &play_n_frames_mf, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
72
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
73 // seek to byte/seconds position
7114
79187bd813a6 64-bit -sb offsets patch by Andy Goth <unununium@openverse.com>
alex
parents: 7058
diff changeset
74 {"sb", &seek_to_byte, CONF_TYPE_POSITION, CONF_MIN, 0, 0, NULL},
5626
b7b40e65c070 -sb option re-added (noticed by Alexandre Oliva <oliva@lsd.ic.unicamp.br>)
arpi
parents: 5572
diff changeset
75 {"ss", &seek_to_sec, CONF_TYPE_STRING, CONF_MIN, 0, 0, NULL},
b7b40e65c070 -sb option re-added (noticed by Alexandre Oliva <oliva@lsd.ic.unicamp.br>)
arpi
parents: 5572
diff changeset
76
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
77 // AVI specific: force non-interleaved mode
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
78 {"ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
79 {"noni", &force_ni, CONF_TYPE_FLAG, 0, 1, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
80
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
81 // AVI and Ogg only: (re)build index at startup
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
82 {"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
83 {"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
84 {"forceidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 2, NULL},
11234
9767665d49e0 Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents: 11228
diff changeset
85 {"saveidx", &index_file_save, CONF_TYPE_STRING, 0, 0, 0, NULL},
9767665d49e0 Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents: 11228
diff changeset
86 {"loadidx", &index_file_load, CONF_TYPE_STRING, 0, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
87
12408
ad1a2bad9248 typos, wording and mistakes pointed out by the wanderer
diego
parents: 12407
diff changeset
88 // select audio/video/subtitle stream
11190
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
89 {"aid", &audio_id, CONF_TYPE_INT, CONF_RANGE, 0, 8190, NULL},
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
90 {"vid", &video_id, CONF_TYPE_INT, CONF_RANGE, 0, 8190, NULL},
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
91 {"sid", &dvdsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 8190, NULL},
9841
0e63098f3efe (experimental, for testing/debugging) -novideo option added
arpi
parents: 9753
diff changeset
92 {"novideo", &video_id, CONF_TYPE_FLAG, 0, -1, -2, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
93
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
94 { "hr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 0, 1, NULL },
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
95 { "nohr-mp3-seek", &hr_mp3_seek, CONF_TYPE_FLAG, 0, 1, 0, NULL},
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
96
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
97 { "rawaudio", &demux_rawaudio_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
9065
59805b2d220a raw video demuxer, requested by Michael
arpi
parents: 9006
diff changeset
98 { "rawvideo", &demux_rawvideo_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
99
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
100 #ifdef HAVE_CDDA
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
101 { "cdda", &cdda_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
102 #endif
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
103
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
104 // demuxer.c - select audio/sub file/demuxer
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
105 { "audiofile", &audio_stream, CONF_TYPE_STRING, 0, 0, 0, NULL },
9711
f7295ec4fb17 New option -audiofile-cache to enable a cache for the stream used by
albeu
parents: 9691
diff changeset
106 { "audiofile-cache", &audio_stream_cache, CONF_TYPE_INT, CONF_RANGE, 50, 65536, NULL},
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
107 { "subfile", &sub_stream, CONF_TYPE_STRING, 0, 0, 0, NULL },
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
108 { "demuxer", &demuxer_type, CONF_TYPE_INT, CONF_RANGE, 1, DEMUXER_TYPE_MAX, NULL },
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
109 { "audio-demuxer", &audio_demuxer_type, CONF_TYPE_INT, CONF_RANGE, 1, DEMUXER_TYPE_MAX, NULL },
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
110 { "sub-demuxer", &sub_demuxer_type, CONF_TYPE_INT, CONF_RANGE, 1, DEMUXER_TYPE_MAX, NULL },
9006
d00997f12257 extension-based filetype detection for headerless files (mp3 vs mpeg, etc)
arpi
parents: 8882
diff changeset
111 { "extbased", &extension_parsing, CONF_TYPE_FLAG, 0, 0, 1, NULL },
d00997f12257 extension-based filetype detection for headerless files (mp3 vs mpeg, etc)
arpi
parents: 8882
diff changeset
112 { "noextbased", &extension_parsing, CONF_TYPE_FLAG, 0, 1, 0, NULL },
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
113
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
114 {"mf", mfopts_conf, CONF_TYPE_SUBCONFIG, 0,0,0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
115 #ifdef USE_TV
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
116 {"tv", tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
117 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
118 {"tv", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
119 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
120 {"vivo", vivoopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
121 #ifdef HAS_DVBIN_SUPPORT
10560
11826d9f90c7 this patch fixes
arpi
parents: 10538
diff changeset
122 {"dvbin", dvbin_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
123 #endif
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
124
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
125 // ------------------------- a-v sync options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
126
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
127 // AVI specific: A-V sync mode (bps vs. interleaving)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
128 {"bps", &pts_from_bps, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
129 {"nobps", &pts_from_bps, CONF_TYPE_FLAG, 0, 1, 0, NULL},
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2616
diff changeset
130
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
131 // set A-V sync correction speed (0=disables it):
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
132 {"mc", &default_max_pts_correction, CONF_TYPE_FLOAT, CONF_RANGE, 0, 10, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
133
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
134 // force video/audio rate:
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
135 {"fps", &force_fps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
136 {"srate", &force_srate, CONF_TYPE_INT, CONF_RANGE, 1000, 8*48000, NULL},
7604
32efb806436e aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents: 7529
diff changeset
137 {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 1, 6, NULL},
14789
099ed4814603 quick solution for making an option less braindead
alex
parents: 14540
diff changeset
138 {"format", &audio_output_format, CONF_TYPE_AFMT, 0, 0, 0, NULL},
14944
7e7b077b7a50 Oded's patch for -speed in mencoder. This can be used for purposes
rfelker
parents: 14789
diff changeset
139 {"speed", &playback_speed, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 100.0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
140
12533
44c00d92f718 Compilation fix with --disable-liba52
rtognimp
parents: 12408
diff changeset
141 #ifdef USE_LIBA52
12285
67b8d64af8c7 a52 dynamic range compression support by Peter Gansterer
alex
parents: 12061
diff changeset
142 {"a52drc", &a52_drc_level, CONF_TYPE_FLOAT, CONF_RANGE, 0, 1, NULL},
12533
44c00d92f718 Compilation fix with --disable-liba52
rtognimp
parents: 12408
diff changeset
143 #endif
12285
67b8d64af8c7 a52 dynamic range compression support by Peter Gansterer
alex
parents: 12061
diff changeset
144
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
145 // ------------------------- codec/vfilter options --------------------
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
146
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
147 // MP3-only: select stereo/left/right
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
148 #ifdef USE_FAKE_MONO
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
149 {"stereo", &fakemono, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
150 #endif
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
151
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
152 // disable audio
7529
c276bfb414fb removed obsolete/unused audio|video_fm|codec, has_audio|video
arpi
parents: 7522
diff changeset
153 {"sound", &audio_id, CONF_TYPE_FLAG, 0, -2, -1, NULL},
c276bfb414fb removed obsolete/unused audio|video_fm|codec, has_audio|video
arpi
parents: 7522
diff changeset
154 {"nosound", &audio_id, CONF_TYPE_FLAG, 0, -1, -2, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
155
9349
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
156 {"af-adv", audio_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
157 {"af", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
158
9916
54f791edd847 Fix -vf* vs. -vfm
albeu
parents: 9913
diff changeset
159 {"vop*", &vo_plugin_args, CONF_TYPE_OBJ_SETTINGS_LIST, 0, 0, 0,&vf_obj_list },
54f791edd847 Fix -vf* vs. -vfm
albeu
parents: 9913
diff changeset
160 {"vf*", &vf_settings, CONF_TYPE_OBJ_SETTINGS_LIST, 0, 0, 0, &vf_obj_list},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
161 // select audio/video codec (by name) or codec family (by number):
7180
28677d779205 -afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents: 7163
diff changeset
162 // {"afm", &audio_family, CONF_TYPE_INT, CONF_MIN, 0, 22, NULL}, // keep ranges in sync
28677d779205 -afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents: 7163
diff changeset
163 // {"vfm", &video_family, CONF_TYPE_INT, CONF_MIN, 0, 29, NULL}, // with codec-cfg.c
7522
aa1a1249f239 -ac/-afm rewrite, now works the same way as -vc/-vfm
arpi
parents: 7506
diff changeset
164 // {"afm", &audio_fm, CONF_TYPE_STRING, 0, 0, 0, NULL},
aa1a1249f239 -ac/-afm rewrite, now works the same way as -vc/-vfm
arpi
parents: 7506
diff changeset
165 {"afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7506
c1cb94198e05 -vc/-vfm accepts codec/driver _list_ now. empty list element for -vc means
arpi
parents: 7452
diff changeset
166 {"vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7522
aa1a1249f239 -ac/-afm rewrite, now works the same way as -vc/-vfm
arpi
parents: 7506
diff changeset
167 // {"ac", &audio_codec, CONF_TYPE_STRING, 0, 0, 0, NULL},
aa1a1249f239 -ac/-afm rewrite, now works the same way as -vc/-vfm
arpi
parents: 7506
diff changeset
168 {"ac", &audio_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7506
c1cb94198e05 -vc/-vfm accepts codec/driver _list_ now. empty list element for -vc means
arpi
parents: 7452
diff changeset
169 {"vc", &video_codec_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
170
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
171 // postprocessing:
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
172 {"divxq", "-divxq has been renamed to -pp (postprocessing), use -pp.\n",
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
173 CONF_TYPE_PRINT, 0, 0, 0, NULL},
9531
46340b0f5a91 fix for a couple of linking problems patch by (Ambrose Li <a.c.li at ieee dot org>)
michael
parents: 9349
diff changeset
174 #ifdef USE_LIBAVCODEC
10756
e40dee59f3ba remove read/revert hack
alex
parents: 10753
diff changeset
175 {"pp", &divx_quality, CONF_TYPE_INT, 0, 0, 0, NULL},
9531
46340b0f5a91 fix for a couple of linking problems patch by (Ambrose Li <a.c.li at ieee dot org>)
michael
parents: 9349
diff changeset
176 #endif
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
177 #ifdef HAVE_ODIVX_POSTPROCESS
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
178 {"oldpp", &use_old_pp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
179 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
180 {"oldpp", "MPlayer was compiled without the OpenDivX library.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
181 #endif
11261
835822ce4bb1 -vop ---> -vf
diego
parents: 11234
diff changeset
182 {"npp", "-npp has been removed, use -vf pp and read the fine manual.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
11141
1ed8e514c725 Fix compilation when libavcodec is missing.
attila
parents: 11111
diff changeset
183 #ifdef FF_POSTPROCESS
8736
michael
parents: 8627
diff changeset
184 {"pphelp", &pp_help, CONF_TYPE_PRINT_INDIRECT, CONF_NOCFG, 0, 0, NULL},
9531
46340b0f5a91 fix for a couple of linking problems patch by (Ambrose Li <a.c.li at ieee dot org>)
michael
parents: 9349
diff changeset
185 #endif
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
186
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
187 // scaling:
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
188 {"sws", &sws_flags, CONF_TYPE_INT, 0, 0, 2, NULL},
4294
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
189 {"ssf", scaler_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
5904
c37b0c8a9d4c -xy,-zoom,-flip available in mencoder too
arpi
parents: 5669
diff changeset
190 {"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1, NULL},
c37b0c8a9d4c -xy,-zoom,-flip available in mencoder too
arpi
parents: 5669
diff changeset
191 {"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0, NULL},
c37b0c8a9d4c -xy,-zoom,-flip available in mencoder too
arpi
parents: 5669
diff changeset
192 {"aspect", &movie_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
c37b0c8a9d4c -xy,-zoom,-flip available in mencoder too
arpi
parents: 5669
diff changeset
193 {"noaspect", &movie_aspect, CONF_TYPE_FLAG, 0, 0, 0, NULL},
7452
b062be2c1423 This patch allows you to use fractional values for specifying a zoom.
arpi
parents: 7451
diff changeset
194 {"xy", &screen_size_xy, CONF_TYPE_FLOAT, CONF_RANGE, 0.001, 4096, NULL},
5904
c37b0c8a9d4c -xy,-zoom,-flip available in mencoder too
arpi
parents: 5669
diff changeset
195
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
196 {"flip", &flip, CONF_TYPE_FLAG, 0, -1, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
197 {"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0, NULL},
12408
ad1a2bad9248 typos, wording and mistakes pointed out by the wanderer
diego
parents: 12407
diff changeset
198 {"tsfastparse", "-tsfastparse is no longer a valid option.\n", CONF_TYPE_PRINT, CONF_NOCFG ,0,0, NULL
10688
c2331e3ef96a - re-added the old and (no more used) option -tsfastparse with a
arpi
parents: 10649
diff changeset
199 },
c2331e3ef96a - re-added the old and (no more used) option -tsfastparse with a
arpi
parents: 10649
diff changeset
200 {"tsprog", &ts_prog, CONF_TYPE_INT, CONF_RANGE, 0, 65534, NULL},
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
201 #define TS_MAX_PROBE_SIZE 2000000 /* don't forget to change this in libmpdemux/demux_ts.c too */
11190
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
202 {"tsprobe", &ts_probe, CONF_TYPE_POSITION, 0, 0, TS_MAX_PROBE_SIZE, NULL},
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
203 {"tskeepbroken", &ts_keep_broken, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
204
10562
4cf6eae8b41e Moved -slices to cfg-common.h.
diego
parents: 10560
diff changeset
205 // draw by slices or whole frame (useful with libmpeg2/libavcodec)
4cf6eae8b41e Moved -slices to cfg-common.h.
diego
parents: 10560
diff changeset
206 {"slices", &vd_use_slices, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4cf6eae8b41e Moved -slices to cfg-common.h.
diego
parents: 10560
diff changeset
207 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4cf6eae8b41e Moved -slices to cfg-common.h.
diego
parents: 10560
diff changeset
208
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
209 #ifdef USE_LIBAVCODEC
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
210 {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
211 #endif
11436
6afc2d6f5a08 XviD Api4 support
iive
parents: 11282
diff changeset
212 #if defined(HAVE_XVID3) || defined(HAVE_XVID4)
6756
6af6d7b40638 Add direct rendering method 2
albeu
parents: 6671
diff changeset
213 {"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
6af6d7b40638 Add direct rendering method 2
albeu
parents: 6671
diff changeset
214 #endif
11759
29eea271490e add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents: 11592
diff changeset
215 {"codecs-file", &codecs_file, CONF_TYPE_STRING, 0, 0, 0, NULL},
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
216 // ------------------------- subtitles options --------------------
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
217
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
218 #ifdef USE_SUB
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9841
diff changeset
219 {"sub", &sub_name, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
10649
857a34ff479d Fixes FriBiDi support and extends it with configure options. Patch by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10598
diff changeset
220 #ifdef USE_FRIBIDI
11282
119703388a95 _ ---> - in option names, approved by Alex.
diego
parents: 11261
diff changeset
221 {"fribidi-charset", &fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL},
119703388a95 _ ---> - in option names, approved by Alex.
diego
parents: 11261
diff changeset
222 {"flip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL},
119703388a95 _ ---> - in option names, approved by Alex.
diego
parents: 11261
diff changeset
223 {"noflip-hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL},
13679
59bb11213d11 correctly display the commas of most hebrew subtitles on the left side
faust3
parents: 13544
diff changeset
224 {"flip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 1, 0, NULL},
59bb11213d11 correctly display the commas of most hebrew subtitles on the left side
faust3
parents: 13544
diff changeset
225 {"noflip-hebrew-commas", &fribidi_flip_commas, CONF_TYPE_FLAG, 0, 0, 1, NULL},
10649
857a34ff479d Fixes FriBiDi support and extends it with configure options. Patch by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10598
diff changeset
226 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
227 {"fribidi-charset", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
228 {"flip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
229 {"noflip-hebrew", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
13679
59bb11213d11 correctly display the commas of most hebrew subtitles on the left side
faust3
parents: 13544
diff changeset
230 {"flip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
59bb11213d11 correctly display the commas of most hebrew subtitles on the left side
faust3
parents: 13544
diff changeset
231 {"noflip-hebrew-commas", "MPlayer was compiled without FriBiDi support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
10649
857a34ff479d Fixes FriBiDi support and extends it with configure options. Patch by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10598
diff changeset
232 #endif
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
233 #ifdef USE_ICONV
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
234 {"subcp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
235 #endif
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
236 {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
237 {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0, NULL},
10485
c09a68c1b949 some missing 'no' pairs of flags
alex
parents: 10338
diff changeset
238 {"autosub", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
239 {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
240 {"unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
241 {"nounicode", &sub_unicode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
242 {"utf8", &sub_utf8, CONF_TYPE_FLAG, 0, 0, 1, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
243 {"noutf8", &sub_utf8, CONF_TYPE_FLAG, 0, 1, 0, NULL},
11573
b293b4eb2c8c Forced subs support for mencoder
attila
parents: 11436
diff changeset
244 {"forcedsubsonly", &forced_subs_only, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
245 // specify IFO file for VOBSUB subtitle
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
246 {"ifo", &spudec_ifo, CONF_TYPE_STRING, 0, 0, 0, NULL},
6784
b38e38b6f88f DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents: 6756
diff changeset
247 // enable Closed Captioning display
b38e38b6f88f DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents: 6756
diff changeset
248 {"subcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
10485
c09a68c1b949 some missing 'no' pairs of flags
alex
parents: 10338
diff changeset
249 {"nosubcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 1, 0, NULL},
8882
1c44c46ed57f Overlapping subs are a feature mainly present in subtitling
arpi
parents: 8872
diff changeset
250 {"overlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 2, NULL},
8361
2202c00001e3 overlapping subtitles support is now optional, can be disabled (-nooverlapsub)
arpi
parents: 7995
diff changeset
251 {"nooverlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL},
8617
6ffbe7608013 Me: -sub-bg-* would be nicer. "Background" is usually shortened as "bg", not "bkg".
rathann
parents: 8601
diff changeset
252 {"sub-bg-color", &sub_bg_color, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
6ffbe7608013 Me: -sub-bg-* would be nicer. "Background" is usually shortened as "bg", not "bkg".
rathann
parents: 8601
diff changeset
253 {"sub-bg-alpha", &sub_bg_alpha, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
9126
7a06258271d6 Add a command line option (-sub-no-text-pp) to disable subtitles
arpi
parents: 9077
diff changeset
254 {"sub-no-text-pp", &sub_no_text_pp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
9893
eb274fd5e84e option for sub match fuzziness level
henry
parents: 9884
diff changeset
255 {"sub-fuzziness", &sub_match_fuzziness, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
256 #endif
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
257 #ifdef USE_OSD
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
258 {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
259 {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
260 {"subpos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
8872
1cd7fd7d4d30 5l to whoever left this out
rfelker
parents: 8782
diff changeset
261 {"subalign", &sub_alignment, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
8583
4c18c4e7f34e -subwidth
arpi
parents: 8531
diff changeset
262 {"subwidth", &sub_width_p, CONF_TYPE_INT, CONF_RANGE, 10, 100, NULL},
9077
d430529c5b4b Improvements to spudec (DVD/VobSub) subtitle code:
rfelker
parents: 9065
diff changeset
263 {"spualign", &spu_alignment, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL},
d430529c5b4b Improvements to spudec (DVD/VobSub) subtitle code:
rfelker
parents: 9065
diff changeset
264 {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
d430529c5b4b Improvements to spudec (DVD/VobSub) subtitle code:
rfelker
parents: 9065
diff changeset
265 {"spugauss", &spu_gaussvar, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 3.0, NULL},
7122
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
266 #ifdef HAVE_FREETYPE
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
267 {"subfont-encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
268 {"subfont-text-scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
269 {"subfont-osd-scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
270 {"subfont-blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
271 {"subfont-outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0, 8, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
272 {"subfont-autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
0dc9cb756b68 freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents: 7114
diff changeset
273 #endif
11582
ce9c964c66c3 Fontconfig support based on patch by Arwed von Merkatz <v.merkatz@gmx.net>, but slightly reworked
alex
parents: 11573
diff changeset
274 #ifdef HAVE_FONTCONFIG
ce9c964c66c3 Fontconfig support based on patch by Arwed von Merkatz <v.merkatz@gmx.net>, but slightly reworked
alex
parents: 11573
diff changeset
275 {"fontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ce9c964c66c3 Fontconfig support based on patch by Arwed von Merkatz <v.merkatz@gmx.net>, but slightly reworked
alex
parents: 11573
diff changeset
276 {"nofontconfig", &font_fontconfig, CONF_TYPE_FLAG, 0, 1, 0, NULL},
ce9c964c66c3 Fontconfig support based on patch by Arwed von Merkatz <v.merkatz@gmx.net>, but slightly reworked
alex
parents: 11573
diff changeset
277 #else
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
278 {"fontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
279 {"nofontconfig", "MPlayer was compiled without fontconfig support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
11582
ce9c964c66c3 Fontconfig support based on patch by Arwed von Merkatz <v.merkatz@gmx.net>, but slightly reworked
alex
parents: 11573
diff changeset
280 #endif
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5626
diff changeset
281 #endif
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
282
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
283 #else
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
284
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
285 #include "config.h"
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
286
11875
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
287 extern int quiet;
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
288 extern int verbose;
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 11775
diff changeset
289
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
290 // codec/filter opts: (defined at libmpcodecs/vd.c)
7452
b062be2c1423 This patch allows you to use fractional values for specifying a zoom.
arpi
parents: 7451
diff changeset
291 extern float screen_size_xy;
7451
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7180
diff changeset
292 extern float movie_aspect;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7180
diff changeset
293 extern int softzoom;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7180
diff changeset
294 extern int flip;
10562
4cf6eae8b41e Moved -slices to cfg-common.h.
diego
parents: 10560
diff changeset
295 extern int vd_use_slices;
10756
e40dee59f3ba remove read/revert hack
alex
parents: 10753
diff changeset
296 extern int divx_quality;
7451
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7180
diff changeset
297
11759
29eea271490e add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents: 11592
diff changeset
298 /* defined in codec-cfg.c */
29eea271490e add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents: 11592
diff changeset
299 extern char * codecs_file;
29eea271490e add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents: 11592
diff changeset
300
12408
ad1a2bad9248 typos, wording and mistakes pointed out by the wanderer
diego
parents: 12407
diff changeset
301 /* from dec_audio, currently used for ac3surround decoder only */
7604
32efb806436e aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents: 7529
diff changeset
302 extern int audio_output_channels;
32efb806436e aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents: 7529
diff changeset
303
10121
d42177a0da2a Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents: 9959
diff changeset
304 #ifdef MPLAYER_NETWORK
6671
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
305 /* defined in network.c */
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
306 extern char *network_username;
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
307 extern char *network_password;
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
308 extern int network_bandwidth;
11228
f25d54466044 User settable http user-agent. Patch by Per Wigren
alex
parents: 11190
diff changeset
309 extern char *network_useragent;
11583
2af52902e7dc Send HTTP Cookies (reading from mozilla/netscape files) support by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>. Disabled by default.
alex
parents: 11582
diff changeset
310 extern int network_cookies_enabled;
2af52902e7dc Send HTTP Cookies (reading from mozilla/netscape files) support by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>. Disabled by default.
alex
parents: 11582
diff changeset
311 extern char *cookies_file;
9691
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
312
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
313 extern int network_prefer_ipv4;
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
314 extern int network_ipv4_only_proxy;
ed72c158215d Added IPv6 support, patch by Dave Lambley <mplayer-dev-eng@dlambley.freeserve.co.uk>
bertrand
parents: 9663
diff changeset
315
6671
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
316 #endif
7c4663f0a8a1 cosmetix, merge streaming vars extern declarations into cfg-common.h, where they IMHO belong.
atmos4
parents: 6646
diff changeset
317
12285
67b8d64af8c7 a52 dynamic range compression support by Peter Gansterer
alex
parents: 12061
diff changeset
318 extern float a52_drc_level;
67b8d64af8c7 a52 dynamic range compression support by Peter Gansterer
alex
parents: 12061
diff changeset
319
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
320 /* defined in libmpdemux: */
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
321 extern int hr_mp3_seek;
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
322 extern m_option_t demux_rawaudio_opts[];
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
323 extern m_option_t demux_rawvideo_opts[];
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
324 extern m_option_t cdda_opts[];
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
325
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
326 extern char* audio_stream;
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
327 extern char* sub_stream;
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
328 extern int demuxer_type, audio_demuxer_type, sub_demuxer_type;
10688
c2331e3ef96a - re-added the old and (no more used) option -tsfastparse with a
arpi
parents: 10649
diff changeset
329 extern int ts_prog;
11190
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
330 extern int ts_keep_broken;
dad43bc55cfc big demux_ts fix from Nico <nsabbi@libero.it>
attila
parents: 11141
diff changeset
331 extern off_t ts_probe;
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7835
diff changeset
332
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
333 #include "libmpdemux/tv.h"
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
334
8531
1aa2c9b460af Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents: 8361
diff changeset
335 #ifdef USE_EDL
1aa2c9b460af Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents: 8361
diff changeset
336 extern char* edl_filename;
1aa2c9b460af Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents: 8361
diff changeset
337 extern char* edl_output_filename;
1aa2c9b460af Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents: 8361
diff changeset
338 #endif
1aa2c9b460af Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents: 8361
diff changeset
339
2831
7746bf29000a tv.h has its own USE_TV check
arpi
parents: 2827
diff changeset
340 #ifdef USE_TV
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
341 m_option_t tvopts_conf[]={
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
342 {"on", "-tv on is deprecated, use tv:// instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5507
diff changeset
343 {"immediatemode", &tv_param_immediate, CONF_TYPE_FLAG, 0, 0, 0, NULL},
5089
d28504b410ad tv -noaudio support by Charles Henrich
alex
parents: 4551
diff changeset
344 {"noaudio", &tv_param_noaudio, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5507
diff changeset
345 {"audiorate", &tv_param_audiorate, CONF_TYPE_INT, 0, 0, 0, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
346 {"driver", &tv_param_driver, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
347 {"device", &tv_param_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
348 {"freq", &tv_param_freq, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
349 {"channel", &tv_param_channel, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
350 {"chanlist", &tv_param_chanlist, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
351 {"norm", &tv_param_norm, CONF_TYPE_STRING, 0, 0, 0, NULL},
10537
31f12f99118b v4l2 support
henry
parents: 10485
diff changeset
352 #ifdef HAVE_TV_V4L2
31f12f99118b v4l2 support
henry
parents: 10485
diff changeset
353 {"normid", &tv_param_normid, CONF_TYPE_INT, 0, 0, 0, NULL},
31f12f99118b v4l2 support
henry
parents: 10485
diff changeset
354 #endif
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
355 {"width", &tv_param_width, CONF_TYPE_INT, 0, 0, 4096, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
356 {"height", &tv_param_height, CONF_TYPE_INT, 0, 0, 4096, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
357 {"input", &tv_param_input, CONF_TYPE_INT, 0, 0, 20, NULL},
10598
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10594
diff changeset
358 {"outfmt", &tv_param_outfmt, CONF_TYPE_IMGFMT, 0, 0, 0, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
359 {"fps", &tv_param_fps, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL},
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8617
diff changeset
360 {"channels", &tv_param_channels, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
9663
596ad944a65e color equalizer for tv input
henry
parents: 9620
diff changeset
361 {"brightness", &tv_param_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
596ad944a65e color equalizer for tv input
henry
parents: 9620
diff changeset
362 {"contrast", &tv_param_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
596ad944a65e color equalizer for tv input
henry
parents: 9620
diff changeset
363 {"hue", &tv_param_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
596ad944a65e color equalizer for tv input
henry
parents: 9620
diff changeset
364 {"saturation", &tv_param_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
10538
dd2572331142 10l - some forgotten ifdefs
henry
parents: 10537
diff changeset
365 #if defined(HAVE_TV_V4L) || defined(HAVE_TV_V4L2)
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
366 {"amode", &tv_param_amode, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
367 {"volume", &tv_param_volume, CONF_TYPE_INT, CONF_RANGE, 0, 65535, NULL},
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
368 {"bass", &tv_param_bass, CONF_TYPE_INT, CONF_RANGE, 0, 65535, NULL},
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
369 {"treble", &tv_param_treble, CONF_TYPE_INT, CONF_RANGE, 0, 65535, NULL},
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
370 {"balance", &tv_param_balance, CONF_TYPE_INT, CONF_RANGE, 0, 65535, NULL},
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7122
diff changeset
371 {"forcechan", &tv_param_forcechan, CONF_TYPE_INT, CONF_RANGE, 1, 2, NULL},
7835
d489890c59d3 add an option to force audio recording when a tv card reports no audio sources
henry
parents: 7614
diff changeset
372 {"forceaudio", &tv_param_force_audio, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7867
diff changeset
373 {"buffersize", &tv_param_buffer_size, CONF_TYPE_INT, CONF_RANGE, 16, 1024, NULL},
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9610
diff changeset
374 {"mjpeg", &tv_param_mjpeg, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9610
diff changeset
375 {"decimation", &tv_param_decimation, CONF_TYPE_INT, CONF_RANGE, 1, 4, NULL},
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9610
diff changeset
376 {"quality", &tv_param_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
11775
66e491c35dc8 ALSA 1.x audio out driver
henry
parents: 11759
diff changeset
377 #if defined(HAVE_ALSA9) || defined(HAVE_ALSA1X)
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6927
diff changeset
378 {"alsa", &tv_param_alsa, CONF_TYPE_FLAG, 0, 0, 1, NULL},
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6927
diff changeset
379 #endif
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6927
diff changeset
380 {"adevice", &tv_param_adevice, CONF_TYPE_STRING, 0, 0, 0, NULL},
10822
6377c7d0459e audio id setting support for bsdbt848 by Nikolay Nikolaev <nicknickolaev@yahoo.com>
alex
parents: 10756
diff changeset
381 #endif
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6927
diff changeset
382 {"audioid", &tv_param_audio_id, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
383 {NULL, NULL, 0, 0, 0, 0, NULL}
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
384 };
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
385 #endif
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
386
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
387 #ifdef HAS_DVBIN_SUPPORT
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
388 #include "libmpdemux/dvbin.h"
10560
11826d9f90c7 this patch fixes
arpi
parents: 10538
diff changeset
389 extern m_config_t dvbin_opts_conf[];
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
390 #endif
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
391
11111
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
392 #ifdef USE_FRIBIDI
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
393 extern char *fribidi_charset;
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
394 extern int flip_hebrew;
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
395 #endif
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
396
5c5579281819 10l found by Raindel Shachar <raindel@techunix.technion.ac.il>
alex
parents: 10822
diff changeset
397
9711
f7295ec4fb17 New option -audiofile-cache to enable a cache for the stream used by
albeu
parents: 9691
diff changeset
398 extern int audio_stream_cache;
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9593
diff changeset
399
4294
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
400 extern int sws_chr_vshift;
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
401 extern int sws_chr_hshift;
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
402 extern float sws_chr_gblur;
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
403 extern float sws_lum_gblur;
4297
29fef3982238 15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
michael
parents: 4294
diff changeset
404 extern float sws_chr_sharpen;
29fef3982238 15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
michael
parents: 4294
diff changeset
405 extern float sws_lum_sharpen;
4294
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
406
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
407 m_option_t scaler_filter_conf[]={
4294
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
408 {"lgb", &sws_lum_gblur, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL},
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
409 {"cgb", &sws_chr_gblur, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL},
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
410 {"cvs", &sws_chr_vshift, CONF_TYPE_INT, 0, 0, 0, NULL},
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
411 {"chs", &sws_chr_hshift, CONF_TYPE_INT, 0, 0, 0, NULL},
4297
29fef3982238 15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
michael
parents: 4294
diff changeset
412 {"ls", &sws_lum_sharpen, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL},
29fef3982238 15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
michael
parents: 4294
diff changeset
413 {"cs", &sws_chr_sharpen, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL},
4294
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
414 {NULL, NULL, 0, 0, 0, 0, NULL}
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
415 };
21dbbbbd5479 a few filters (should be removed/merged when arpis videofilter stuff is finished)
michael
parents: 4291
diff changeset
416
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
417 /* VIVO demuxer options: */
3503
7aed2edd99ab -vivo version option added
alex
parents: 3502
diff changeset
418 extern int vivo_param_version;
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
419 extern char *vivo_param_acodec;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
420 extern int vivo_param_abitrate;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
421 extern int vivo_param_samplerate;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
422 extern int vivo_param_bytesperblock;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
423 extern int vivo_param_width;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
424 extern int vivo_param_height;
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
425 extern int vivo_param_vformat;
9753
cd3b8691e930 -vcd, -dvd, -dvdnav, -tv on, -cuefile and -mf on are deprecated
albeu
parents: 9711
diff changeset
426 extern char *dvd_device, *cdrom_device;
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
427
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
428 m_option_t vivoopts_conf[]={
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
429 {"version", &vivo_param_version, CONF_TYPE_INT, 0, 0, 0, NULL},
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
430 /* audio options */
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
431 {"acodec", &vivo_param_acodec, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
432 {"abitrate", &vivo_param_abitrate, CONF_TYPE_INT, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
433 {"samplerate", &vivo_param_samplerate, CONF_TYPE_INT, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
434 {"bytesperblock", &vivo_param_bytesperblock, CONF_TYPE_INT, 0, 0, 0, NULL},
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
435 /* video options */
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
436 {"width", &vivo_param_width, CONF_TYPE_INT, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
437 {"height", &vivo_param_height, CONF_TYPE_INT, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
438 {"vformat", &vivo_param_vformat, CONF_TYPE_INT, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 3975
diff changeset
439 {NULL, NULL, 0, 0, 0, 0, NULL}
3502
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
440 };
1ff0ff94ac91 added -vivo subconfig
alex
parents: 3460
diff changeset
441
4551
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
442 extern int mf_w;
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
443 extern int mf_h;
5352
cf2882606e72 Fileslist support for mf demuxer, delemited by ',' and change mf fps to float.
atmos4
parents: 5089
diff changeset
444 extern float mf_fps;
4551
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
445 extern char * mf_type;
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9531
diff changeset
446 extern m_obj_settings_t* vf_settings;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9531
diff changeset
447 extern m_obj_list_t vf_obj_list;
4551
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
448
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
449 m_option_t mfopts_conf[]={
12407
574b1ed2f9a3 spelling, wording, consistency in comments and printed messages
diego
parents: 12285
diff changeset
450 {"on", "-mf on is deprecated, use mf:// instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL},
4551
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
451 {"w", &mf_w, CONF_TYPE_INT, 0, 0, 0, NULL},
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
452 {"h", &mf_h, CONF_TYPE_INT, 0, 0, 0, NULL},
5352
cf2882606e72 Fileslist support for mf demuxer, delemited by ',' and change mf fps to float.
atmos4
parents: 5089
diff changeset
453 {"fps", &mf_fps, CONF_TYPE_FLOAT, 0, 0, 0, NULL},
4551
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
454 {"type", &mf_type, CONF_TYPE_STRING, 0, 0, 0, NULL},
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
455 {NULL, NULL, 0, 0, 0, 0, NULL}
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
456 };
716b00618bfc add mfi support
pontscho
parents: 4355
diff changeset
457
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9531
diff changeset
458 extern m_obj_settings_t* vo_plugin_args;
5507
d0d029fda134 video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents: 5475
diff changeset
459
9349
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
460 #include "libaf/af.h"
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
461 extern af_cfg_t af_cfg; // Audio filter configuration, defined in libmpcodecs/dec_audio.c
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
462 m_option_t audio_filter_conf[]={
9349
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
463 {"list", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
464 {"force", &af_cfg.force, CONF_TYPE_INT, CONF_RANGE, 0, 7, NULL},
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
465 {NULL, NULL, 0, 0, 0, 0, NULL}
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
466 };
7422a4240659 1000l (af moved to common)
arpi
parents: 9126
diff changeset
467
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
468 #ifdef USE_LIBAVCODEC
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
469 extern m_option_t lavc_decode_opts_conf[];
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
470 #endif
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
471
11436
6afc2d6f5a08 XviD Api4 support
iive
parents: 11282
diff changeset
472 #if defined(HAVE_XVID3) || defined(HAVE_XVID4)
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
473 extern m_option_t xvid_dec_opts[];
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5974
diff changeset
474 #endif
6756
6af6d7b40638 Add direct rendering method 2
albeu
parents: 6671
diff changeset
475
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
476 int dvd_parse_chapter_range(m_option_t*, const char*);
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10562
diff changeset
477
6756
6af6d7b40638 Add direct rendering method 2
albeu
parents: 6671
diff changeset
478 #endif