platform/core/multimedia/libmm-fileinfo.git
7 years agoJust update comment for smta and cdis which in samsung specific moov container 91/120291/1
Haejeong Kim [Wed, 22 Mar 2017 08:17:14 +0000 (17:17 +0900)]
Just update comment for smta and cdis which in samsung specific moov container

Change-Id: I3435b1613c2fdf449969241ddb637965adb18503

7 years agoAdd to check junk data 96/119996/1 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/common/20170322.153633 accepted/tizen/ivi/20170322.235545 accepted/tizen/mobile/20170322.235514 accepted/tizen/tv/20170322.235528 accepted/tizen/unified/20170322.235559 accepted/tizen/wearable/20170322.235539 submit/tizen/20170322.011031
Jiyong Min [Mon, 20 Mar 2017 07:43:04 +0000 (16:43 +0900)]
Add to check junk data

 [Problem] It is too long to read mpeg header when it was broken.
- When read tag from the file with the junk data, read whole file to find tag
because of wrong offset of box.
If the offset of box was wrong, add to check the moov data has already found at first.
After reading moov data is done, it check junk data for 1000 times.

Change-Id: I7ff67e7076870c6af43a1f3a98565c2b5cea856c
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
Conflicts:
packaging/libmm-fileinfo.spec

Change-Id: I4ad0f2ff2000a8b8a784665a852a1e6f767c74d3
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
7 years agoAdd tool package of executable file(mm_file_test) to improve security 75/119675/7
Jiyong Min [Tue, 17 Jan 2017 09:13:29 +0000 (18:13 +0900)]
Add tool package of executable file(mm_file_test) to improve security

Change-Id: I1a72170872b8f7a04109a452cf60e897d962a593
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
Conflicts:
packaging/libmm-fileinfo.spec

Change-Id: Idcbce52b7e02cca763c2358de373e8307440c8ee

7 years agoReplace readdir_r to readdir to fix build error 42/118542/1 accepted/tizen/common/20170313.162525 accepted/tizen/ivi/20170313.120228 accepted/tizen/mobile/20170313.120141 accepted/tizen/tv/20170313.120157 accepted/tizen/unified/20170313.120247 accepted/tizen/wearable/20170313.120212 submit/tizen/20170313.062244
Jiyong Min [Mon, 13 Mar 2017 06:15:41 +0000 (15:15 +0900)]
Replace readdir_r to readdir to fix build error

 [Problem] After update tool chain to GCC6, 'readdir_r is deprecated' build error happen

'readdir_r' is deprecated because of below reasons.
 *  On systems where NAME_MAX is undefined, calling readdir_r() may be
    unsafe because the interface does not allow the caller to specify
    the length of the buffer used for the returned directory entry.

 *  On some systems, readdir_r() can't read directory entries with
    very long names.  When the glibc implementation encounters such a
    name, readdir_r() fails with the error ENAMETOOLONG after the
    final directory entry has been read.  On some other systems,
    readdir_r() may return a success status, but the returned d_name
    field may not be null terminated or may be truncated.

Change-Id: Iaeabf4b09ab77dfedbc161c725c27a39ec4325c2
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
7 years agoRemove unused static variable to fix build error 56/117756/1 accepted/tizen/common/20170307.134027 accepted/tizen/ivi/20170307.222010 accepted/tizen/mobile/20170307.221927 accepted/tizen/tv/20170307.221939 accepted/tizen/unified/20170309.033210 accepted/tizen/wearable/20170307.221956 submit/tizen/20170307.093310 submit/tizen_unified/20170308.100408
Jiyong Min [Tue, 7 Mar 2017 09:22:35 +0000 (18:22 +0900)]
Remove unused static variable to fix build error

 [Problem] After update tool chain to GCC6, 'definded but not used' build error happen

Before GCC6 -Wunused-variable (enabled by -Wall) didn’t warn for unused static const variables in C.
This was because some old code had constructs like: static const char rcs_id[] = "$Id:...";.
But this old special use case is not very common anymore. And not warning about such unused variables was hiding real bugs.
So GCC6 introduces -Wunused-const-variable (enabled by -Wunused-variable for C, but not for C++).

Change-Id: I075937a718b0dbbd3cab28df75084581bed363ab
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
7 years agocode refactoring 62/110362/1
ji.yong.seo [Wed, 11 Jan 2017 04:11:51 +0000 (13:11 +0900)]
code refactoring

Change-Id: I935050c1fffe4643d3ebfeb493d012d1c5e01f7f
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
7 years agopackaging: fix build error by Werror 91/109091/1 accepted/tizen/common/20170109.202413 accepted/tizen/ivi/20170109.084405 accepted/tizen/mobile/20170109.084306 accepted/tizen/tv/20170109.084324 accepted/tizen/wearable/20170109.084345 submit/tizen/20170109.021416
Jiyong Min [Mon, 9 Jan 2017 00:49:45 +0000 (09:49 +0900)]
packaging: fix build error by Werror

Different semantics for inline functions

While -std=gnu89 employs the GNU89 inline semantics, -std=gnu11 uses the
C99 inline semantics. The C99 inline semantics requires that if a
function with external linkage is declared with inline function
specifier, it also has to be defined in the same translation unit (TU).
Consequently, GCC now warns if it sees a TU such as the following:

  inline int foo (void);
  This example now gives the following diagnostic:

  f.c:1:12: warning: inline function 'foo' declared but never defined
    inline int foo (void);

Change-Id: I01405d2b7820e32400d5ec193c073c7ce6e1a50a
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
7 years agoReduce error log 90/109090/1
Minje Ahn [Fri, 23 Dec 2016 00:54:35 +0000 (09:54 +0900)]
Reduce error log

Change error message to info message

Change-Id: If97d61f6a5625e272f9271502e27bc1ae1c1da2e
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
modify debug msg.

Change-Id: I4883b3b044efda104c9d1bf682aa538f42e5f405
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
fix build error.

Change-Id: Ic9e28d7234110c2208a953e39330aac3ce6ccabf
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
7 years agofix uuid parsing fail. 85/109085/1
ji.yong.seo [Fri, 16 Dec 2016 05:32:18 +0000 (14:32 +0900)]
fix uuid parsing fail.

Change-Id: Iac5c56750f3bbb51b6665a3a8465f00e9441f018
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
(cherry picked from commit c490426bc6f333747d8fc8dd3185fd1baad7a518)

7 years agomodify 360 video parser. 01/101401/2
ji.yong.seo [Thu, 1 Dec 2016 04:12:45 +0000 (13:12 +0900)]
modify 360 video parser.

Change-Id: I5411e7583b0fa8d964dd0e268d206cc0b38b61e7
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
(cherry picked from commit 3636ddb575175638220b414a7f3b9a818dd01d24)

7 years agoAdd testcode 83/101483/1
Minje Ahn [Thu, 1 Dec 2016 08:57:18 +0000 (17:57 +0900)]
Add testcode

Change-Id: Ifd76105cd77bea23eeaef8d68617fd88d842c215
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoMerge "Remove unused condition and fix buffer overflow" into tizen accepted/tizen/common/20161129.173544 accepted/tizen/ivi/20161130.015415 accepted/tizen/mobile/20161130.015158 accepted/tizen/tv/20161130.015243 accepted/tizen/wearable/20161130.015332 submit/tizen/20161129.052917
Jiyong Min [Tue, 29 Nov 2016 05:01:26 +0000 (21:01 -0800)]
Merge "Remove unused condition and fix buffer overflow" into tizen

7 years agoRemove unused condition and fix buffer overflow 17/100717/1
Jiyong Min [Tue, 29 Nov 2016 04:52:21 +0000 (13:52 +0900)]
Remove unused condition and fix buffer overflow

Change-Id: Id1d0a7de85d5251c90f0b3df80ce6c5b662d1622
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoFix svace 2.2 issue 12/100712/1
Minje Ahn [Tue, 29 Nov 2016 04:49:30 +0000 (13:49 +0900)]
Fix svace 2.2 issue

Change-Id: I20351b4b4241ca4994cedfe27cad56e4cb272a1d
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix 64bit crash & tc fail when get content info from buffer 87/93387/1 accepted/tizen/common/20161025.155104 accepted/tizen/common/20161031.121750 accepted/tizen/ivi/20161101.004509 accepted/tizen/mobile/20161101.004417 accepted/tizen/tv/20161101.004436 accepted/tizen/wearable/20161101.004449 submit/tizen/20161025.104308 submit/tizen/20161031.023900 submit/tizen_3.0_common/20161104.104000
Jiyong Min [Mon, 24 Oct 2016 05:20:51 +0000 (14:20 +0900)]
Fix 64bit crash & tc fail when get content info from buffer

 [Problem] 64bit address is 8 byte(64bit), so the URI of memory buffer should be assigned to 8 byte string.
          The typecast of memory buffer is changed from unsigned int(4 byte) to unsigned long(8 byte).
          In 32bit, unsigned int and unsigned long are 4 byte. It has no problem for 32bit.

Change-Id: I09fa95e4c1cf937651c1c4e77d30053f577d7c2d
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoFix svace issue 18/92818/1 accepted/tizen/3.0/ivi/20161028.133913 accepted/tizen/3.0/mobile/20161028.133012 accepted/tizen/3.0/tv/20161028.133334 accepted/tizen/3.0/wearable/20161028.133632 accepted/tizen/common/20161019.145742 accepted/tizen/ivi/20161019.141540 accepted/tizen/mobile/20161019.141347 accepted/tizen/tv/20161019.141448 accepted/tizen/wearable/20161019.141517 submit/tizen/20161019.084351 submit/tizen_3.0/20161028.062323 submit/tizen_3.0/20161028.082423
Minje Ahn [Wed, 19 Oct 2016 01:15:29 +0000 (10:15 +0900)]
Fix svace issue

Change-Id: I28d7e0adedb7f606888954a670777281238c10b2
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix shared object path 36/90436/1 accepted/tizen/3.0/ivi/20161011.044300 accepted/tizen/3.0/mobile/20161015.033504 accepted/tizen/3.0/tv/20161016.004935 accepted/tizen/3.0/wearable/20161015.083225 accepted/tizen/common/20160930.174838 accepted/tizen/ivi/20160930.084005 accepted/tizen/mobile/20160930.084124 accepted/tizen/tv/20160930.084204 accepted/tizen/wearable/20160930.084110 submit/tizen/20160930.050935 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
Minje Ahn [Fri, 30 Sep 2016 05:01:28 +0000 (14:01 +0900)]
Fix shared object path

Change-Id: I215cefac9360c1fea7497fc9031d09f100fa40c3
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoModify library path(using full-path <TSAM-7896>) 47/89747/1 accepted/tizen/common/20160928.163924 accepted/tizen/ivi/20160930.040740 accepted/tizen/mobile/20160930.040410 accepted/tizen/tv/20160930.040550 accepted/tizen/wearable/20160930.040648 submit/tizen/20160928.043825
Minje Ahn [Mon, 26 Sep 2016 23:33:31 +0000 (08:33 +0900)]
Modify library path(using full-path <TSAM-7896>)

Change-Id: I0989f8bf46b67b43e0eccbf02089aa416f719a88
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix null pointer dereferenced issue (WGID-28322) 00/87600/2 accepted/tizen/common/20160921.162157 accepted/tizen/ivi/20160922.042617 accepted/tizen/mobile/20160922.042327 accepted/tizen/tv/20160922.042452 accepted/tizen/wearable/20160922.042538 submit/tizen/20160921.041639
Jiyong Min [Thu, 8 Sep 2016 23:02:22 +0000 (08:02 +0900)]
Fix null pointer dereferenced issue (WGID-28322)

Change-Id: Id853dffbeb3aba5aa247725e2b326d8d532cdb37
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
7 years agoSupports files larger than 4GB. 45/80045/1 accepted/tizen/common/20160811.145639 accepted/tizen/ivi/20160812.010624 accepted/tizen/mobile/20160812.010646 accepted/tizen/tv/20160812.010601 accepted/tizen/wearable/20160812.010528 submit/tizen/20160810.075454 submit/tizen/20160811.023523
Minje Ahn [Thu, 14 Jul 2016 07:46:09 +0000 (16:46 +0900)]
Supports files larger than 4GB.

Change-Id: Ifc5f29e36a0977584029270fab21516ff522a905
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix svace issue 86/76486/1 accepted/tizen/common/20160627.191919 accepted/tizen/ivi/20160629.015419 accepted/tizen/mobile/20160629.015317 accepted/tizen/tv/20160629.015358 accepted/tizen/wearable/20160629.015341 submit/tizen/20160627.022624
Minje Ahn [Fri, 24 Jun 2016 05:34:51 +0000 (14:34 +0900)]
Fix svace issue

Change-Id: Id8119ed32a1141b1713c3df4f88eef2b930ce9b5
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix svace defect 49/75849/2 accepted/tizen/common/20160622.145826 accepted/tizen/ivi/20160622.094120 accepted/tizen/mobile/20160622.094031 accepted/tizen/tv/20160622.094048 accepted/tizen/wearable/20160622.094109 submit/tizen/20160622.011011
Minje Ahn [Wed, 22 Jun 2016 01:03:04 +0000 (10:03 +0900)]
Fix svace defect

Change-Id: I6bb25184199358f2d32f8feae7504f01f61194a9
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
7 years agoFix svace issue 66/74866/1 accepted/tizen/common/20160620.162457 accepted/tizen/ivi/20160617.082441 accepted/tizen/mobile/20160617.081920 accepted/tizen/tv/20160617.082027 accepted/tizen/wearable/20160617.082127 submit/tizen/20160616.065630
Minje Ahn [Thu, 16 Jun 2016 02:24:30 +0000 (11:24 +0900)]
Fix svace issue

Change-Id: Ia9eab08b963a23a71f66f391ef67c6be555c7e47
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
8 years ago[TNEF-7080] Change PNG checker for album art of ID3 tag 11/71711/3 accepted/tizen/common/20160609.145215 accepted/tizen/ivi/20160609.091736 accepted/tizen/mobile/20160609.091955 accepted/tizen/tv/20160609.091605 accepted/tizen/wearable/20160609.091710 submit/tizen/20160609.040222
Jiyong Min [Thu, 26 May 2016 23:34:30 +0000 (08:34 +0900)]
[TNEF-7080] Change PNG checker for album art of ID3 tag

Change-Id: I5c012185bd614081dd36a33aec5cdf1f23cb9705
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
8 years agoAdd 360 content feature 37/71537/2 accepted/tizen/common/20160531.141838 accepted/tizen/ivi/20160602.022044 accepted/tizen/mobile/20160602.022121 accepted/tizen/tv/20160602.021903 accepted/tizen/wearable/20160602.022015 submit/tizen/20160530.013417
Minje Ahn [Thu, 26 May 2016 00:43:19 +0000 (09:43 +0900)]
Add 360 content feature

Change-Id: I73ea6c702822d22af36caf4d241117eec3c18aa2
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
8 years agoAdd checker for id3tag v1 size and memory overlap issue fix 46/59246/2 accepted/tizen/ivi/20160218.023752 accepted/tizen/mobile/20160212.045849 accepted/tizen/tv/20160212.050000 accepted/tizen/wearable/20160212.050005 submit/tizen/20160211.235929 submit/tizen_common/20160218.142243 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000003
Minje Ahn [Thu, 11 Feb 2016 23:56:02 +0000 (08:56 +0900)]
Add checker for id3tag v1 size and memory overlap issue fix

Change-Id: I4005065f31ab41a208ea12bf9949a661b57dccac
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
8 years agobug fix patch from tizen 2.4. 08/57608/3 accepted/tizen/mobile/20160128.083246 accepted/tizen/tv/20160128.083308 accepted/tizen/wearable/20160128.083324 submit/tizen/20160128.055041
ji.yong.seo [Thu, 21 Jan 2016 07:26:49 +0000 (16:26 +0900)]
bug fix patch from  tizen 2.4.

Change-Id: I2418e1a46e27151ce2103a89115b0bda74c257e2
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
8 years agomodify id3 tag parser (extended header exception handing) 57/56057/1 accepted/tizen/mobile/20160104.084626 accepted/tizen/tv/20160104.084709 accepted/tizen/wearable/20160104.084742 submit/tizen/20160104.050314
Minje Ahn [Mon, 4 Jan 2016 04:13:13 +0000 (13:13 +0900)]
modify id3 tag parser (extended header exception handing)

Change-Id: I04e2cf9f77d4a56bdc511649077ba6e89a490176
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
8 years agoSvace issue fix 49/55749/1 accepted/tizen/mobile/20151230.223027 accepted/tizen/tv/20151230.223040 accepted/tizen/wearable/20151230.223059 submit/tizen/20151230.051638
Haejeong Kim [Tue, 29 Dec 2015 06:27:23 +0000 (15:27 +0900)]
Svace issue fix

Change-Id: Id074567a077a36092c7b6afd18a90377df3029cf

8 years agoSvace issue fix 01/55001/1 accepted/tizen/mobile/20151221.223502 accepted/tizen/tv/20151221.223518 accepted/tizen/wearable/20151221.223536 submit/tizen/20151221.103501 submit/tizen_common/20151229.142028 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718
Haejeong Kim [Mon, 21 Dec 2015 08:11:37 +0000 (17:11 +0900)]
Svace issue fix

Change-Id: Ia8a53323c9680cbddac59ffc2d73268c785066e8

8 years agoTypo fix 65/54665/1 accepted/tizen/mobile/20151218.044339 accepted/tizen/tv/20151218.044311 accepted/tizen/wearable/20151218.044318 submit/tizen/20151218.020211
Haejeong Kim [Thu, 17 Dec 2015 05:29:12 +0000 (14:29 +0900)]
Typo fix

Change-Id: Ieda9a7b9e13e52470b15009af983784e4e28aaa5

8 years agoApply tizen coding rule 96/53896/1 accepted/tizen/mobile/20151210.082057 accepted/tizen/tv/20151210.082144 accepted/tizen/wearable/20151210.082303 submit/tizen/20151210.060052
Haejeong Kim [Thu, 10 Dec 2015 05:43:47 +0000 (14:43 +0900)]
Apply tizen coding rule

Change-Id: I2419dafc2271df5ed2140ed405de6a22dc86532d

8 years agoApply tizen coding rule 57/53857/1
Haejeong Kim [Thu, 10 Dec 2015 01:01:47 +0000 (10:01 +0900)]
Apply tizen coding rule

Change-Id: Ic89a94ce8e5f20aaccb5bc6af11bcc8efc669135

8 years agoRemove dependency with libmm-common. 68/48968/5 accepted/tizen/mobile/20151103.105437 accepted/tizen/tv/20151103.105450 accepted/tizen/wearable/20151103.105501 submit/tizen/20151103.053124 submit/tizen/20151103.065424
ji.yong.seo [Fri, 2 Oct 2015 09:19:35 +0000 (18:19 +0900)]
Remove dependency with libmm-common.

Change-Id: Ia79020ede78ee6f16729d3983b6d1b44f1da1cd9
Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
8 years agoMerge "sync tizen_2.4." into tizen tizen_3.0.m1_mobile tizen_3.0.m1_tv accepted/tizen/mobile/20150910.070707 accepted/tizen/tv/20150910.070728 accepted/tizen/wearable/20150910.070735 submit/tizen/20150910.050653 submit/tizen_common/20151015.190624 submit/tizen_common/20151019.135620 submit/tizen_common/20151023.083358 submit/tizen_common/20151026.085049 tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
hj kim [Thu, 10 Sep 2015 05:02:46 +0000 (22:02 -0700)]
Merge "sync tizen_2.4." into tizen

8 years agosync tizen_2.4. 14/47814/4
ji.yong.seo [Mon, 27 Jul 2015 03:30:21 +0000 (12:30 +0900)]
sync tizen_2.4.

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: Ia8ed7963d67932acf177eddeedeb70d7037fd371

8 years agoRemoved instructions which were not required. 08/44708/1
ji.yong.seo [Mon, 27 Jul 2015 03:30:21 +0000 (12:30 +0900)]
Removed instructions which were not required.

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: Ie8575cb07ca8de5b0022a4c1983043d667eb504e

8 years agoRemove unnecessary assignments. 01/44701/1
ji.yong.seo [Mon, 27 Jul 2015 01:15:19 +0000 (10:15 +0900)]
Remove unnecessary assignments.

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: If4e55ce38ba60d3aed1de564fb199f38f035b72c

8 years agoRemoved unreachable break statements. 00/44700/1
ji.yong.seo [Mon, 27 Jul 2015 01:13:20 +0000 (10:13 +0900)]
Removed unreachable break statements.

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: Iefa9371272bfe5675b882ce9950063b451377fab

8 years ago2.4 sync 42/44642/6 accepted/tizen/mobile/20150727.011544 accepted/tizen/tv/20150727.011600 accepted/tizen/wearable/20150727.011615 submit/tizen/20150727.002744
ji.yong.seo [Fri, 24 Jul 2015 07:25:03 +0000 (16:25 +0900)]
2.4 sync

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: I85e38ca8b07fabe2540232f61eaf70b9bcde9b3b

8 years agofix 64bit build error 56/43056/1 accepted/tizen/mobile/20150708.015417 accepted/tizen/tv/20150708.015431 accepted/tizen/wearable/20150708.015443 submit/tizen/20150707.105412
ji.yong.seo [Tue, 7 Jul 2015 10:48:03 +0000 (19:48 +0900)]
fix 64bit build error

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: I62906ea826d3ca310cfbb95bd544ff68ab333295

8 years agomodify build option and update code by Tizen coding convention. 54/42854/2 submit/tizen/20150707.065901
ji.yong.seo [Fri, 3 Jul 2015 06:39:00 +0000 (15:39 +0900)]
modify build option and update code by Tizen coding convention.

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: I817c2418efe1169b926948c1838135b54da8860b

8 years agolibmm-log dependency remove 74/42174/4 submit/tizen/20150703.020912
ji.yong.seo [Wed, 24 Jun 2015 06:13:56 +0000 (15:13 +0900)]
libmm-log dependency remove

Signed-off-by: ji.yong.seo <ji.yong.seo@samsung.com>
Change-Id: I66bce9afc1ce53bfd1a57c1cba6f8a138db252ea

8 years agofix build error (remove memtrace_reader) 16/41816/1 accepted/tizen/mobile/20150618.040427 accepted/tizen/tv/20150618.040446 accepted/tizen/wearable/20150618.040503 submit/tizen/20150618.005304
ji.yong.seo [Thu, 18 Jun 2015 00:49:19 +0000 (09:49 +0900)]
fix build error (remove memtrace_reader)

Change-Id: I7eea518f07883b5e7d3232406b5e8bc87f6bf5f4

8 years agosupport some format. 85/41385/5 submit/tizen/20150617.061651 submit/tizen/20150617.113051
ji.yong.seo [Mon, 15 Jun 2015 01:38:20 +0000 (10:38 +0900)]
support some format.

Change-Id: If1b51132a4cd4065bf0bf40498ae386c5035f427

9 years agoperformance improve. reduced the count of files open and change the if else to switch. 97/40497/3 tizen_3.0.2015.q2_common accepted/tizen/common/20150605.124244 accepted/tizen/mobile/20150606.052943 accepted/tizen/tv/20150606.053648 accepted/tizen/wearable/20150606.054511 submit/tizen/20150604.122320
ji.yong.seo [Thu, 4 Jun 2015 10:38:15 +0000 (19:38 +0900)]
performance improve. reduced the count of files open and change the if else to switch.

Change-Id: Ie17b2ba9698a53499f72a61152a7e89bad93197f

9 years ago Support bitrate per sample 01/37301/1 accepted/tizen/common/20150324.113614 accepted/tizen/mobile/20150325.005854 accepted/tizen/tv/20150325.011332 accepted/tizen/wearable/20150325.010541 submit/tizen/20150324.092817
Haejeong Kim [Tue, 24 Mar 2015 09:27:21 +0000 (18:27 +0900)]
 Support bitrate per sample

Change-Id: Iea19ea1c1abec5f52368d568c6dc8452b60540af

9 years agomodify DB schema 99/37299/1
ji.yong.seo [Tue, 24 Mar 2015 09:02:55 +0000 (18:02 +0900)]
modify DB schema

Change-Id: I1fa457df14a4c9cd3851066810112e05664e2626

9 years agoupdate version 15/35915/1 accepted/tizen/common/20150226.085047 accepted/tizen/mobile/20150226.100446 accepted/tizen/tv/20150226.094436 accepted/tizen/wearable/20150226.095659 submit/tizen/20150226.051006
ji.yong.seo [Thu, 26 Feb 2015 05:08:29 +0000 (14:08 +0900)]
update version

Change-Id: I7931e77ca4062dd2d1ad8f120c8522fac8f68cc2

9 years agoMerge "support album art." into tizen
hj kim [Thu, 26 Feb 2015 04:56:36 +0000 (20:56 -0800)]
Merge "support album art." into tizen

9 years agosupport album art. 13/35813/2
ji.yong.seo [Wed, 25 Feb 2015 03:17:49 +0000 (12:17 +0900)]
support album art.

Change-Id: I3f520b61e1ad24c4a285763cf52ec2fe1e33cca9

9 years agoFix build error for new libmm-log 45/33345/1 tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0_ivi accepted/tizen/common/20150108.161912 accepted/tizen/common/20150109.133750 accepted/tizen/ivi/20150112.234208 accepted/tizen/mobile/20150108.233343 accepted/tizen/mobile/20150111.050610 accepted/tizen/tv/20150111.041107 accepted/tizen/tv/20150111.045702 accepted/tizen/wearable/20150109.013209 accepted/tizen/wearable/20150111.045942 submit/tizen/20150108.114627 submit/tizen/20150109.055336 submit/tizen_ivi/20150112.111111 tizen_3.0_ivi_release
Jeongmo Yang [Thu, 8 Jan 2015 11:41:57 +0000 (20:41 +0900)]
Fix build error for new libmm-log

Change-Id: I6102f3276c9385d26aba653b538f4c358ce78e48
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
9 years agoPorting to libav v11 90/30890/2 sandbox/pcoval/tizen accepted/tizen/common/20141127.143303 accepted/tizen/ivi/20141201.122133 submit/tizen/20141126.101957 submit/tizen_ivi/20141201.111111
Philippe Coval [Wed, 26 Nov 2014 14:48:22 +0000 (15:48 +0100)]
Porting to libav v11

Change-Id: I195d6f7af7328fd16bd23c4ee905926b3fd047cd
Bug-Tizen: TC-2106/related
Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
9 years agoClean spec file for yocto compliance 19/24119/3 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.145617 submit/tizen_common/20140915.122613 submit/tizen_ivi/20140916.000000 submit/tizen_mobile/20141120.000000 tizen_3.0.2014.q3_common_release tizen_3.0.m14.3_ivi_release
Ronan Le Martret [Tue, 8 Jul 2014 14:43:17 +0000 (16:43 +0200)]
Clean spec file for yocto compliance

Change-Id: Ieb371cdeb468979dfa7f707cd5ff05f43b7151ef
Signed-off-by: Ronan Le Martret <ronan@fridu.net>
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
9 years agoFix License Name. 48/23448/1
Ronan Le Martret [Wed, 25 Jun 2014 15:58:28 +0000 (17:58 +0200)]
Fix License Name.

Change-Id: I4b71eb3e4619ce5585879ef93960ee89eae5d19e
Signed-off-by: Ronan Le Martret <ronan@fridu.net>
10 years agoMerge "Porting to libav v9.8" into tizen accepted/tizen/ivi/genivi accepted/tizen/ivi/stable accepted/tizen_generic tizen_3.0.m14.2_ivi tizen_ivi_genivi accepted/tizen/20130718.042727 accepted/tizen/20130912.100249 accepted/tizen/20130912.100619 accepted/tizen/20130912.150636 accepted/tizen/20130912.191647 accepted/tizen/20130912.195708 accepted/tizen/ivi/genivi/20140131.063547 accepted/tizen_ivi_stable/20131116.111844 ivi_oct_m2 submit/tizen/20130718.015902 submit/tizen/20130912.080000 submit/tizen/20130912.090308 submit/tizen_ivi_genivi/20140131.061120 submit/tizen_ivi_stable/20131116.100640 tizen_3.0.m14.2_ivi_release
Yan Yin [Wed, 17 Jul 2013 00:54:05 +0000 (17:54 -0700)]
Merge "Porting to libav v9.8" into tizen

10 years agoPorting to libav v9.8 54/5754/1 submit/tizen/20130716.061332
Yan Yin [Mon, 15 Jul 2013 06:52:17 +0000 (14:52 +0800)]
Porting to libav v9.8

Change-Id: If8061b8aee4a8d689b2bb6a70c5dbd395ccf0729

10 years agoresetting manifest requested domain to floor 61/4561/1 accepted/tizen/20130710.221407 submit/tizen/20130710.105000 submit/tizen/20130716.222904
Alexandru Cornea [Fri, 28 Jun 2013 16:42:00 +0000 (19:42 +0300)]
resetting manifest requested domain to floor

11 years agofix memory leak tizen_2.1 2.1b_release accepted/tizen/20130520.101133 accepted/tizen_2.1/20130425.034950 submit/tizen/20130517.045038 submit/tizen_2.1/20130424.232024
Yong Yeon Kim [Tue, 23 Apr 2013 01:47:00 +0000 (10:47 +0900)]
fix memory leak

11 years ago1. Fix a bug when media has only audio track
Hyunjun Ko [Tue, 9 Apr 2013 07:56:17 +0000 (16:56 +0900)]
1. Fix a bug when media has only audio track

11 years agoUse general macro %configure for 64 bit compatibility.
Junfeng Dong [Mon, 25 Mar 2013 11:38:41 +0000 (19:38 +0800)]
Use general macro %configure for 64 bit compatibility.

Change-Id: Iabfd74845a8cedc307596a764933283626dea7b2

11 years agodisable drm client APIs
Yong Yeon Kim [Thu, 4 Apr 2013 03:17:16 +0000 (12:17 +0900)]
disable drm client APIs

11 years agofix bug TREL-56
Yong Yeon Kim [Tue, 2 Apr 2013 02:24:20 +0000 (11:24 +0900)]
fix bug TREL-56
Cover art from ogg files is not parsed

11 years ago1. in special case, the lyrics of music content are not displayed 2. Get valid durati...
Hyunjun Ko [Fri, 29 Mar 2013 08:33:06 +0000 (17:33 +0900)]
1. in special case, the lyrics of music content are not displayed 2. Get valid duration for mpeg2.5

11 years ago1. Add to handle the case that there is wrong video stream
Hyunjun Ko [Sat, 23 Mar 2013 06:51:20 +0000 (15:51 +0900)]
1. Add to handle the case that there is wrong video stream
2. Add to handle Info attr in header to get duration

Change-Id: Ibed0d99f0b47db76de5befc827fbdb98b96ef9ee

11 years agochange position of cleaup function after fail to find format in mmfile_format_open()
Yong Yeon Kim [Wed, 20 Mar 2013 01:41:51 +0000 (10:41 +0900)]
change position of cleaup function after fail to find format in mmfile_format_open()

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

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

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