[mip] Fix CI error. Const modifier in wrong place.

This commit is contained in:
siivonek 2022-02-16 17:14:26 +02:00
parent 9b04a6f302
commit fa963234a8
2 changed files with 2 additions and 2 deletions

View file

@ -555,7 +555,7 @@ void kvz_predict_cclm(
}
int kvz_get_mip_flag_context(int x, int y, int width, int height, lcu_t* const lcu, cu_array_t* const cu_a) {
int kvz_get_mip_flag_context(int x, int y, int width, int height, const lcu_t* lcu, cu_array_t* const cu_a) {
assert(!(lcu && cu_a));
if (width > 2 * height || height > 2 * width) {
return 3;

View file

@ -153,7 +153,7 @@ void kvz_predict_cclm(
cclm_parameters_t* cclm_params
);
int kvz_get_mip_flag_context(int x, int y, int width, int height, lcu_t* const lcu, cu_array_t* const cu_a);
int kvz_get_mip_flag_context(int x, int y, int width, int height, const lcu_t* lcu, cu_array_t* const cu_a);
void kvz_mip_predict(
encoder_state_t const * const state,