Apply tizen coding rule 98/64398/1
authorJiyong Min <jiyong.min@samsung.com>
Fri, 1 Apr 2016 03:08:37 +0000 (12:08 +0900)
committerJiyong Min <jiyong.min@samsung.com>
Fri, 1 Apr 2016 03:09:33 +0000 (12:09 +0900)
Change-Id: I7bce73e5afd33d369dd493366611a1a5612495e9
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
include/image_util_private.h
include/image_util_type.h

index 1fbc9cd..62afe0d 100755 (executable)
@@ -61,7 +61,7 @@ extern "C"
 
 #define IMGCV_FUNC_NAME "mm_util_cv_extract_representative_color"
 #define PATH_MMUTIL_IMGCV_LIB "/usr/lib/libmmutil_imgcv.so"
-typedef gboolean (*ModuleFunc)(void *, int, int, unsigned char *, unsigned char *, unsigned char *);
+typedef gboolean(*ModuleFunc)(void *, int, int, unsigned char *, unsigned char *, unsigned char *);
 
 typedef struct {
        void *user_data;
index 780a19e..ea07bfc 100755 (executable)
@@ -176,9 +176,9 @@ typedef enum {
 * @remarks The output will be stored in the pointer set using image_util_decode_set_output_buffer() after this callback.
 *
 * @param[in] error_code The error code of image util decoding
-*                      #IMAGE_UTIL_ERROR_NONE Successful
-*                      #IMAGE_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
-*                      #IMAGE_UTIL_ERROR_INVALID_OPERATION Invalid operation
+*                    #IMAGE_UTIL_ERROR_NONE Successful
+*                    #IMAGE_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
+*                    #IMAGE_UTIL_ERROR_INVALID_OPERATION Invalid operation
 * @param[in] user_data The user data passed from the callback registration function
 * @param[in] width Width of the decoded image
 * @param[in] height Height of the decoded image
@@ -196,9 +196,9 @@ typedef void (*image_util_decode_completed_cb) (int error_code, void *user_data,
 * @remarks The output will be stored in the pointer set using image_util_encode_set_output_buffer() or image_util_encode_set_output_path() after this callback.
 *
 * @param[in] error_code The error code of image util encoding
-*                      #IMAGE_UTIL_ERROR_NONE Successful
-*                      #IMAGE_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
-*                      #IMAGE_UTIL_ERROR_INVALID_OPERATION Invalid operation
+*                    #IMAGE_UTIL_ERROR_NONE Successful
+*                    #IMAGE_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
+*                    #IMAGE_UTIL_ERROR_INVALID_OPERATION Invalid operation
 * @param[in] user_data The user data passed from the callback registration function
 * @param[in] size Size of the encoded image
 *