annotate cfg-common.h @ 2845:b512c5b40b0d

c++ compiler would also be handy during build
author eyck
date Sun, 11 Nov 2001 21:08:30 +0000
parents 3e045cebc446
children 60c1b7c0ea21
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[] */
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
2 // ------------------------- stream options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
3
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
4 #ifdef USE_STREAM_CACHE
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
5 {"cache", &stream_cache_size, CONF_TYPE_INT, CONF_RANGE, 4, 65536},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
6 #else
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
7 {"cache", "MPlayer was compiled WITHOUT cache2 support", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
8 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
9 {"vcd", &vcd_track, CONF_TYPE_INT, CONF_RANGE, 1, 99},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
10 #ifdef USE_DVDREAD
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
11 {"dvd", &dvd_title, CONF_TYPE_INT, CONF_RANGE, 1, 99},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
12 {"dvdangle", &dvd_angle, CONF_TYPE_INT, CONF_RANGE, 1, 99},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
13 {"chapter", &dvd_chapter, CONF_TYPE_INT, CONF_RANGE, 1, 99},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
14 #else
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
15 {"dvd", "MPlayer was compiled WITHOUT libdvdread support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
16 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
17
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
18 #ifdef HAVE_LIBCSS
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
19 {"dvdauth", &dvd_auth_device, CONF_TYPE_STRING, 0, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
20 {"dvdkey", &dvdimportkey, CONF_TYPE_STRING, 0, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
21 // {"dvd", "Option -dvd will be \"full disk\" mode, old meaning has been renamed to -dvdauth.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
22 #else
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
23 // {"dvd", "DVD support was not compiled in. See file DOCS/DVD.\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
24 // CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
25 #ifdef USE_DVDREAD
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
26 {"dvdkey", "MPlayer was compiled with libdvdread support, this option not available.\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
27 CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
28 {"dvdauth", "MPlayer was compiled with libdvdread support! Use option -dvd !\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
29 CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
30 #else
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
31 {"dvdkey", "DVD support was not compiled in. See file DOCS/DVD.\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
32 CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
33 {"dvdauth", "DVD support was not compiled in. See file DOCS/DVD.\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
34 CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
35 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
36 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
37
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
38 // ------------------------- demuxer options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
39
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
40 {"bps", &pts_from_bps, CONF_TYPE_FLAG, 0, 0, 1},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
41 {"nobps", &pts_from_bps, CONF_TYPE_FLAG, 0, 1, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
42
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
43 {"ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
44 {"noni", &force_ni, CONF_TYPE_FLAG, 0, 1, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
45
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
46 {"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
47 {"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
48 {"forceidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 2},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
49
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
50 {"aid", &audio_id, CONF_TYPE_INT, CONF_RANGE, 0, 255},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
51 {"vid", &video_id, CONF_TYPE_INT, CONF_RANGE, 0, 255},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
52 {"sid", &dvdsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
53
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
54 // ------------------------- a-v sync options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
55
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2616
diff changeset
56 {"frames", &play_n_frames, CONF_TYPE_INT, CONF_MIN, 0, 0},
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2616
diff changeset
57
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
58 {"mc", &default_max_pts_correction, CONF_TYPE_FLOAT, CONF_RANGE, 0, 10},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
59 {"fps", &force_fps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
60 {"srate", &force_srate, CONF_TYPE_INT, CONF_RANGE, 1000, 8*48000},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
61
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
62 // ------------------------- codec/pp options --------------------
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
63
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
64 #ifdef USE_FAKE_MONO
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
65 {"stereo", &fakemono, CONF_TYPE_INT, CONF_RANGE, 0, 2},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
66 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
67
2827
b4d46817f050 ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents: 2822
diff changeset
68 {"afm", &audio_family, CONF_TYPE_INT, CONF_MIN, 0, 13}, // keep ranges in sync
b4d46817f050 ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents: 2822
diff changeset
69 {"vfm", &video_family, CONF_TYPE_INT, CONF_MIN, 0, 10}, // with codec-cfg.c
2616
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
70 {"ac", &audio_codec, CONF_TYPE_STRING, 0, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
71 {"vc", &video_codec, CONF_TYPE_STRING, 0, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
72
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
73 {"divxq", "Option -divxq has been renamed to -pp (postprocessing), use -pp !\n",
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
74 CONF_TYPE_PRINT, 0, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
75 {"pp", &divx_quality, CONF_TYPE_INT, CONF_MIN, 0, 63},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
76 #ifdef HAVE_ODIVX_POSTPROCESS
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
77 {"oldpp", &use_old_pp, CONF_TYPE_FLAG, 0, 0, 1},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
78 #else
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
79 {"oldpp", "MPlayer was compiled without opendivx library", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
80 #endif
f96462d7453e common options moved out - for mencoder
arpi
parents:
diff changeset
81
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
82 #ifdef USE_TV
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
83 {"tv", tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0},
2822
7679d983c52f displaying msg if no tv support
alex
parents: 2816
diff changeset
84 #else
7679d983c52f displaying msg if no tv support
alex
parents: 2816
diff changeset
85 {"tv", "MPlayer was compiled without TV Interface support", CONF_TYPE_PRINT, 0, 0, 0},
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
86 #endif
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
87
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
88 #else
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
89
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
90 #include "config.h"
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
91
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
92 #include "libmpdemux/tv.h"
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
93
2831
7746bf29000a tv.h has its own USE_TV check
arpi
parents: 2827
diff changeset
94 #ifdef USE_TV
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
95 struct config tvopts_conf[]={
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
96 {"on", &tv_param_on, CONF_TYPE_FLAG, 0, 0, 1},
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
97 {"driver", &tv_param_driver, CONF_TYPE_STRING, 0, 0, 0},
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
98 {"device", &tv_param_device, CONF_TYPE_STRING, 0, 0, 0},
2838
3e045cebc446 changed tv_param_freq to string
alex
parents: 2831
diff changeset
99 {"freq", &tv_param_freq, CONF_TYPE_STRING, 0, 0, 0},
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
100 {"channel", &tv_param_channel, CONF_TYPE_STRING, 0, 0, 0},
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
101 {"norm", &tv_param_norm, CONF_TYPE_STRING, 0, 0, 0},
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
102 {"width", &tv_param_width, CONF_TYPE_INT, 0, 0, 4096},
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
103 {"height", &tv_param_height, CONF_TYPE_INT, 0, 0, 4096},
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
104 {"input", &tv_param_input, CONF_TYPE_INT, 0, 0, 20},
2816
190e713d8e07 supporting -tv outfmt
alex
parents: 2802
diff changeset
105 {"outfmt", &tv_param_outfmt, CONF_TYPE_STRING, 0, 0, 0},
2790
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
106 {NULL, NULL, 0, 0, 0, 0}
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
107 };
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
108 #endif
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
109
98769cea155c added tv subsystem
alex
parents: 2643
diff changeset
110 #endif