summaryrefslogtreecommitdiffstats
path: root/mencoder.c
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 /mencoder.c
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 'mencoder.c')
-rw-r--r--mencoder.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mencoder.c b/mencoder.c
index 0e4446a67f..da597da0ed 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -8,6 +8,7 @@
#define VCODEC_LIBDV 8
#define VCODEC_XVID 9
#define VCODEC_QTVIDEO 10
+#define VCODEC_NUV 11
#define ACODEC_COPY 0
#define ACODEC_PCM 1
@@ -671,6 +672,9 @@ default:
sh_video->vfilter=vf_open_encoder(NULL,"xvid",(char *)mux_v); break;
case VCODEC_QTVIDEO:
sh_video->vfilter=vf_open_encoder(NULL,"qtvideo",(char *)mux_v); break;
+ case VCODEC_NUV:
+ sh_video->vfilter=vf_open_encoder(NULL,"nuv",(char *)mux_v); break;
+
}
if(!mux_v->bih || !sh_video->vfilter){
mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_EncoderOpenFailed);