From c163ff005ab16d818c7e2cc719deebdba3b0f6ae Mon Sep 17 00:00:00 2001 From: siivonek Date: Thu, 11 Aug 2022 13:11:41 +0300 Subject: [PATCH] [isp] Fix avx2 function call. Missing height parameter. --- src/strategies/avx2/dct-avx2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/strategies/avx2/dct-avx2.c b/src/strategies/avx2/dct-avx2.c index f3c812ed..fea2256d 100644 --- a/src/strategies/avx2/dct-avx2.c +++ b/src/strategies/avx2/dct-avx2.c @@ -1622,6 +1622,7 @@ static void mts_idct_avx2( const color_t color, const cu_info_t* tu, const int8_t width, + const int8_t height, const int16_t* input, int16_t* output, const int8_t mts_idx)