annotate cfg-mplayer.h @ 549:c97496b240c1

new options: -dumpaudio and -dumpvideo
author arpi_esp
date Fri, 20 Apr 2001 18:28:13 +0000
parents 22ed5f5821e2
children c2a449f90087
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
147
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
1 /*
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
2 * config for cfgparser
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
3 */
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
4
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
5 #ifdef HAVE_FBDEV
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
6 extern char *fb_dev_name;
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
7 extern char *fb_mode_cfgfile;
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
8 extern char *fb_mode_name;
448
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
9 extern char *monitor_hfreq_str;
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
10 extern char *monitor_vfreq_str;
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
11 extern char *monitor_dotclock_str;
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
12 #endif
526
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
13 #ifdef HAVE_PNG
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
14 extern int z_compression;
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
15 #endif
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
16
147
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
17 struct config conf[]={
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
18 /* name, pointer, type, flags, min, max */
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
19 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, 0, 0, 0}, /* this must be the first!!! */
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
20 {"o", "Option -o has been renamed to -vo (video-out), use -vo !\n",
153
8e55121885b2 new configfile/cmdline parser
arpi_esp
parents: 151
diff changeset
21 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
22 {"vo", &video_driver, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
23 {"dsp", &dsp, CONF_TYPE_STRING, 0, 0, 0},
460
2056ddd20c50 add mixer support
pontscho
parents: 458
diff changeset
24 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0},
2056ddd20c50 add mixer support
pontscho
parents: 458
diff changeset
25 {"master", &mixer_usemaster, CONF_TYPE_FLAG, 0, 0, 1},
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
26 #ifdef HAVE_LIBCSS
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
27 {"dvd", &dvd_device, CONF_TYPE_STRING, 0, 0, 0},
546
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 526
diff changeset
28 {"dvdkey", &dvdimportkey, CONF_TYPE_STRING, 0, 0, 0},
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
29 #else
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
30 {"dvd", "DVD support was not compiled in. See file DOCS/DVD.\n",
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
31 CONF_TYPE_PRINT, CONF_NOCFG, 0 , 0},
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
32 #endif
888a85621f50 preliminary DVD support using libcss
lgb
parents: 460
diff changeset
33
225
62ec84961b27 vo_fbdev added
szabii
parents: 215
diff changeset
34 #ifdef HAVE_FBDEV
448
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
35 {"fb", &fb_dev_name, CONF_TYPE_STRING, 0, 0, 0},
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
36 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0},
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
37 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0},
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
38 {"monitor_hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0},
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
39 {"monitor_vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0},
198b46b739d8 qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents: 445
diff changeset
40 {"monitor_dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0},
225
62ec84961b27 vo_fbdev added
szabii
parents: 215
diff changeset
41 #endif
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
42 {"encode", &encode_name, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
43 {"sub", &sub_name, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
44 {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
45 {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0},
515
d82c71fefdda add noautosub option
pontscho
parents: 492
diff changeset
46 {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
47 {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
48 {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
49 {"bg", &play_in_bg, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
50 {"nobg", &play_in_bg, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
51 {"sb", &seek_to_byte, CONF_TYPE_INT, CONF_MIN, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
52 // {"ss", &seek_to_sec, CONF_TYPE_INT, CONF_MIN, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
53 {"sound", &has_audio, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
54 {"nosound", &has_audio, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
55 {"abs", &audio_buffer_size, CONF_TYPE_INT, CONF_MIN, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
56 {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
57 {"bps", &pts_from_bps, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
58 {"nobps", &pts_from_bps, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
59 {"alsa", &alsa, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
60 {"noalsa", &alsa, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
61 {"ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
62 {"noni", &force_ni, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
63 {"aid", &audio_id, CONF_TYPE_INT, CONF_RANGE, 0, 256},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
64 {"vid", &video_id, CONF_TYPE_INT, CONF_RANGE, 0, 256},
549
c97496b240c1 new options: -dumpaudio and -dumpvideo
arpi_esp
parents: 546
diff changeset
65
c97496b240c1 new options: -dumpaudio and -dumpvideo
arpi_esp
parents: 546
diff changeset
66 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0},
c97496b240c1 new options: -dumpaudio and -dumpvideo
arpi_esp
parents: 546
diff changeset
67 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1},
c97496b240c1 new options: -dumpaudio and -dumpvideo
arpi_esp
parents: 546
diff changeset
68 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2},
c97496b240c1 new options: -dumpaudio and -dumpvideo
arpi_esp
parents: 546
diff changeset
69
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
70 // {"auds", &avi_header.audio_codec, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
71 // {"vids", &avi_header.video_codec, CONF_TYPE_STRING, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
72 {"mc", &default_max_pts_correction, CONF_TYPE_FLOAT, CONF_RANGE, 0, 10},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
73 {"fps", &force_fps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
74 {"afm", &audio_format, CONF_TYPE_INT, CONF_RANGE, 1, 6},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
75 {"vcd", &vcd_track, CONF_TYPE_INT, CONF_RANGE, 1, 99},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
76 {"divxq", "Option -divxq has been renamed to -pp (postprocessing), use -pp !\n",
153
8e55121885b2 new configfile/cmdline parser
arpi_esp
parents: 151
diff changeset
77 CONF_TYPE_PRINT, 0, 0, 0},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
78 {"pp", &divx_quality, CONF_TYPE_INT, CONF_RANGE, 0, 63},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
79 {"br", &encode_bitrate, CONF_TYPE_INT, CONF_RANGE, 10000, 10000000},
526
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
80 #ifdef HAVE_PNG
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
81 {"z", &z_compression, CONF_TYPE_INT, CONF_RANGE, 0, 9},
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
82 #endif
337
3ca0b1b739a5 changed fs+vm+zoom flags for libvo
arpi_esp
parents: 303
diff changeset
83
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
84 {"x", &screen_size_x, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
85 {"y", &screen_size_y, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
86 {"xy", &screen_size_xy, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
207
8626c23f4a47 Addes a -vm option, which when used together with -fs and -vo x11 will
mgraffam
parents: 162
diff changeset
87 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1},
337
3ca0b1b739a5 changed fs+vm+zoom flags for libvo
arpi_esp
parents: 303
diff changeset
88 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
89 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
90 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0},
337
3ca0b1b739a5 changed fs+vm+zoom flags for libvo
arpi_esp
parents: 303
diff changeset
91 {"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1},
3ca0b1b739a5 changed fs+vm+zoom flags for libvo
arpi_esp
parents: 303
diff changeset
92 {"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
93
388
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 385
diff changeset
94 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32},
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
95
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
96 {"idx", &no_index, CONF_TYPE_FLAG, 0, 1, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
97 {"noidx", &no_index, CONF_TYPE_FLAG, 0, 0, 1},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
98 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE, 0, 100},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
99 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, 0, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
100 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
101 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
102 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
103 {NULL, NULL, 0, 0, 0, 0}
147
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
104 };
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
105