Replace 'mm_util_gif_frame **' to 'void *' 08/158408/1 accepted/tizen/unified/20171101.064752 submit/tizen/20171101.024016
authorJiyong Min <jiyong.min@samsung.com>
Tue, 31 Oct 2017 23:45:56 +0000 (08:45 +0900)
committerJiyong Min <jiyong.min@samsung.com>
Wed, 1 Nov 2017 00:14:42 +0000 (09:14 +0900)
Change-Id: Ieba64faa381c614cd7556cb15eb4e0ce20d8e428
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
src/image_util_decode.c

index 5ee3402..7fbe09d 100755 (executable)
@@ -440,7 +440,7 @@ static int _image_util_decode_internal(decode_encode_s * _handle)
                                err = mm_util_decode_from_gif_memory(gif_data, &_handle->src_buffer[0]);
 
                        if (err == MM_UTIL_ERROR_NONE) {
-                               *(_handle->dst_buffer) = gif_data->frames[0]->data;
+                               *(_handle->dst_buffer) = gif_data->data;
                                _handle->dst_size = gif_data->size;
                                _handle->width = gif_data->width;
                                _handle->height = gif_data->height;