mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
[mip] Fix CI error. Const modifier in wrong place.
This commit is contained in:
parent
9b04a6f302
commit
fa963234a8
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue