From: Jiyong Min Date: Tue, 6 Mar 2018 04:48:05 +0000 (+0900) Subject: Remove unused function X-Git-Tag: submit/tizen/20180314.004633~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=961e10905a7cbf39caa45c80a1f6b2016e18843b;p=platform%2Fcore%2Fmultimedia%2Flibmm-utility.git Remove unused function Change-Id: I36d02b3c97227c6d1e6bea87662d9e4dfef29ccf Signed-off-by: Jiyong Min --- diff --git a/bmp/include/mm_util_bmp.h b/bmp/include/mm_util_bmp.h index 03f358c..63bea80 100755 --- a/bmp/include/mm_util_bmp.h +++ b/bmp/include/mm_util_bmp.h @@ -96,30 +96,6 @@ int mm_util_encode_bmp_to_file(mm_util_bmp_data * encoded, const char *filename) */ int mm_util_encode_bmp_to_memory(mm_util_bmp_data *encoded, void **buffer, size_t *size); -/** - * This function sets width of the encoded image. - * - * @param data [in] pointer of mm_util_bmp_data. - * @param width [in] width of the encoded image. - * @return None. - * @remark - * @see mm_util_bmp_data - * @since R1, 1.0 - */ -void mm_util_bmp_encode_set_width(mm_util_bmp_data * data, unsigned long width); - -/** - * This function sets height of the encoded image. - * - * @param data [in] pointer of mm_util_bmp_data. - * @param height [in] height of the encoded image. - * @return None. - * @remark - * @see mm_util_bmp_data - * @since R1, 1.0 - */ -void mm_util_bmp_encode_set_height(mm_util_bmp_data * data, unsigned long height); - #ifdef __cplusplus } #endif diff --git a/bmp/mm_util_bmp.c b/bmp/mm_util_bmp.c index cffb2b5..2deb97d 100755 --- a/bmp/mm_util_bmp.c +++ b/bmp/mm_util_bmp.c @@ -265,13 +265,3 @@ int mm_util_encode_bmp_to_memory(mm_util_bmp_data *encoded, void **buffer, size_ bmp_destroy(bmp); return MM_UTIL_ERROR_NONE; } - -void mm_util_bmp_encode_set_width(mm_util_bmp_data *data, unsigned long width) -{ - data->width = width; -} - -void mm_util_bmp_encode_set_height(mm_util_bmp_data *data, unsigned long height) -{ - data->height = height; -}