mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Fix cclm when 64x64 is enabled
This commit is contained in:
parent
7ef25a23a9
commit
df5bc0db4e
|
@ -1253,6 +1253,11 @@ static double search_cu(encoder_state_t * const state, int x, int y, int depth,
|
|||
kvz_hmvp_add_mv(state, x, y, cu_width, cu_width, cur_cu);
|
||||
}
|
||||
}
|
||||
else {
|
||||
downsample_cclm_rec(
|
||||
state, x, y, cu_width / 2, cu_width / 2, lcu->rec.y, lcu->left_ref.y[64]
|
||||
);
|
||||
}
|
||||
} else if (depth >= 0 && depth < MAX_PU_DEPTH) {
|
||||
// Need to copy modes down since the lower level of the work tree is used
|
||||
// when searching SMP and AMP blocks.
|
||||
|
|
Loading…
Reference in a new issue