summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-03 10:09:18 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-03 10:09:18 +0000
commit069e8ca739218ee7d78438197a6e1af00d1cfe7c (patch)
tree336ddb1972ff35bb4cae867a1475ba239b044bf4 /cfg-mencoder.h
parentd5c281ef0ff5b9174aa25f44a168ec83f7867099 (diff)
downloadmpv-069e8ca739218ee7d78438197a6e1af00d1cfe7c.tar.bz2
mpv-069e8ca739218ee7d78438197a6e1af00d1cfe7c.tar.xz
spelling, wording, consistency in comments and printed messages
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12408 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h53
1 files changed, 27 insertions, 26 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index 0e8f8a3ceb..97496828fb 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -1,3 +1,4 @@
+
/*
* config for cfgparser
*/
@@ -38,8 +39,8 @@ m_option_t lameopts_conf[]={
{"fast", &lame_param_fast, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"preset", &lame_param_preset, CONF_TYPE_STRING, 0, 0, 0, NULL},
#else
- {"fast", "MPlayer was built without -lameopts fast support (requires libmp3lame >=3.92)!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
- {"preset", "MPlayer was built without -lameopts preset support (requires libmp3lame >=3.92)!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"fast", "MPlayer was built without -lameopts fast support (requires libmp3lame >=3.92).\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"preset", "MPlayer was built without -lameopts preset support (requires libmp3lame >=3.92).\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
#endif
{"help", MSGTR_MEncoderMP3LameHelp, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
@@ -74,29 +75,29 @@ m_option_t ovc_conf[]={
{"qtvideo", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_QTVIDEO, NULL},
{"nuv", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_NUV, NULL},
{"help", "\nAvailable codecs:\n"
- " copy - frame copy, without re-encoding. doesn't work with filters!\n"
- " frameno - special audio-only file for 3-pass encoding, see DOCS!\n"
+ " copy - frame copy, without re-encoding. Doesn't work with filters.\n"
+ " frameno - special audio-only file for 3-pass encoding, see DOCS.\n"
" raw - uncompressed video. Use fourcc option to set format explicitly.\n"
" nuv - nuppel video\n"
#ifdef HAVE_DIVX4ENCORE
#ifdef ENCORE_XVID
- " divx4 - using XviD (divx4linux compat. mode)\n"
+ " divx4 - XviD (divx4linux compatibility mode)\n"
#else
- " divx4 - using divx4linux/divx5linux lib (depends on configuration)\n"
+ " divx4 - divx4linux/divx5linux library (depends on configuration)\n"
#endif
#endif
#ifdef USE_LIBAVCODEC
- " lavc - using libavcodec codecs - best quality!\n"
+ " lavc - libavcodec codecs - best quality!\n"
#endif
#ifdef USE_WIN32DLL
- " vfw - using VfW DLLs, currently only AVID is supported\n"
- " qtvideo - using QuickTime DLLs, currently only SVQ1/3 are supported\n"
+ " vfw - VfW DLLs, currently only AVID is supported.\n"
+ " qtvideo - QuickTime DLLs, currently only SVQ1/3 are supported.\n"
#endif
#ifdef HAVE_LIBDV095
- " libdv - DV encoding using libdv v0.9.5\n"
+ " libdv - DV encoding with libdv v0.9.5\n"
#endif
#if defined(HAVE_XVID3) || defined(HAVE_XVID4)
- " xvid - xvid encoding\n"
+ " xvid - XviD encoding\n"
#endif
"\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
@@ -108,12 +109,12 @@ m_option_t oac_conf[]={
#ifdef HAVE_MP3LAME
{"mp3lame", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_VBRMP3, NULL},
#else
- {"mp3lame", "MPlayer was compiled without libmp3lame support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"mp3lame", "MPlayer was compiled without libmp3lame support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
#endif
#ifdef USE_LIBAVCODEC
{"lavc", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_LAVC, NULL},
#else
- {"lavc", "MPlayer was compiled without libavcodec! See README or DOCS!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"lavc", "MPlayer was compiled without libavcodec. See README or DOCS.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
#endif
{"help", "\nAvailable codecs:\n"
" copy - frame copy, without re-encoding (useful for AC3)\n"
@@ -122,7 +123,7 @@ m_option_t oac_conf[]={
" mp3lame - cbr/abr/vbr MP3 using libmp3lame\n"
#endif
#ifdef USE_LIBAVCODEC
- " lavc - ffmpeg audio encoder (mp2, ac3, ...)\n"
+ " lavc - FFmpeg audio encoder (MP2, AC3, ...)\n"
#endif
"\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
@@ -137,13 +138,13 @@ m_option_t info_conf[]={
{"srcform", &info_sourceform, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"comment", &info_comment, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"help", "\nAvailable INFO fields:\n"
- " name - title of the subject of the file\n"
- " artist - artist or author of the original subject of the file\n"
+ " name - title of the work\n"
+ " artist - artist or author of the work\n"
" genre - original work category\n"
- " subject - contents of the file\n"
- " copyright - copyright information for the file\n"
- " srcform - original form of the material that was digitized\n"
- " comment - general comments about the file or the subject of the file\n"
+ " subject - contents of the work\n"
+ " copyright - copyright information\n"
+ " srcform - original format of the digitzed material\n"
+ " comment - general comments about the work\n"
"\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
};
@@ -168,8 +169,8 @@ m_option_t mencoder_opts[]={
{"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
+ // 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},
@@ -182,8 +183,8 @@ m_option_t mencoder_opts[]={
{"audio-preload", &audio_preload, CONF_TYPE_FLOAT, CONF_RANGE, 0, 2, NULL},
{"audio-delay", &audio_delay, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL},
- {"x", "This option is obsolete, use -vf scale=w:h for scaling.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
- {"xsize", "This option is obsolete, use -vf crop=w:h:x0:y0 for cropping.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"x", "-x is obsolete, use -vf scale=w:h for scaling.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"xsize", "-xsize is obsolete, use -vf crop=w:h:x:y for cropping.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
// output audio/video codec selection
{"oac", oac_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
@@ -198,7 +199,7 @@ m_option_t mencoder_opts[]={
// override avi aspect autodetection
{"force-avi-aspect", &avi_aspect_override, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
- {"pass", "The -pass option is obsolete. Use -lavcopts vpass=n or -divx4opts pass=n!\nRTFM!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"pass", "-pass is obsolete, use -lavcopts vpass=n, -xvidencopts pass=n, -divx4opts pass=n\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{"passlogfile", &passtmpfile, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"vobsubout", &vobsub_out, CONF_TYPE_STRING, 0, 0, 0, NULL},
@@ -226,7 +227,7 @@ m_option_t mencoder_opts[]={
#ifdef USE_LIBAVCODEC
{"lavcopts", lavcopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#else
- {"lavcopts", "MPlayer was compiled without libavcodec! See README or DOCS!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"lavcopts", "MPlayer was compiled without libavcodec. See README or DOCS.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
#endif
#ifdef USE_WIN32DLL
{"vfwopts", vfwopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},