summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-04 21:26:45 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-04 21:26:45 +0000
commit17d676a2437a71a04b91ebd10de6384c778c183b (patch)
treeef8c0d8bbefd0c89972d0ef7bac9bddb7e1cc8b3 /cfg-mencoder.h
parentfc14429eb779bf6b966c43722e252373595829c4 (diff)
downloadmpv-17d676a2437a71a04b91ebd10de6384c778c183b.tar.bz2
mpv-17d676a2437a71a04b91ebd10de6384c778c183b.tar.xz
re-ordering options, add comemnts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5975 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index 2ac54db7f8..85d9c974cb 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -92,26 +92,25 @@ static config_t mencoder_opts[]={
{"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this must be the first!!! */
{"endpos", parse_end_at, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL},
-
+
+ // set output framerate - recommended for variable fps (.asf etc) files
+ // and for 29.97fps progressive mpeg2 streams
{"ofps", &force_ofps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL},
{"o", &out_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
+ // limit number of skippable frames after a non-skipped one
{"skiplimit", &skip_limit, CONF_TYPE_INT, 0, 0, 0, NULL},
{"noskiplimit", &skip_limit, CONF_TYPE_FLAG, 0, 0, -1, NULL},
{"noskip", &skip_limit, CONF_TYPE_FLAG, 0, 0, 0, NULL},
{"x", "This option is obsolete, use -vop scale=w:h for scaling\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
-
{"xsize", "This option is obsolete, use -vop crop=w:h:x0:y0 for cropping\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
- {"mp3file", &mp3_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
- {"ac3file", &ac3_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
-
-// {"oac", &out_audio_codec, CONF_TYPE_STRING, 0, 0, 0, NULL},
-// {"ovc", &out_video_codec, CONF_TYPE_STRING, 0, 0, 0, NULL},
+ // outut audio/video codec selection
{"oac", oac_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
{"ovc", ovc_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+ // override FOURCC in output file
{"ffourcc", &force_fourcc, CONF_TYPE_STRING, 0, 4, 4, NULL},
{"pass", &pass, CONF_TYPE_INT, CONF_RANGE,0,2, NULL},