From 7da7ac1755558ef4b5a0aa012f8184e70f6b87c5 Mon Sep 17 00:00:00 2001 From: Minje Ahn Date: Thu, 23 Apr 2020 15:49:09 +0900 Subject: [PATCH] Fix video thumbnail format issue Change-Id: Ib2d7d9011ca1ce51b075f3eacb9d39edcf3ad46e Signed-off-by: Minje Ahn --- src/thumbnail_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thumbnail_util.c b/src/thumbnail_util.c index cf64768..540c9d6 100644 --- a/src/thumbnail_util.c +++ b/src/thumbnail_util.c @@ -295,7 +295,7 @@ int thumbnail_util_extract_to_buffer(const char *path, unsigned int width, unsig if (type == THUMBNAIL_UTIL_IMAGE) ret = create_image_thumbnail_to_buffer(path, width, height, thumb_buffer, thumb_size, thumb_width, thumb_height); else - ret = create_video_thumbnail_to_buffer(path, width, height, thumb_buffer, thumb_size, thumb_width, thumb_height, false); + ret = create_video_thumbnail_to_buffer(path, width, height, thumb_buffer, thumb_size, thumb_width, thumb_height, false, false); return __thumbnail_util_error_capi(ret); } -- 2.34.1