platform/core/multimedia/libmm-utility.git
6 years agoChange hard coded path to get by using tzplatform API 42/162142/1 accepted/tizen/unified/20171130.113336 submit/tizen/20171130.061035
hj kim [Wed, 29 Nov 2017 08:51:16 +0000 (17:51 +0900)]
Change hard coded path to get by using tzplatform API

Change-Id: I786b53b07e41e44696f912aff556ff3d583332f4

6 years agoApply CMake 19/161719/5
Jiyong Min [Mon, 27 Nov 2017 06:20:37 +0000 (15:20 +0900)]
Apply CMake

Change-Id: If83b3416c06d22f5df1935e7e4a12cf02814f2e2
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoRemove capi-media-tool dependency 58/161558/2
hj kim [Fri, 24 Nov 2017 06:23:24 +0000 (15:23 +0900)]
Remove capi-media-tool dependency

Change-Id: I9d12dbcfffe91cc7bc7d60a9a20085bcaaf9ebc7

6 years agoRemove capi-media-tool dependency & unused libraries 98/161198/3 submit/tizen/20171123.062739 submit/tizen/20171124.024723
Jiyong Min [Wed, 22 Nov 2017 05:53:30 +0000 (14:53 +0900)]
Remove capi-media-tool dependency & unused libraries

Change-Id: I4337e2dbc242fafc7e8683e833b403d8887e9689
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify media_packet creation for invalid operation error 11/160411/3 accepted/tizen/unified/20171120.065131 submit/tizen/20171120.011858
Jiyong Min [Thu, 16 Nov 2017 05:28:16 +0000 (14:28 +0900)]
Modify media_packet creation for invalid operation error

[Problem]
Rarely, invalid operation was returned

[Cause]
Because of the difference between tbm buffer and gstreamer buffer,
the size of packet was not same with the size of buffer.

[Solution]
Use smaller size of buffer than others.

Change-Id: I3f32ef0396f26bada0df6dc907777dd325776924
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify buffer overflow when image was rotated 84/160384/3
Jiyong Min [Thu, 16 Nov 2017 02:21:14 +0000 (11:21 +0900)]
Modify buffer overflow when image was rotated

[Problem] Crash happen by buffer overflow

[Cause]
The size of the buffer is calculated with width, height and format
The width should be a multiple of 4 or 8, so the size of the buffer is affected from the width.
But the width and the height were swapped for some cases. So the size of the buffer was not correct.

[Solution]
To swap the width and the height is not neccessary. It is removed.

Change-Id: I832b18a50470681588137ace90d0f6178c96a927
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify the value returned by transform to return correct error 01/160201/6
Jiyong Min [Wed, 15 Nov 2017 01:18:06 +0000 (10:18 +0900)]
Modify the value returned by transform to return correct error

 + Replace 'media_format_make_writable' to 'media_format_create'
 because 'media_format_make_writable' does not create new media_format_h in some case.

Change-Id: I1292c14104e66beef6ed7c692821179724399e53
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoRemove TTRACE dependency and refine debug msg 32/160032/4
hj kim [Tue, 14 Nov 2017 07:37:58 +0000 (16:37 +0900)]
Remove TTRACE dependency and refine debug msg

Change-Id: I55a3e86fdb1ef01b1016bff3c1cd845193a82d14

6 years agoFix 64bit build error (Replace 'llu' to 'PRIu64') 60/159960/1
Jiyong Min [Tue, 14 Nov 2017 02:43:23 +0000 (11:43 +0900)]
Fix 64bit build error (Replace 'llu' to 'PRIu64')

Change-Id: I9970ba17d5559940ba5115dd63c2e9901eb2450b
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd missing media_packet color to fix that image-util can not support BGRA color 03/159603/1 submit/tizen/20171113.042933 submit/tizen/20171113.231122
Jiyong Min [Fri, 10 Nov 2017 05:52:36 +0000 (14:52 +0900)]
Add missing media_packet color to fix that image-util can not support BGRA color

Change-Id: I2a57d755f3fdc848d5b9cdbe79ae97dbbb878d31
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoCode clean up of TTRACE and modify converting colorspace not working 96/159596/1
Jiyong Min [Fri, 10 Nov 2017 04:50:12 +0000 (13:50 +0900)]
Code clean up of TTRACE and modify converting colorspace not working

 - On the case of converting colorspace, can missed dst_width and dst_height.
   As the result dst_width and dst_height is zero, src_width and src_height
   should be assigned to dst_width and dst_height.

Change-Id: I04c218ae4ac90d6e7aaa829846ff4f3d629784f4
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoCode clean up header files and memory allocations 20/159320/4 submit/tizen/20171110.043613
Jiyong Min [Wed, 8 Nov 2017 07:18:13 +0000 (16:18 +0900)]
Code clean up header files and memory allocations

Change-Id: I958b612a5d56c2ae84a0ee0bd0de7e2fee74aa9a
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify the size of the buffer for rotating or cropping image 72/159072/3 accepted/tizen/unified/20171108.063455 submit/tizen/20171107.034519
Jiyong Min [Tue, 7 Nov 2017 01:13:51 +0000 (10:13 +0900)]
Modify the size of the buffer for rotating or cropping image

 - Problem:
   Crash happen when image is rotated or cropped.

 - Cause & Solution:
   Because of removing the get resolution function at 'https://review.tizen.org/gerrit/#/c/158301/'.
   The size of 'dst' buffer is '0'.
   The size of buffer should be calculated by the width and height of source.

Change-Id: I1d87e51648a70504c754f99cca2fd8ce6b378c6d
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoCode clean up of removing unused define, macro and variables 56/158756/1 accepted/tizen/unified/20171103.162253 submit/tizen/20171103.020449
Jiyong Min [Fri, 3 Nov 2017 01:16:44 +0000 (10:16 +0900)]
Code clean up of removing unused define, macro and variables

Change-Id: Ia00a96b050141df12abee7255072b96d7e816c3f
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify to get the size of the cropped image and modify to check wrong parameter 77/158477/2
Jiyong Min [Wed, 1 Nov 2017 07:26:32 +0000 (16:26 +0900)]
Modify to get the size of the cropped image and modify to check wrong parameter

Cause: Cropping dosen't use gstreamer but getting the size is based
  on gstreamer. So the size of the cropped image is not matched with
  getting the size by mm_util_get_image_size().

Solution: The function to get the size of cropped image has been added.
  Generally, getting image size should be seperated for libraries.

Change-Id: If8086bf1a03b6fd0a8eb56d94bb05a355d902cb8
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoCode Cleanup unneccessary variables and functions 56/158356/4 accepted/tizen/unified/20171101.064755 submit/tizen/20171101.024016
Jiyong Min [Tue, 31 Oct 2017 08:14:08 +0000 (17:14 +0900)]
Code Cleanup unneccessary variables and functions

 - Remove frames to fix memory leak (decoder supports 1 frame)
 - Remove GIF_ENCODER_V2 define
 - Remove unused functions after frames and define is deleted

Change-Id: Ie279fe4b83e4cb1de7b16b70ec2ac5a82f02df6f
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoFix buffer-overflow issue when image was cropped 01/158301/3
Jiyong Min [Tue, 31 Oct 2017 04:03:08 +0000 (13:03 +0900)]
Fix buffer-overflow issue when image was cropped

Cause: Before image is cropped, the buffer in media packet is allocated.
At this case, the size of cropped image is changed to be multiple by 4.
The size of the buffer in media packet is smaller than the size of cropped image.
So It make buffer-overflow issue.

Solution: It is fixed to allocate the buffer in media_packet after image is cropped.

 - replace media_packet creation to after transform is done.
 - remove unused get_resolution function.
 - add to allocate and free 'handle->dst' buffer to use transform.

Change-Id: I127e7cd45035bd1c5c4277cff835a2e647c65765
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoCode Cleanup for __mm_util_transform_exec 01/158201/3
Jiyong Min [Mon, 30 Oct 2017 09:28:06 +0000 (18:28 +0900)]
Code Cleanup for __mm_util_transform_exec

 - Add function for __mm_util_transform_exec to be simplified

Change-Id: Ie91b1a69c004c1586a4806e5f85a99a9f1ec5f68
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoFix leak and double-free in gif encoding 78/157778/1
Anastasia Lyupa [Thu, 26 Oct 2017 07:35:12 +0000 (10:35 +0300)]
Fix leak and double-free in gif encoding

Not return before free remaining data in mm_util_gif_encode_destroy().
Free gif_file->saved_image after all saved images are freed
in mm_util_gif_encode().

Change-Id: I318049461669d769f6126c395089c56ab2311bc0
Signed-off-by: Anastasia Lyupa <a.lyupa@samsung.com>
6 years agoReplace thread creation before pushing data to async_queue after pushing data to... 67/157067/5 accepted/tizen/unified/20171025.075123 submit/tizen/20171024.105208
Jiyong Min [Mon, 23 Oct 2017 08:22:21 +0000 (17:22 +0900)]
Replace thread creation before pushing data to async_queue after pushing data to async_queue.
(Fix callback not invoked because thread finish with no data)

Change-Id: Id6109637cac8900ff95ad20feef64c037592b284
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoRemove unused variables 91/156791/1
Jiyong Min [Fri, 20 Oct 2017 04:15:58 +0000 (13:15 +0900)]
Remove unused variables

Change-Id: Idcdd18f6d3d28ccf475b493ed39cd03f07ad4351
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify to free memory encoded to bmp and add to check return value from fread 33/152933/7 accepted/tizen/unified/20170929.081607 submit/tizen/20170928.093256
Jiyong Min [Wed, 27 Sep 2017 10:36:17 +0000 (19:36 +0900)]
Modify to free memory encoded to bmp and add to check return value from fread
(fix coverity issue)

Change-Id: Id380453efa6a148e900aba38eff78045ac2c9840
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd finishing jpeg decompression due to memory leak 16/149316/4 accepted/tizen/unified/20170920.065524 submit/tizen/20170918.031342
Jiyong Min [Tue, 12 Sep 2017 05:29:49 +0000 (14:29 +0900)]
Add finishing jpeg decompression due to memory leak

 - The libjpeg release memory without stdio manager during compression
   So we should finish decompression before release jpeg source.
   If release jpeg decompression without finishing, jpeg_destroy_decompress makes memory leak.

Change-Id: Ic19ea9935edc0c461c7dcfad7670cd551f0525cc
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoRemove unused parameter, the size of the buffer 96/148796/1 accepted/tizen/unified/20170913.070611 submit/tizen/20170911.075345
Jiyong Min [Mon, 11 Sep 2017 02:08:07 +0000 (11:08 +0900)]
Remove unused parameter, the size of the buffer

Change-Id: I87b6558f36c45250339996e064b1edd5e0b36810
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoChange free to SAFE_FREE 07/147907/1 accepted/tizen/unified/20170907.060419 submit/tizen/20170906.051057
Haejeong Kim [Wed, 6 Sep 2017 04:46:41 +0000 (13:46 +0900)]
Change free to SAFE_FREE

Change-Id: I09f419176a7a3fed9fcb9ff35faee3f9104fb545

6 years agoRemove \n in dlog msg 15/147815/1
Haejeong Kim [Wed, 6 Sep 2017 01:11:28 +0000 (10:11 +0900)]
Remove \n in dlog msg

Change-Id: Id221e729189f4a828778ce89d9ea172902a3015f

6 years agoApply tizen coding rule 21/147521/1 accepted/tizen/unified/20170906.060721 submit/tizen/20170905.045152
Haejeong Kim [Mon, 4 Sep 2017 23:56:25 +0000 (08:56 +0900)]
Apply tizen coding rule

Change-Id: Iab66ccac21b03e0d84eb4a928c204e34ff2e43c1

6 years agoRemove useless exif dependency 88/146288/1 accepted/tizen/unified/20170829.053213 submit/tizen/20170828.073653
Haejeong Kim [Mon, 28 Aug 2017 01:12:45 +0000 (10:12 +0900)]
Remove useless exif dependency

Change-Id: Idba6316c330e4525d1558345eaadf56bd85e8f76

6 years agoModify the number of the pixcel to extract RGB 34/145934/3 accepted/tizen/unified/20170825.163238 submit/tizen/20170824.093048 submit/tizen/20170825.024959
Jiyong Min [Thu, 24 Aug 2017 07:42:05 +0000 (16:42 +0900)]
Modify the number of the pixcel to extract RGB

- The resolution of current frame is image_desc.
And the width, height of gif_image is the with & height of total image.
So the width, height can not be same with current frame.

Change-Id: I362cc07ab26298e6f502d66005f30ab7ac944eba
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoJust remove function name in debug msg 56/145556/2
Haejeong Kim [Wed, 23 Aug 2017 02:30:59 +0000 (11:30 +0900)]
Just remove function name in debug msg

Change-Id: I0e6aeccf0fe53b8a2496ad5de41e11b9da4bd8eb

6 years agoModify to check parameter and return value 87/145587/2
Jiyong Min [Wed, 23 Aug 2017 04:24:20 +0000 (13:24 +0900)]
Modify to check parameter and return value

Change-Id: I9c92d4406b2e1006d914463a05d2b54bf9c61e89
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoformat arguments error fix 53/145553/1
Haejeong Kim [Wed, 23 Aug 2017 02:25:24 +0000 (11:25 +0900)]
format arguments error fix

Change-Id: I1f51fac782400ba3e754c99798162d2374b682c7

6 years agoRefactoring __gif_get_index_in_colormap() function 47/145047/2
Jiyong Min [Mon, 21 Aug 2017 03:38:22 +0000 (12:38 +0900)]
Refactoring __gif_get_index_in_colormap() function

Change-Id: Ie5e664f4829f8c6e609422223ad52c0487dc4607
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd 'const' keyword to fix build warning of internal APIs. 46/145046/2
Jiyong Min [Mon, 21 Aug 2017 03:31:50 +0000 (12:31 +0900)]
Add 'const' keyword to fix build warning of internal APIs.

Change-Id: I8e36198f03a0f46a1dd87e2247bf14723cb645c1
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoReplace system() to g_file_copy() due to exploitable vulnerabilities. 83/144983/6
Jiyong Min [Sun, 20 Aug 2017 23:26:14 +0000 (08:26 +0900)]
Replace system() to g_file_copy() due to exploitable vulnerabilities.

- Please refer to below webpage in detail
- https://www.securecoding.cert.org/confluence/pages/viewpage.action?pageId=2130132

Change-Id: I790a24e92439b73d4c6f43e563fc7da2d317d262
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd require default transforming library for building-block 08/143908/1 accepted/tizen/4.0/unified/20170829.015818 accepted/tizen/unified/20170818.001020 submit/tizen/20170817.011220 submit/tizen_4.0/20170828.100004 submit/tizen_4.0/20170828.110004
Jiyong Min [Mon, 14 Aug 2017 01:15:25 +0000 (10:15 +0900)]
Add require default transforming library for building-block

Change-Id: I1129095424ee3afdf3606b1efa4fa3704b437b98
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoFix build error for 64bit enviroment 27/143427/2 accepted/tizen/unified/20170811.021127 submit/tizen/20170810.034601
Jiyong Min [Thu, 10 Aug 2017 01:54:46 +0000 (10:54 +0900)]
Fix build error for 64bit enviroment

Change-Id: Ie1cc521377a5c0d51e9e38562b1e8250b28e015c
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd testsuite for new version gif encoder(V2) 66/141366/5 submit/tizen/20170804.071846
Jiyong Min [Mon, 31 Jul 2017 06:59:00 +0000 (15:59 +0900)]
Add testsuite for new version gif encoder(V2)

Change-Id: I47b4bf663b3abb66da32698de2a5dc572b118a1d
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoAdd new version gif encoder(V2) 39/141039/11
Jiyong Min [Fri, 28 Jul 2017 00:01:29 +0000 (09:01 +0900)]
Add new version gif encoder(V2)

 - Add new version gif encode api
  It reduce memory usage by encoding gif frame by frame.
  (After fixing capi, old version will be removed.)
 - At new version it support customized color map, disposal mode and tp color.

Change-Id: Ia7a64d77e321c1f89b69525a9e74f92a3f5ee368
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agoModify data type for the size of memory(buffer) from 'int' to 'unsigned int' 10/139010/9 accepted/tizen/4.0/unified/20170816.010329 accepted/tizen/4.0/unified/20170816.014131 accepted/tizen/unified/20170719.131949 submit/tizen/20170719.012528 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0_unified/20170814.115522
Jiyong Min [Mon, 17 Jul 2017 01:17:42 +0000 (10:17 +0900)]
Modify data type for the size of memory(buffer) from 'int' to 'unsigned int'
(Added to fix svace issue in imgp)

Change-Id: Ic71248e05d76beb68b57885692747c3297f1abf2
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years ago[SATIZENVUL-952] Add to check that memory was allocated successfully. 12/138612/3
Jiyong Min [Thu, 13 Jul 2017 03:53:20 +0000 (12:53 +0900)]
[SATIZENVUL-952] Add to check that memory was allocated successfully.

Change-Id: I51308a8a1fc980a778cbb5a486548cde17521e7f
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
6 years agofix invalid format argument types for dlog 36/135136/1 accepted/tizen/unified/20170630.083259 submit/tizen/20170621.064821 submit/tizen/20170622.044226
Haejeong Kim [Wed, 21 Jun 2017 05:13:01 +0000 (14:13 +0900)]
fix invalid format argument types for dlog

Change-Id: I55ac07d824806ee0d95c0e789335bb9c6eeb705e

6 years ago[RQ170614-00158] fix invalid format argument types for dlog 01/134301/2 accepted/tizen/unified/20170630.083040 submit/tizen/20170616.053948
Haejeong Kim [Fri, 16 Jun 2017 01:59:49 +0000 (10:59 +0900)]
[RQ170614-00158] fix invalid format argument types for dlog

Change-Id: I326496eddf8a95b9aecdc959df02a1f213990107

6 years agoAdd libmmutil_imgcv.so because of dlopen 93/133693/2 accepted/tizen/unified/20170613.194606 submit/tizen/20170613.071010
Jiyong Min [Tue, 13 Jun 2017 06:50:12 +0000 (15:50 +0900)]
Add libmmutil_imgcv.so because of dlopen

Change-Id: Ieabf8866c0a099fc8703dd53acc89c55fd16321b
Signed-off-by: jiyong min <jiyong.min@samsung.com>
7 years agoAdd to support saving bmp to memory 73/133073/3 accepted/tizen/unified/20170612.170907 submit/tizen/20170612.052408
Jiyong Min [Fri, 9 Jun 2017 01:23:07 +0000 (10:23 +0900)]
Add to support saving bmp to memory

Change-Id: I8dbf68b278547fd962925effc6f85c8425c730d5
Signed-off-by: jiyong min <jiyong.min@samsung.com>
7 years agoRemove '.so' file in binary package 87/132887/2
Jiyong Min [Fri, 26 May 2017 03:06:33 +0000 (12:06 +0900)]
Remove '.so' file in binary package
(Add '.so' library in devel package by linux packaging policy)

Change-Id: I33d98abff1871c729b674a327cec7ca18707faa4
Signed-off-by: jiyong min <jiyong.min@samsung.com>
7 years agoAdd to return MM_UTIL_ERROR_NO_SUCH_FILE error for not exist file 89/123089/2 accepted/tizen/unified/20170418.072829 submit/tizen/20170417.230238 tizen_4.0.m1_release
Jiyong Min [Tue, 4 Apr 2017 10:36:40 +0000 (19:36 +0900)]
Add to return MM_UTIL_ERROR_NO_SUCH_FILE error for not exist file

Change-Id: Ibf207620c05c87ebb56985f88dbc3a9497e048cf
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoFix memory leak & tained value found by static analyzer 05/114105/1
Jiyong Min [Thu, 9 Feb 2017 00:51:42 +0000 (09:51 +0900)]
Fix memory leak & tained value found by static analyzer

 - Memory leak
  GifMakeMapObject allocate storage for a color map object with the given number of RGB triplet slots.
  So the storage should be freed by calling GifFreeMapObject that is no longer needed.

 - Tained value
  GifWord is type of SWidth, SHeight. It is defined to be integer in Gif.
  So it is not tained to compare GifWord with integer. We add type cast to be clear.

Change-Id: I8c84e0ef05cfefb5f0f995be3bb14c69702a9d8b
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
(cherry picked from commit 0a5832bc0febd743c1334f36117ecebe8448cd6d)

7 years agoPNG: Remove png_set_background for default background color 38/111838/1
Jiyong Min [Tue, 24 Jan 2017 08:55:28 +0000 (17:55 +0900)]
PNG: Remove png_set_background for default background color

 - Problem
  The transparent was not kept when transparent PNG was decoded.

[Cause] The default background was set by png_set_background
[Version] 0.26

Change-Id: Ie230cc14c9e81f690cb5418d560b1962f4875e5c
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
7 years agoFix crash happen when __mm_util_processing return error. 29/93729/2 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/common/20161109.140237 accepted/tizen/ivi/20161109.002825 accepted/tizen/mobile/20161109.002450 accepted/tizen/tv/20161109.002648 accepted/tizen/unified/20170309.033216 accepted/tizen/wearable/20161109.002741 submit/tizen/20161108.054351 submit/tizen_unified/20170308.100408
Jiyong Min [Tue, 25 Oct 2016 12:05:18 +0000 (21:05 +0900)]
Fix crash happen when __mm_util_processing return error.

  [problem] The tbm buffer of media_packet should be free by media_packet_destroy.
           It may not be free when return error.

Change-Id: I24b90df29c48c7c3c5d15f8f1f87ac743320be8e
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoRemove RPM warning of executing scripts 01/86801/1 accepted/tizen/3.0/ivi/20161011.044302 accepted/tizen/3.0/mobile/20161015.033412 accepted/tizen/3.0/tv/20161016.004900 accepted/tizen/3.0/wearable/20161015.083205 accepted/tizen/common/20160907.154641 accepted/tizen/ivi/20160908.044148 accepted/tizen/mobile/20160908.043227 accepted/tizen/tv/20160908.043930 accepted/tizen/wearable/20160908.044040 submit/tizen/20160907.074000 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000003 submit/tizen_3.0_mobile/20161015.000003 submit/tizen_3.0_tv/20161015.000003 submit/tizen_3.0_wearable/20161015.000003
Jiyong Min [Mon, 5 Sep 2016 02:40:15 +0000 (11:40 +0900)]
Remove RPM warning of executing scripts

 - PROBLEM
[  155s] libmm-utility.armv7l: W: wrong-script-end-of-line-encoding /usr/share/license/libmm-utility
[  155s] This script has wrong end-of-line encoding, usually caused by creation or
[  155s] modification on a non-Unix system. It will prevent its execution.

[Solution] Add macro for license directory

Change-Id: I9bfa71a218d25773e1ac7fe2c95f7cc2ac9be185
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoAdd to free file handler for gif encoder 65/80465/5 accepted/tizen/common/20160719.172444 accepted/tizen/ivi/20160719.060719 accepted/tizen/mobile/20160719.060707 accepted/tizen/tv/20160719.060713 accepted/tizen/wearable/20160719.060710 submit/tizen/20160719.013718
Jiyong Min [Mon, 18 Jul 2016 07:40:00 +0000 (16:40 +0900)]
Add to free file handler for gif encoder

Change-Id: Icd220ee38d64a3eba63c90a4ffc01e54134dcc48
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years ago[TSAM-4894] Fix crash issue after image was resized 20/76620/1 accepted/tizen/common/20160629.222524 accepted/tizen/ivi/20160629.020734 accepted/tizen/mobile/20160629.020841 accepted/tizen/tv/20160629.020754 accepted/tizen/wearable/20160629.020817 submit/tizen/20160628.080717
Jiyong Min [Fri, 24 Jun 2016 11:54:02 +0000 (20:54 +0900)]
[TSAM-4894] Fix crash issue after image was resized

Change-Id: Ia16202fc18cfb5ee9f82b03076d54d4ffbf21527
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoFix tainted width & height issue for gif 35/74435/2 accepted/tizen/common/20160615.193318 accepted/tizen/ivi/20160615.001706 accepted/tizen/mobile/20160615.001806 accepted/tizen/tv/20160615.001731 accepted/tizen/wearable/20160615.001746 submit/tizen/20160614.103947
Jiyong Min [Tue, 14 Jun 2016 07:55:52 +0000 (16:55 +0900)]
Fix tainted width & height issue for gif

Change-Id: Icd49bf7a45e1e86b715f9377efa1196bb7566ba5
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoFix memory leak issue after png image is decoded 93/73393/1 accepted/tizen/common/20160609.145216 accepted/tizen/ivi/20160609.091737 accepted/tizen/mobile/20160609.091956 accepted/tizen/tv/20160609.091607 accepted/tizen/wearable/20160609.091711 submit/tizen/20160609.040222
Jiyong Min [Wed, 8 Jun 2016 04:26:09 +0000 (13:26 +0900)]
Fix memory leak issue after png image is decoded

Change-Id: Idf1d376c7639d5b167690524d4a81e50a96ce4e9
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoFix memory leak issue 95/62695/1 accepted/tizen/common/20160318.145633 accepted/tizen/ivi/20160318.113643 accepted/tizen/mobile/20160318.113424 accepted/tizen/tv/20160318.113523 accepted/tizen/wearable/20160318.113501 submit/tizen/20160317.114700
Jiyong Min [Thu, 17 Mar 2016 11:35:45 +0000 (20:35 +0900)]
Fix memory leak issue

Change-Id: I9c21b813fce4c8f227491a668956840c5291ee0c
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoFix svace issue 35/61635/4 accepted/tizen/common/20160315.221104 accepted/tizen/ivi/20160310.063011 accepted/tizen/ivi/20160315.002148 accepted/tizen/mobile/20160310.062837 accepted/tizen/mobile/20160315.002055 accepted/tizen/tv/20160310.062906 accepted/tizen/tv/20160315.002113 accepted/tizen/wearable/20160310.062940 accepted/tizen/wearable/20160315.002130 submit/tizen/20160310.030656 submit/tizen/20160314.051739
Ji Yong Min [Wed, 9 Mar 2016 08:54:58 +0000 (17:54 +0900)]
Fix svace issue

Change-Id: I4aefb98d9c317dcf51e893d9e2d6b9314573ed2d
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agogif: Add support for disposal mode, x-y position of frame, 43/60943/1
Vineeth TM [Thu, 3 Mar 2016 05:48:06 +0000 (14:48 +0900)]
gif: Add support for disposal mode, x-y position of frame,
 transparency color of frame for animated gif encoding

Change-Id: I23c6b8edc253385f8790f6028f734627f052d90e
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agogif: Add support for progressive animation encoding 83/60383/2
Vineeth TM [Wed, 24 Feb 2016 00:24:07 +0000 (09:24 +0900)]
gif: Add support for progressive animation encoding

In case of systems with memory limitations, there should be a way to
continue with encoding as soon as we get each frame, instead of waiting for
all the frames.
But calling mm_util_encode_gif for each frame this can be achieved.

Change-Id: Ic134367143807f4f42bbe679ac36e83cf336bba6
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agojpeg: Fix compilation of libjpeg-turbo code 59/60059/2
Vineeth TM [Tue, 23 Feb 2016 04:48:03 +0000 (13:48 +0900)]
jpeg: Fix compilation of libjpeg-turbo code

Change-Id: Ic54d8cfea1fa5b1015da335a8d704bf481e4a0fe
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agolibmm-utility: Add animation gif encoding support 85/58685/3 accepted/tizen/ivi/20160223.232321 accepted/tizen/mobile/20160223.232227 accepted/tizen/tv/20160223.232243 accepted/tizen/wearable/20160223.232301 submit/tizen/20160223.084322
Vineeth TM [Fri, 19 Feb 2016 06:46:59 +0000 (15:46 +0900)]
libmm-utility: Add animation gif encoding support

Change-Id: Ibbe69b19a15fb1b42cf79c91e669ca468036bd87
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agoModify gif API according to version 5.1.2 05/59505/1 accepted/tizen/mobile/20160216.103141 accepted/tizen/tv/20160216.103155 accepted/tizen/wearable/20160216.103222 submit/tizen/20160216.065823 submit/tizen_common/20160218.142243
Vineeth TM [Tue, 16 Feb 2016 06:34:37 +0000 (15:34 +0900)]
Modify gif API according to version 5.1.2

Change-Id: I9e915eac441ba7579eb164955eb9c96e84e03cda
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agoCode clean up and remove unused code 46/58046/1 accepted/tizen/ivi/20160218.023755 accepted/tizen/mobile/20160128.010439 accepted/tizen/tv/20160128.010454 accepted/tizen/wearable/20160128.010515 submit/tizen/20160127.070744 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000003
Haejeong Kim [Wed, 27 Jan 2016 06:11:28 +0000 (15:11 +0900)]
Code clean up and  remove unused code

Change-Id: Ic5d14ef4d76b47df6d6dda8955b5f9a9e7b64a2c

8 years agoApply coding rule & remove unused testsuite 96/54796/1 accepted/tizen/mobile/20151218.084647 accepted/tizen/tv/20151218.084441 accepted/tizen/wearable/20151218.084623 submit/tizen/20151218.044348 submit/tizen_common/20151229.142028 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718
Ji Yong Min [Fri, 18 Dec 2015 02:58:32 +0000 (11:58 +0900)]
Apply coding rule & remove unused testsuite

Change-Id: I7afbbcc40c57c293afb059c5ef40471d40203fbc
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoReplace wrong error condition & update testsuite 79/54779/2
Ji Yong Min [Fri, 18 Dec 2015 01:41:23 +0000 (10:41 +0900)]
Replace wrong error condition & update testsuite

Change-Id: Ia6e7ed3b94f4f86ee71c515ec3dae62ae97418fc
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoRemove libmm-common dependency 36/54636/2 accepted/tizen/mobile/20151217.223430 accepted/tizen/tv/20151217.223445 accepted/tizen/wearable/20151217.223504 submit/tizen/20151217.023517
Haejeong Kim [Thu, 17 Dec 2015 00:45:24 +0000 (09:45 +0900)]
Remove libmm-common dependency

Change-Id: I704dc1fbd65f5c1deda8f7a093390edbb99253e0

8 years agoJust remove useless gmodule.h include 75/54575/1 accepted/tizen/mobile/20151217.021531 accepted/tizen/tv/20151217.021705 accepted/tizen/wearable/20151217.022007 submit/tizen/20151217.002925
Haejeong Kim [Wed, 16 Dec 2015 08:09:33 +0000 (17:09 +0900)]
Just remove useless gmodule.h include

Change-Id: I5d2ec6653e67e0564a80063e9855ec231180231d

8 years agoJust remove useless glib.h include 72/54572/1
Haejeong Kim [Wed, 16 Dec 2015 07:55:09 +0000 (16:55 +0900)]
Just remove useless glib.h include

Change-Id: Ic28c594c6356e7383975519f84d5d035be5a75c6

8 years agoDefine mm_util_imgp_h to replace MMHandle in mm-common 67/54567/2
Haejeong Kim [Wed, 16 Dec 2015 07:28:06 +0000 (16:28 +0900)]
Define mm_util_imgp_h to replace MMHandle in mm-common

Change-Id: Ic5f384c2c3bdf936b9d9634910f4893d900a6341

8 years agoRemove useless include files 64/54564/1
Haejeong Kim [Wed, 16 Dec 2015 06:54:51 +0000 (15:54 +0900)]
Remove useless include files

Change-Id: I0c87b5c093a45d555e3989ab8e657a86db5f3fe0

8 years agoApply tizen coding rule 87/53887/1 accepted/tizen/mobile/20151210.083532 accepted/tizen/tv/20151210.083559 accepted/tizen/wearable/20151210.083614 submit/tizen/20151210.060625
Haejeong Kim [Thu, 10 Dec 2015 04:58:07 +0000 (13:58 +0900)]
Apply tizen coding rule

Change-Id: Idfe729c9f1f474237a31ae3c0d19d09ceca8a3dd

8 years agoFix issues found using svace static analyser tool 16/53216/3 accepted/tizen/mobile/20151204.055923 accepted/tizen/tv/20151204.061301 accepted/tizen/wearable/20151204.061334 submit/tizen/20151204.003507
Vineeth TM [Thu, 3 Dec 2015 00:30:43 +0000 (09:30 +0900)]
Fix issues found using svace static analyser tool

Change-Id: I71c5187abf04bc2c85dea314a3f60d6b30c32754

8 years agoremove mm-log and replace MM_ERROR_XXX with MM_UTIL_ERROR_XXXX 10/53210/2
Vineeth TM [Wed, 2 Dec 2015 07:51:57 +0000 (16:51 +0900)]
remove mm-log and replace MM_ERROR_XXX with MM_UTIL_ERROR_XXXX

Change-Id: I04bb0dc525a7f90bda9f8f36f16d3a7e3c1a3642
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years ago1. [imgcv] Removed mmlog 44/51744/3
Tae-Young Chung [Fri, 13 Nov 2015 10:59:53 +0000 (19:59 +0900)]
1. [imgcv] Removed mmlog
2. [imgcv] Relplaced MM_ERR_XX to MM_UTIL_ERROR_XXX
3. [imgcv] Fixed mm_util_imgcv_testsuite

Change-Id: Id7adb7999184ec67821389682008a380c881eb35
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
8 years agolibmmutility: Add bmp encode/decode utility 29/53129/2
Vineeth TM [Wed, 2 Dec 2015 04:59:52 +0000 (13:59 +0900)]
libmmutility: Add bmp encode/decode utility

Change-Id: I4c218d4cd0aeef436bc8236a2c6572f17be7a9eb
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agolibmmutility: define rgba format for gif 60/52860/1
Vineeth TM [Thu, 26 Nov 2015 00:05:29 +0000 (09:05 +0900)]
libmmutility: define rgba format for gif

Change-Id: I352460225699d06b42a2f1ce5485f8dcc38192b3

8 years agolibmmutility: Add gif/png decode/encode utility 10/52010/1 accepted/tizen/mobile/20151119.033413 accepted/tizen/tv/20151119.033425 accepted/tizen/wearable/20151119.033438 submit/tizen/20151118.234340
Vineeth TM [Wed, 18 Nov 2015 03:02:00 +0000 (12:02 +0900)]
libmmutility: Add gif/png decode/encode utility

Change-Id: I0265d4e4c99c12fb8a75e366f1451f2d65d32edf
Signed-off-by: Vineeth TM <vineeth.tm@samsung.com>
8 years agoAdded imgcv to be used for color extraction 89/51289/1 accepted/tizen/mobile/20151111.044107 accepted/tizen/tv/20151111.044112 accepted/tizen/wearable/20151111.044123 submit/tizen/20151110.064449
Tae-Young Chung [Fri, 6 Nov 2015 07:59:09 +0000 (16:59 +0900)]
Added imgcv to be used for color extraction

Change-Id: Ic7381356a4e6f91dfa2162e6476f6b232bac21b6
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
8 years agoRemove mm-log & replace error value from MM_ERR_XXX to MM_UTIL_ERROR_XXX 65/48865/5 accepted/tizen/mobile/20151001.224844 accepted/tizen/tv/20151001.224855 accepted/tizen/wearable/20151001.224908 submit/tizen/20151001.095659 tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
Ji Yong Min [Thu, 1 Oct 2015 05:06:58 +0000 (14:06 +0900)]
Remove mm-log & replace error value from MM_ERR_XXX to MM_UTIL_ERROR_XXX

Change-Id: I83e016f2850572a44bc6e51ce11f2f81a5a81eef

8 years agoRemove mmlog & fix bugs for image transform 28/48628/2 accepted/tizen/mobile/20150925.012805 accepted/tizen/tv/20150925.012816 accepted/tizen/wearable/20150925.012823 submit/tizen/20150924.075606 submit/tizen_common/20151015.190624 submit/tizen_common/20151019.135620
Ji Yong Min [Thu, 24 Sep 2015 03:43:39 +0000 (12:43 +0900)]
Remove mmlog & fix bugs for image transform

Change-Id: I0c1735cc48492d0b424a9b95cb3b419946023aca
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoDisable ttrace 50/47250/2 tizen_3.0.m1_mobile tizen_3.0.m1_tv accepted/tizen/mobile/20150902.004513 accepted/tizen/tv/20150902.004525 accepted/tizen/wearable/20150902.004537 submit/tizen/20150901.110938 submit/tizen_common/20151023.083358 submit/tizen_common/20151026.085049 tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release
Ji Yong Min [Tue, 1 Sep 2015 10:51:34 +0000 (19:51 +0900)]
Disable ttrace

Change-Id: I551903d5d26687cbe5e044c0286a406b1c1f81b7
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoFix build warning & deadlock problem of thread 34/44934/1 accepted/tizen/mobile/20150803.093829 accepted/tizen/tv/20150803.093840 accepted/tizen/wearable/20150803.093846 submit/tizen/20150803.020759
Ji Yong Min [Wed, 29 Jul 2015 13:13:05 +0000 (22:13 +0900)]
Fix build warning & deadlock problem of thread

Change-Id: Ie9d62b56e47127a30028db37ae280890a2f976fc
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoFix TC crash because of cast from long to integer of different size 03/44903/5 accepted/tizen/mobile/20150730.014235 accepted/tizen/tv/20150730.014348 accepted/tizen/wearable/20150730.014547 submit/tizen/20150729.094549
Ji Yong Min [Wed, 29 Jul 2015 08:12:10 +0000 (17:12 +0900)]
Fix TC crash because of cast from long to integer of different size

Change-Id: I3d0fc0f85cc3fc473e1342fecf780db34126746a
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years ago[libmm-utility] optimize & improve mm-utility 92/42792/3 submit/tizen/20150703.010515
Ji Yong Min [Thu, 2 Jul 2015 09:39:59 +0000 (18:39 +0900)]
[libmm-utility] optimize & improve mm-utility

- Add to support NV12 format for encoding/decoding
- Add TTRACE performance check
- Modify to run transform repeatly
- Remove warning code

Change-Id: I62261a496f5564b6a952ffd12139b9f3ea2a24f9
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
9 years ago[Libmm-utility] Add new function 02/40202/6 tizen_3.0.2015.q2_common accepted/tizen/common/20150602.072612 accepted/tizen/common/20150608.090632 accepted/tizen/mobile/20150608.092911 accepted/tizen/tv/20150608.092932 accepted/tizen/wearable/20150608.092959 submit/tizen/20150601.103817 submit/tizen/20150608.021625
Ji Yong Min [Mon, 1 Jun 2015 05:57:32 +0000 (14:57 +0900)]
[Libmm-utility] Add new function
- Add to encode/decode function with downscale option
- Modify some bugs in transform APIs
- Add ASLR option for testsuit
- Remove white space

Change-Id: If7abafb0ae7dbdbe931f7aa0170f419c1350a3fd
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
9 years agoupdate doxygen 59/34659/2
YoungHun Kim [Fri, 30 Jan 2015 07:43:54 +0000 (16:43 +0900)]
update doxygen

Change-Id: I51bfce87098700886fc9e3f5b64739dc916a07fe
Signed-off-by: YoungHun Kim <yh8004.kim@samsung.com>
9 years agoadd transform api and update jpeg codec 25/34025/5 accepted/tizen/common/20150209.121059 accepted/tizen/mobile/20150211.014707 accepted/tizen/tv/20150210.013056 accepted/tizen/wearable/20150210.014932 submit/tizen/20150128.133102 submit/tizen/20150206.062742
YoungHun Kim [Tue, 20 Jan 2015 07:26:56 +0000 (16:26 +0900)]
add transform api and update jpeg codec

Change-Id: I33d2106b6954c4d2d20950377b649ae0cef6ade3

9 years agoPackaging: clean spec file 54/28154/6 tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0_ivi accepted/tizen/common/20141211.182857 accepted/tizen/ivi/20141225.062820 accepted/tizen/mobile/20150105.022440 accepted/tizen/tv/20150105.022353 accepted/tizen/wearable/20150105.054713 submit/tizen_common/20141211.130742 submit/tizen_ivi/20141225.111111 submit/tizen_mobile/20141216.000000 submit/tizen_mobile/20141231.012840 submit/tizen_mobile/20151202.000000 submit/tizen_tv/20151202.000000 submit/tizen_wearable/20150102.000000 tizen_3.0_ivi_release
Kévin THIERRY [Mon, 29 Sep 2014 06:58:53 +0000 (08:58 +0200)]
Packaging: clean spec file

Properly manage license.

Also remove executable bits to non executable files.

Change-Id: I8060fa46895e3a4a7c3010c5f81235d229c508f1
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
9 years agoMerge "Clean spec file for yocto complaince." into tizen accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi tizen_3.0.2014.q3_common tizen_3.0.m14.3_ivi accepted/tizen/common/20140915.091750 submit/tizen_common/20140915.090851 submit/tizen_ivi/20140916.000000 submit/tizen_mobile/20141120.000000 tizen_3.0.2014.q3_common_release tizen_3.0.m14.3_ivi_release
Dominig ar Foll [Mon, 15 Sep 2014 09:06:36 +0000 (02:06 -0700)]
Merge "Clean spec file for yocto complaince." into tizen

9 years agoClean spec file for yocto complaince. 42/24342/1
Ronan Le Martret [Thu, 10 Jul 2014 16:10:02 +0000 (18:10 +0200)]
Clean spec file for yocto complaince.

Change-Id: I06f78a535fbf7672a4a200cb4481171d55076e9c
Signed-off-by: Ronan Le Martret <ronan@fridu.net>
10 years agoUse tz platform config API to get the user content directory instead of hard-wired... 68/16268/1 tizen_3.0.m14.2_ivi submit/tizen_common/20140521.163740 submit/tizen_common/20140522.130648 submit/tizen_common/20140522.135644 submit/tizen_ivi/20140618.000000 submit/tizen_ivi/20140618.000001 submit/tizen_ivi/20140619.000000 submit/tizen_ivi/20140622.000000 submit/tizen_ivi/20140623.000000 submit/tizen_ivi/20140624.064036 submit/tizen_ivi/20140626.125712 submit/tizen_ivi/20140626.130032 submit/tizen_ivi/20140626.144348 tizen_3.0.m14.2_ivi_release
Ravi Kiran K N [Wed, 12 Feb 2014 11:12:09 +0000 (16:42 +0530)]
Use tz platform config API to get the user content directory instead of hard-wired path

configure.ac: module specification for libtzplatform-config
Makefile.am: Include tz platform config flags and lib
mm_util_jpeg_testsuite.c: Remove hard-wired path and get path from tzplatform_makepath
libmm-utility.spec: include package tzplatform-config

Bug-Tizen: PTREL-203
Change-Id: I9e7c15391e22156f695ec519afe4f22b6dd50c26
Signed-off-by: Ravi Kiran K N <ravi.kiran@samsung.com>
10 years agoresetting manifest requested domain to floor 97/4597/1 accepted/tizen/ivi/genivi accepted/tizen/ivi/stable accepted/tizen_generic tizen_ivi_genivi accepted/tizen/20130710.221350 accepted/tizen/20130912.100215 accepted/tizen/20130912.100538 accepted/tizen/20130912.150936 accepted/tizen/20130912.191628 accepted/tizen/20130912.195648 accepted/tizen/ivi/genivi/20140131.062649 accepted/tizen_ivi_stable/20131116.111805 ivi_oct_m2 submit/tizen/20130710.124354 submit/tizen/20130912.080007 submit/tizen/20130912.090315 submit/tizen_ivi_genivi/20140131.061129 submit/tizen_ivi_stable/20131116.100649
Alexandru Cornea [Fri, 28 Jun 2013 17:38:45 +0000 (20:38 +0300)]
resetting manifest requested domain to floor

11 years agoFix for 64-bit compatibility. tizen_2.1 2.1b_release accepted/tizen/20130520.101150 accepted/tizen_2.1/20130425.034936 submit/tizen/20130517.045059 submit/tizen_2.1/20130424.232132
Junfeng Dong [Mon, 25 Mar 2013 12:22:06 +0000 (20:22 +0800)]
Fix for 64-bit compatibility.

- Fix hardcoding path.
- Use %configure to set default paths.

Change-Id: Idbea2d662788c5e677a4ac2dde35957e2e852598

11 years agomerge with master
Jinkun Jang [Fri, 15 Mar 2013 16:15:59 +0000 (01:15 +0900)]
merge with master

11 years agoTizen 2.1 base
Jinkun Jang [Tue, 12 Mar 2013 16:50:05 +0000 (01:50 +0900)]
Tizen 2.1 base

12 years agoInitial empty repository
Eunkyoung Kim [Fri, 6 Jan 2012 12:59:58 +0000 (21:59 +0900)]
Initial empty repository