checkasm: Fix cdef_dir function prototype

This commit is contained in:
Henrik Gramner 2023-12-19 12:11:46 +01:00 committed by Henrik Gramner
parent 5149b27447
commit 8ba0df8492
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static void check_cdef_filter(const cdef_fn fn, const int w, const int h) {
static void check_cdef_direction(const cdef_dir_fn fn) {
ALIGN_STK_64(pixel, src, 8 * 8,);
declare_func(int, pixel *src, ptrdiff_t dst_stride, unsigned *var
declare_func(int, const pixel *src, ptrdiff_t dst_stride, unsigned *var
HIGHBD_DECL_SUFFIX);
if (check_func(fn, "cdef_dir_%dbpc", BITDEPTH)) {