projects
/
libx264
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b048e26
)
Fix ultrafast preset speed regression
author
Anton Mitrofanov
<BugMaster@narod.ru>
Thu, 8 Nov 2018 18:53:17 +0000
(21:53 +0300)
committer
Henrik Gramner
<henrik@gramner.com>
Sun, 23 Dec 2018 19:13:43 +0000
(20:13 +0100)
--trellis 0 was missed for it during 8-bit and 10-bit unification.
Bug report by Aleksey Vasenev.
common/base.c
patch
|
blob
|
history
diff --git
a/common/base.c
b/common/base.c
index f45ba2357ebd26f2850efa4ed267c535999df9ef..861d78cc1dfe2139a4c85cf3cd0ffac1c82c618d 100644
(file)
--- a/
common/base.c
+++ b/
common/base.c
@@
-459,6
+459,7
@@
static int param_apply_preset( x264_param_t *param, const char *preset )
param->analyse.i_subpel_refine = 0;
param->rc.i_aq_mode = 0;
param->analyse.b_mixed_references = 0;
+ param->analyse.i_trellis = 0;
param->i_bframe_adaptive = X264_B_ADAPT_NONE;
param->rc.b_mb_tree = 0;
param->analyse.i_weighted_pred = X264_WEIGHTP_NONE;