summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authorranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-03 16:35:40 +0000
committerranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-03 16:35:40 +0000
commit834c6ad74611e6b9a3df1e71d80f2c899a721ee6 (patch)
treecef1547bd7d182438f2fa37800cc67052a4b7f0f /cfg-mencoder.h
parent0287286214e23cf91d3c81b23ff92edddb6dd73e (diff)
downloadmpv-834c6ad74611e6b9a3df1e71d80f2c899a721ee6.tar.bz2
mpv-834c6ad74611e6b9a3df1e71d80f2c899a721ee6.tar.xz
mencoder lavc audio encoding support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11376 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index 2deaddc81b..658f244bf5 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -108,12 +108,20 @@ m_option_t oac_conf[]={
#else
{"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},
+#endif
{"help", "\nAvailable codecs:\n"
" copy - frame copy, without re-encoding (useful for AC3)\n"
" pcm - uncompressed PCM audio\n"
#ifdef HAVE_MP3LAME
" mp3lame - cbr/abr/vbr MP3 using libmp3lame\n"
#endif
+#ifdef USE_LIBAVCODEC
+ " lavc - ffmpeg audio encoder (mp2, ac3, ...)\n"
+#endif
"\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
};