diff mencoder.c @ 5376:19ecb71891d8

libavcodec 4mv support
author michael
date Thu, 28 Mar 2002 05:01:09 +0000
parents bf30f8d31e6a
children 7f3fe7dbca7a
line wrap: on
line diff
--- a/mencoder.c	Thu Mar 28 00:59:06 2002 +0000
+++ b/mencoder.c	Thu Mar 28 05:01:09 2002 +0000
@@ -76,6 +76,7 @@
 int lavc_param_vbitrate = -1;
 int lavc_param_vrate_tolerance = 1024*8;
 int lavc_param_vhq = 0; /* default is realtime encoding */
+int lavc_param_v4mv = 0;
 int lavc_param_vme = 3;
 int lavc_param_vqscale = 0;
 int lavc_param_vqmin = 3;
@@ -1193,7 +1194,6 @@
     else
 	lavc_venc_context.gop_size = 250; /* default */
 
-    /* ignored by libavcodec? */
     if (lavc_param_vhq)
     {
 	printf("High quality encoding selected (non real time)!\n");
@@ -1202,6 +1202,8 @@
     else
 	lavc_venc_context.flags = 0;
 
+    lavc_venc_context.flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0;
+
     /* motion estimation (0 = none ... 3 = high quality but slow) */
     /* this is just an extern from libavcodec but it should be in the
        encoder context - FIXME */