mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Don't write prediction mode for 4x4 intra cus
This commit is contained in:
parent
eff8d7cdac
commit
f1a3aa60dd
|
@ -1338,7 +1338,7 @@ void kvz_encode_coding_tree(encoder_state_t * const state,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prediction mode
|
// Prediction mode
|
||||||
if (state->frame->slicetype != KVZ_SLICE_I) {
|
if (state->frame->slicetype != KVZ_SLICE_I && cu_width != 4) {
|
||||||
|
|
||||||
int8_t ctx_predmode = 0;
|
int8_t ctx_predmode = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue