Remove unused function 81/171581/1
authorJiyong Min <jiyong.min@samsung.com>
Tue, 6 Mar 2018 04:48:05 +0000 (13:48 +0900)
committerJiyong Min <jiyong.min@samsung.com>
Tue, 6 Mar 2018 04:49:15 +0000 (13:49 +0900)
Change-Id: I36d02b3c97227c6d1e6bea87662d9e4dfef29ccf
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
bmp/include/mm_util_bmp.h
bmp/mm_util_bmp.c

index 03f358c..63bea80 100755 (executable)
@@ -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
index cffb2b5..2deb97d 100755 (executable)
@@ -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;
-}