summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/mplayer.12
-rw-r--r--cfg-mencoder.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/DOCS/mplayer.1 b/DOCS/mplayer.1
index 2fd68aa6fc..42b50079a3 100644
--- a/DOCS/mplayer.1
+++ b/DOCS/mplayer.1
@@ -2123,7 +2123,7 @@ set audio input gain
.IPs fast
switch on faster encoding on subsequent VBR presets modes, slightly lower
quality and higher bitrates.
-.IPs preset
+.IPs preset=<value>
provide the highest possible quality settings.
.RSss
medium: VBR encoding, good quality, 150\-180 kbps bitrate range.
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index 480fc96dab..37660d38a1 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -34,6 +34,9 @@ struct config lameopts_conf[]={
#if HAVE_MP3LAME >= 392
{"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},
#endif
{"help", "TODO: lameopts help!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}