Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Jovasa committed Jul 31, 2024
1 parent 3cb4d79 commit f8532a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search_intra.c
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ static int8_t search_intra_rough(encoder_state_t * const state,
double costs_out[PARALLEL_BLKS] = { 0 };
const int reduced_range = 8;
int start_mode = previous_cu->intra.mode - reduced_range / 2;
int end_mode = previous_cu->intra.mode - reduced_range / 2;
int end_mode = previous_cu->intra.mode + reduced_range / 2;
for (int mode = start_mode; mode < end_mode; mode += offset * 2) {
for (int i = 0; i < PARALLEL_BLKS; ++i) {
int clipped_mode = mode + i * offset;
Expand Down

0 comments on commit f8532a0

Please sign in to comment.