Fix test_external_symbols

This commit is contained in:
Joose Sainio 2022-04-13 10:58:39 +03:00
parent 5f1e9c820f
commit 6aa8240db0
2 changed files with 2 additions and 2 deletions

View file

@ -479,7 +479,7 @@ static void linear_transform_cclm(const cclm_parameters_t* cclm_params, kvz_pixe
} }
void predict_cclm( static void predict_cclm(
encoder_state_t const* const state, encoder_state_t const* const state,
const color_t color, const color_t color,
const int8_t width, const int8_t width,

View file

@ -457,7 +457,7 @@ static double search_intra_trdepth(
return nosplit_cost; return nosplit_cost;
} }
} }
void sort_modes(intra_search_data_t* __restrict modes, uint8_t length) static void sort_modes(intra_search_data_t* __restrict modes, uint8_t length)
{ {
// Length for intra is always between 5 and 23, and is either 21, 17, 9 or 8 about // Length for intra is always between 5 and 23, and is either 21, 17, 9 or 8 about
// 60% of the time, so there should be no need for anything more complex // 60% of the time, so there should be no need for anything more complex