From 93eece8a8d51f61ad30d1ed86036ce71a8756f88 Mon Sep 17 00:00:00 2001 From: "minje.ahn" Date: Wed, 21 Feb 2024 12:38:27 +0900 Subject: [PATCH] Fix type misuse Change-Id: Ia5a5b2849b2bf37e653d9734a8c7205a0e144f68 Signed-off-by: minje.ahn --- anim/test/mm_util_anim_testsuite.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anim/test/mm_util_anim_testsuite.c b/anim/test/mm_util_anim_testsuite.c index 7c6a0c5..a23a4aa 100644 --- a/anim/test/mm_util_anim_testsuite.c +++ b/anim/test/mm_util_anim_testsuite.c @@ -188,7 +188,7 @@ static void __add_image(gpointer data, gpointer user_data) fprintf(stderr, "\t[ANIM_testsuite] mm_util_webp_anim_enc_add_image failed : %d\n", ret); } -static int __anim_encode_setup(mm_util_img_codec_type type, mm_util_anim_enc_h *anim_encode) +static int __anim_encode_setup(mm_util_anim_codec_type type, mm_util_anim_enc_h *anim_encode) { int ret = MM_UTIL_ERROR_NONE; mm_util_anim_enc_h anim_enc = NULL; @@ -231,7 +231,7 @@ ERROR: return ret; } -static bool __test_encode_to_file(mm_util_img_codec_type type, const char *path) +static bool __test_encode_to_file(mm_util_anim_codec_type type, const char *path) { int ret = MM_UTIL_ERROR_NONE; mm_util_anim_enc_h anim_enc = NULL; @@ -257,7 +257,7 @@ static bool __test_encode_to_file(mm_util_img_codec_type type, const char *path) return (ret == MM_UTIL_ERROR_NONE); } -static bool __test_encode_to_buffer(mm_util_img_codec_type type, const char *path) +static bool __test_encode_to_buffer(mm_util_anim_codec_type type, const char *path) { int ret = MM_UTIL_ERROR_NONE; mm_util_anim_enc_h anim_enc = NULL; -- 2.34.1