mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Fixed if-clause at search_intra.c to use new wider range of intra modes
This commit is contained in:
parent
82de0fbee7
commit
4bb484a86a
|
@ -449,7 +449,7 @@ static int8_t search_intra_rough(encoder_state_t * const state,
|
|||
|
||||
double costs_out[PARALLEL_BLKS] = { 0 };
|
||||
for (int i = 0; i < PARALLEL_BLKS; ++i) {
|
||||
if (mode + i * offset <= 34) {
|
||||
if (mode + i * offset <= 66) {
|
||||
kvz_intra_predict(refs, log2_width, mode + i * offset, COLOR_Y, preds[i], filter_boundary);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue