From: minje.ahn Date: Wed, 21 Feb 2024 03:38:27 +0000 (+0900) Subject: Fix type misuse X-Git-Tag: accepted/tizen/unified/20240226.134008~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93eece8a8d51f61ad30d1ed86036ce71a8756f88;p=platform%2Fcore%2Fmultimedia%2Flibmm-utility.git Fix type misuse Change-Id: Ia5a5b2849b2bf37e653d9734a8c7205a0e144f68 Signed-off-by: minje.ahn --- 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;