Fix video thumbnail format issue 35/231635/1 accepted/tizen/unified/20200423.161047 submit/tizen/20200423.080104
authorMinje Ahn <minje.ahn@samsung.com>
Thu, 23 Apr 2020 06:49:09 +0000 (15:49 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Thu, 23 Apr 2020 06:49:09 +0000 (15:49 +0900)
Change-Id: Ib2d7d9011ca1ce51b075f3eacb9d39edcf3ad46e
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
src/thumbnail_util.c

index cf647687d527f4f80e413fc687f73289d30921e8..540c9d6774bcdabf98f67197f80f70178b802662 100644 (file)
@@ -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);
 }