Mercurial > mplayer.hg
annotate cfg-mencoder.h @ 3713:bc3ef1f96dc0
this bug (?) was fixed
author | gabucino |
---|---|
date | Mon, 24 Dec 2001 14:40:34 +0000 |
parents | 9092546e7765 |
children | a14b3a600b81 |
rev | line source |
---|---|
2618 | 1 /* |
2 * config for cfgparser | |
3 */ | |
4 | |
2790 | 5 #include "cfg-common.h" |
6 | |
2618 | 7 #ifdef USE_FAKE_MONO |
8 extern int fakemono; // defined in dec_audio.c | |
9 #endif | |
10 #ifdef HAVE_ODIVX_POSTPROCESS | |
11 extern int use_old_pp; | |
12 #endif | |
13 | |
3272 | 14 extern int sws_flags; |
15 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
16 #ifdef HAVE_DIVX4ENCORE |
2626 | 17 struct config divx4opts_conf[]={ |
18 {"br", &divx4_param.bitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000}, | |
19 {"rc_period", &divx4_param.rc_period, CONF_TYPE_INT, 0,0,0}, | |
20 {"rc_reaction_period", &divx4_param.rc_reaction_period, CONF_TYPE_INT, 0,0,0}, | |
21 {"rc_reaction_ratio", &divx4_param.rc_reaction_ratio, CONF_TYPE_INT, 0,0,0}, | |
22 {"min_quant", &divx4_param.min_quantizer, CONF_TYPE_INT, CONF_RANGE,0,32}, | |
23 {"max_quant", &divx4_param.max_quantizer, CONF_TYPE_INT, CONF_RANGE,0,32}, | |
24 {"key", &divx4_param.max_key_interval, CONF_TYPE_INT, CONF_MIN,0,0}, | |
25 {"deinterlace", &divx4_param.deinterlace, CONF_TYPE_FLAG, 0,0,1}, | |
26 {"q", &divx4_param.quality, CONF_TYPE_INT, CONF_RANGE, 1, 5}, | |
2643 | 27 {"crispness", &divx4_crispness, CONF_TYPE_INT, CONF_RANGE,0,100}, |
2626 | 28 {"help", "TODO: divx4opts help!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
29 {NULL, NULL, 0, 0, 0, 0} | |
30 }; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
31 #endif |
2626 | 32 |
3357 | 33 #ifdef HAVE_MP3LAME |
2626 | 34 struct config lameopts_conf[]={ |
35 {"q", &lame_param_quality, CONF_TYPE_INT, CONF_RANGE, 0, 9}, | |
36 {"vbr", &lame_param_vbr, CONF_TYPE_INT, CONF_RANGE, 0, vbr_max_indicator}, | |
37 {"cbr", &lame_param_vbr, CONF_TYPE_FLAG, 0, 0, 0}, | |
3357 | 38 {"abr", &lame_param_vbr, CONF_TYPE_FLAG, 0, 0, vbr_abr}, |
2626 | 39 {"mode", &lame_param_mode, CONF_TYPE_INT, CONF_RANGE, 0, MAX_INDICATOR}, |
40 {"padding", &lame_param_padding, CONF_TYPE_INT, CONF_RANGE, 0, PAD_MAX_INDICATOR}, | |
41 {"br", &lame_param_br, CONF_TYPE_INT, CONF_RANGE, 0, 1024}, | |
42 {"ratio", &lame_param_ratio, CONF_TYPE_INT, CONF_RANGE, 0, 100}, | |
2661 | 43 {"help", "TODO: lameopts help!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
44 {NULL, NULL, 0, 0, 0, 0} | |
45 }; | |
3357 | 46 #endif |
2661 | 47 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
48 #ifdef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
49 struct config lavcopts_conf[]={ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
50 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
51 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
52 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
53 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
54 {NULL, NULL, 0, 0, 0, 0} |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
55 }; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
56 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
57 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
58 #ifdef USE_WIN32DLL |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
59 struct config vfwopts_conf[]={ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
60 {NULL, NULL, 0, 0, 0, 0} |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
61 }; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
62 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
63 |
2661 | 64 struct config ovc_conf[]={ |
3384 | 65 {"copy", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_COPY}, |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
66 {"frameno", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_FRAMENO}, |
2661 | 67 {"divx4", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_DIVX4}, |
3480 | 68 {"raw", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_RAW}, |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
69 {"lavc", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_LIBAVCODEC}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
70 {"help", "\nAvailable codecs:\n copy\n frameno\n divx4\n raw\n lavc\n\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
2661 | 71 {NULL, NULL, 0, 0, 0, 0} |
72 }; | |
73 | |
74 struct config oac_conf[]={ | |
3386 | 75 {"copy", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_COPY}, |
2661 | 76 {"pcm", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_PCM}, |
3357 | 77 #ifdef HAVE_MP3LAME |
2661 | 78 {"mp3lame", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_VBRMP3}, |
79 {"help", "\nAvailable codecs:\n copy\n pcm\n mp3lame\n\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
3357 | 80 #else |
81 {"mp3lame", "MPlayer was compiled without libmp3lame support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
82 {"help", "\nAvailable codecs:\n copy\n pcm\n\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
83 #endif | |
2626 | 84 {NULL, NULL, 0, 0, 0, 0} |
85 }; | |
86 | |
2618 | 87 struct config conf[]={ |
88 /* name, pointer, type, flags, min, max */ | |
89 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, 0, 0, 0}, /* this must be the first!!! */ | |
90 | |
2626 | 91 {"ofps", &force_ofps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0}, |
92 {"o", &out_filename, CONF_TYPE_STRING, 0, 0, 0}, | |
93 | |
3236 | 94 {"x", &vo_w, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, |
95 {"y", &vo_h, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, | |
96 | |
2626 | 97 {"mp3file", &mp3_filename, CONF_TYPE_STRING, 0, 0, 0}, |
98 {"ac3file", &ac3_filename, CONF_TYPE_STRING, 0, 0, 0}, | |
99 | |
2661 | 100 // {"oac", &out_audio_codec, CONF_TYPE_STRING, 0, 0, 0}, |
101 // {"ovc", &out_video_codec, CONF_TYPE_STRING, 0, 0, 0}, | |
102 {"oac", oac_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, | |
103 {"ovc", ovc_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, | |
2643 | 104 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
105 {"ffourcc", &force_fourcc, CONF_TYPE_STRING, 0, 4, 4}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
106 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
107 #ifdef HAVE_DIVX4ENCORE |
2643 | 108 {"pass", &pass, CONF_TYPE_INT, CONF_RANGE,0,2}, |
3376 | 109 {"passlogfile", &passtmpfile, CONF_TYPE_STRING, 0, 0, 0}, |
2626 | 110 |
111 {"divx4opts", divx4opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
112 #endif |
3357 | 113 #ifdef HAVE_MP3LAME |
2626 | 114 {"lameopts", lameopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, |
3357 | 115 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
116 #ifdef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
117 {"lavcopts", lavcopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
118 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
119 #ifdef USE_WIN32DLL |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
120 {"vfwopts", vfwopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0}, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3480
diff
changeset
|
121 #endif |
2618 | 122 |
2790 | 123 #define MAIN_CONF |
2618 | 124 #include "cfg-common.h" |
2790 | 125 #undef MAIN_CONF |
2618 | 126 |
127 // {"quiet", &quiet, CONF_TYPE_FLAG, 0, 0, 1}, | |
128 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE, 0, 100}, | |
129 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, 0, 0, 0}, | |
130 // {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
131 // {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
132 // {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
133 {NULL, NULL, 0, 0, 0, 0} | |
134 }; |