summaryrefslogtreecommitdiffstats
path: root/cfg-mencoder.h
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-03 11:03:19 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-03 11:03:19 +0000
commitb9fab7021c782292e12ec85cb257ddc2a3ea6f7d (patch)
tree81f8cc39be56eaa75b60bb64458a90c2b3588bdf /cfg-mencoder.h
parent64839d94aeb71b39a3b261f4d808f93be7316e96 (diff)
downloadmpv-b9fab7021c782292e12ec85cb257ddc2a3ea6f7d.tar.bz2
mpv-b9fab7021c782292e12ec85cb257ddc2a3ea6f7d.tar.xz
A new nuppel video encoder. Mainly for RT encoding on slow box.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9521 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mencoder.h')
-rw-r--r--cfg-mencoder.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cfg-mencoder.h b/cfg-mencoder.h
index 2badf36ace..cb039cebc4 100644
--- a/cfg-mencoder.h
+++ b/cfg-mencoder.h
@@ -56,6 +56,8 @@ extern struct config vfwopts_conf[];
extern struct config xvidencopts_conf[];
#endif
+extern struct config nuvopts_conf[];
+
struct config ovc_conf[]={
{"copy", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_COPY, NULL},
{"frameno", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_FRAMENO, NULL},
@@ -68,6 +70,7 @@ struct config ovc_conf[]={
{"libdv", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_LIBDV, NULL},
{"xvid", &out_video_codec, CONF_TYPE_FLAG, 0, 0, VCODEC_XVID, NULL},
{"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"
@@ -208,6 +211,8 @@ static config_t mencoder_opts[]={
{"xvidencopts", xvidencopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#endif
+ {"nuvopts", nuvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+
#define MAIN_CONF
#include "cfg-common.h"
#undef MAIN_CONF