Remove unused parameter 38/280438/1 accepted/tizen/unified/20220831.023420 submit/tizen/20220830.232907
authorminje.ahn <minje.ahn@samsung.com>
Tue, 30 Aug 2022 05:44:23 +0000 (14:44 +0900)
committerminje.ahn <minje.ahn@samsung.com>
Tue, 30 Aug 2022 05:44:23 +0000 (14:44 +0900)
Change-Id: I9df6c4dd5cf9e580e74765b13de04c9ea03194e5
Signed-off-by: minje.ahn <minje.ahn@samsung.com>
packaging/capi-media-thumbnail-util.spec
src/thumbnail_util.c

index bf967678c63e4bfa51973af4b86fe0ac6f2e4a65..63572c664e52b5ace9554cf597ae4bc5194da5a4 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-thumbnail-util
 Summary:    A media thumbnail util library in Tizen Native API
-Version:    0.1.26
+Version:    0.1.27
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 6cf3cf7e131ded1fd7f3a94fcb4343d8afc5b334..774a013777b01e9608e8d63a38bdb11148195732 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, false);
+               ret = create_video_thumbnail_to_buffer(path, width, height, thumb_buffer, thumb_size, thumb_width, thumb_height, false);
 
        return __thumbnail_util_error_capi(ret);
 }