Remove unused parameter 79/280579/1
authorminje.ahn <minje.ahn@samsung.com>
Thu, 1 Sep 2022 02:23:02 +0000 (11:23 +0900)
committerminje.ahn <minje.ahn@samsung.com>
Thu, 1 Sep 2022 02:23:02 +0000 (11:23 +0900)
Change-Id: Ib26e16427fbfbdd7f9df33d14872dd780e1797e5
Signed-off-by: minje.ahn <minje.ahn@samsung.com>
packaging/capi-media-thumbnail-util.spec
src/thumbnail_util.c

index 63572c664e52b5ace9554cf597ae4bc5194da5a4..8c85d296b27ba4b93c20206429facbd4e2c770af 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-thumbnail-util
 Summary:    A media thumbnail util library in Tizen Native API
-Version:    0.1.27
+Version:    0.1.28
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 774a013777b01e9608e8d63a38bdb11148195732..026c3fe3d2c4ec9e37557603d7d8be2ed4ab3005 100644 (file)
@@ -133,7 +133,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);
 
        return __thumbnail_util_error_capi(ret);
 }