From aa566ac6de7d9a9172a2f55d3c5287424c589a87 Mon Sep 17 00:00:00 2001 From: nicodvb Date: Mon, 21 Feb 2005 23:18:31 +0000 Subject: initial, extremely experimental, libavformat muxer; don't expect anything to work yet git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14758 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cfg-mencoder.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cfg-mencoder.h') diff --git a/cfg-mencoder.h b/cfg-mencoder.h index cb8a43b0b2..175d77a6c4 100644 --- a/cfg-mencoder.h +++ b/cfg-mencoder.h @@ -73,6 +73,9 @@ extern m_option_t x264encopts_conf[]; extern m_option_t nuvopts_conf[]; extern m_option_t mpegopts_conf[]; +#ifdef USE_LIBAVFORMAT +extern m_option_t lavfopts_conf[]; +#endif m_option_t ovc_conf[]={ {"copy", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_COPY, NULL}, @@ -177,6 +180,9 @@ m_option_t info_conf[]={ m_option_t of_conf[]={ {"avi", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_AVI, NULL}, {"mpeg", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_MPEG, NULL}, +#ifdef USE_LIBAVFORMAT + {"lavf", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_LAVF, NULL}, +#endif {"rawvideo", &out_file_format, CONF_TYPE_FLAG, 0, 0, MUXER_TYPE_RAWVIDEO, NULL}, {"help", "\nAvailable output formats:\n" " avi - Microsoft Audio/Video Interleaved\n" @@ -271,6 +277,9 @@ m_option_t mencoder_opts[]={ {"nuvopts", nuvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, {"mpegopts", mpegopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, +#ifdef USE_LIBAVFORMAT + {"lavfopts", lavfopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, +#endif #define MAIN_CONF #include "cfg-common.h" -- cgit v1.2.3