[x264-devel] commit: Fix ultrafast to actually turn off weightb (Jason Garrett-Glaser )
git at videolan.org
git at videolan.org
Wed Jun 2 07:38:26 CEST 2010
x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Sun May 30 09:42:53 2010 -0700| [8098997dcba2602b22b43fdf26621d08d3f81333] | committer: Jason Garrett-Glaser
Fix ultrafast to actually turn off weightb
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=8098997dcba2602b22b43fdf26621d08d3f81333
---
common/common.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/common/common.c b/common/common.c
index 62bef99..fccf2b0 100644
--- a/common/common.c
+++ b/common/common.c
@@ -183,6 +183,7 @@ static int x264_param_apply_preset( x264_param_t *param, const char *preset )
param->i_bframe_adaptive = X264_B_ADAPT_NONE;
param->rc.b_mb_tree = 0;
param->analyse.i_weighted_pred = X264_WEIGHTP_NONE;
+ param->analyse.b_weighted_bipred = 0;
}
else if( !strcasecmp( preset, "superfast" ) )
{
More information about the x264-devel
mailing list