[MPlayer-cvslog] CVS: main/libmpcodecs ve_x264.c,1.41,1.42
Loren Merritt CVS
syncmail at mplayerhq.hu
Fri Dec 30 06:15:29 CET 2005
CVS change done by Loren Merritt CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv28337/libmpcodecs
Modified Files:
ve_x264.c
Log Message:
sync to x264 r390 (bime)
Index: ve_x264.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ve_x264.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ve_x264.c 22 Nov 2005 05:32:28 -0000 1.41
+++ ve_x264.c 30 Dec 2005 05:15:27 -0000 1.42
@@ -101,6 +101,7 @@
static char *zones = NULL;
static int subq = 5;
static int bframe_rdo = 0;
+static int bidir_me = 0;
static int me_method = 2;
static int me_range = 16;
static int trellis = 1;
@@ -154,6 +155,8 @@
{"direct_pred", &direct_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
{"weight_b", &weight_b, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"noweight_b", &weight_b, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+ {"bime", &bidir_me, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"nobime", &bidir_me, CONF_TYPE_FLAG, 0, 0, 0, NULL},
{"chroma_me", &chroma_me, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"nochroma_me", &chroma_me, CONF_TYPE_FLAG, 0, 1, 0, NULL},
{"mixed_refs", &mixed_references, CONF_TYPE_FLAG, 0, 0, 1, NULL},
@@ -292,6 +295,7 @@
mod->param.analyse.i_direct_mv_pred = direct_pred;
mod->param.analyse.b_weighted_bipred = weight_b;
mod->param.analyse.i_chroma_qp_offset = chroma_qp_offset;
+ mod->param.analyse.b_bidir_me = bidir_me;
mod->param.analyse.b_chroma_me = chroma_me;
mod->param.analyse.b_mixed_references = mixed_references;
mod->param.analyse.i_trellis = trellis;
More information about the MPlayer-cvslog
mailing list